public bool ExecuteCommand(ToggleLineCommentCommandArgs args, CommandExecutionContext context) => ExecuteCommand(args.TextView, args.SubjectBuffer, ValueTuple.Create(), context);
public CommandState GetCommandState(ToggleLineCommentCommandArgs args) { return(GetCommandState(args.SubjectBuffer)); }
public CommandState GetCommandState(ToggleLineCommentCommandArgs args) => CommandState.Available;
public bool ExecuteCommand(ToggleLineCommentCommandArgs args, CommandExecutionContext executionContext) => ExecuteCommandCore(args, executionContext, Operation.Toggle);
public CommandState GetCommandState(ToggleLineCommentCommandArgs args) => GetCommandState(args.SubjectBuffer);