use of com.intellij.execution.console.ProcessBackedConsoleExecuteActionHandler 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