public CommandState GetStateForCopyToInteractive()
 {
     var copyToInteractiveArgs = new CopyToInteractiveCommandArgs(TextView, SubjectBuffer);
     return CopyToInteractiveCommandHandler.GetCommandState(
         copyToInteractiveArgs, () => { return CommandState.Unavailable; });
 }
 public void SendCopyToInteractive()
 {
     var copyToInteractiveArgs = new CopyToInteractiveCommandArgs(TextView, SubjectBuffer);
     CopyToInteractiveCommandHandler.ExecuteCommand(copyToInteractiveArgs, () => { });
 }