How can a Java application spawn a new interactive application (e.g. an command line editor) from Java/Scala?
When I use Runtime.getRuntime().exec("vim test")
, I would only get a Process instance, while vim
would be running in the background; rather then appear to the user.