use of com.goide.util.GoExecutor in project go-lang-idea-plugin by go-lang-plugin-org.
the class GoRunningState method startProcess.
@NotNull
@Override
protected ProcessHandler startProcess() throws ExecutionException {
GoExecutor executor = patchExecutor(createCommonExecutor());
GeneralCommandLine commandLine = executor.withParameterString(myConfiguration.getParams()).createCommandLine();
KillableColoredProcessHandler handler = new KillableColoredProcessHandler(commandLine, true);
ProcessTerminatedListener.attach(handler);
return handler;
}
Aggregations