static void CloseAutomationChannel() { MessageQueue.AddAutomationCommand("automation.exit"); }
public void Stop() { MessageQueue.AddCommand(NppCommand.Exit); }
static public void RemoveBreakpoint(string fileLineInfo) { MessageQueue.AddCommand("breakpoint-|" + fileLineInfo); }
static public void RemoveWatchExpression(string expression) { MessageQueue.AddCommand("watch-|" + expression); }
static protected void AddWatchExpression(string expression) { MessageQueue.AddCommand("watch+|" + expression); }
static public void Attach(int proccess) { MessageQueue.AddCommand("attach " + proccess); }