use of com.intellij.execution.console.ConsoleHistoryController in project intellij-community by JetBrains.
the class PydevConsoleRunnerImpl method createExecuteActionHandler.
@NotNull
protected PydevConsoleExecuteActionHandler createExecuteActionHandler() {
myConsoleExecuteActionHandler = new PydevConsoleExecuteActionHandler(myConsoleView, myProcessHandler, myPydevConsoleCommunication);
myConsoleExecuteActionHandler.setEnabled(false);
new ConsoleHistoryController(myConsoleType.getTypeId(), "", myConsoleView).install();
return myConsoleExecuteActionHandler;
}
use of com.intellij.execution.console.ConsoleHistoryController in project intellij-community by JetBrains.
the class GroovyShellRunnerImpl method createExecuteActionHandler.
@NotNull
@Override
protected ProcessBackedConsoleExecuteActionHandler createExecuteActionHandler() {
ProcessBackedConsoleExecuteActionHandler handler = new ProcessBackedConsoleExecuteActionHandler(getProcessHandler(), false) {
@Override
public String getEmptyExecuteAction() {
return GROOVY_SHELL_EXECUTE;
}
};
new ConsoleHistoryController(getConsoleTitle(), null, getConsoleView()).install();
return handler;
}
Aggregations