示例#1
0
 static void CloseAutomationChannel()
 {
     MessageQueue.AddAutomationCommand("automation.exit");
 }
示例#2
0
 public void Stop()
 {
     MessageQueue.AddCommand(NppCommand.Exit);
 }
示例#3
0
 static public void RemoveBreakpoint(string fileLineInfo)
 {
     MessageQueue.AddCommand("breakpoint-|" + fileLineInfo);
 }
示例#4
0
 static public void RemoveWatchExpression(string expression)
 {
     MessageQueue.AddCommand("watch-|" + expression);
 }
示例#5
0
 static protected void AddWatchExpression(string expression)
 {
     MessageQueue.AddCommand("watch+|" + expression);
 }
示例#6
0
 static public void Attach(int proccess)
 {
     MessageQueue.AddCommand("attach " + proccess);
 }