public CommandState GetStateForExecuteInInteractive()
 {
     var executeInInteractiveArgs = new ExecuteInInteractiveCommandArgs(TextView, SubjectBuffer);
     return ExecuteInInteractiveCommandHandler.GetCommandState(
         executeInInteractiveArgs, () => { return CommandState.Unavailable; });
 }
 public void ExecuteInInteractive()
 {
     var executeInInteractiveArgs = new ExecuteInInteractiveCommandArgs(TextView, SubjectBuffer);
     ExecuteInInteractiveCommandHandler.ExecuteCommand(executeInInteractiveArgs, () => { });
 }