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