How to kill a running program in SBT, but stay in the console

In sbt, is it possible to kill a process launched by the run command, but remain in the console?

What I mean:

$ sbt > run ... <ctrl-c> kills the entire environment 

Is it possible to kill the current process and stay on the sbt command line? This will save a considerable amount of time, as each sbt restart takes 20 seconds or more. Thanks.

+6
source share

Source: https://habr.com/ru/post/978196/


All Articles