Using the Turtle
shell scripting library I am trying to launch a program, i.e:
shell "vim" empty
The problem is that this yields the warning Warning: Input is not from a terminal
and causes Vim to lag for a few seconds before finally launching.
Questions:
shell
the best Turtle function to launch an external program from haskell?You want to use functions from the process library, specifically createProcess or runProcess.
Relevant turtle thread on the issue here.