While in sbt, is it possible to kill a process started with the run command but remain in the console?
What I mean is:
$ sbt
> run
...
<ctrl-c> kills the entire environment
Is it possible to kill the running process and remain at the sbt prompt? This would save significant time since every sbt restart involves 20 seconds or more. Thanks.