You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yeah, I don't think you will be able to do this using the existing turtle utilities because they line-buffer input. You would need to use the underlying process library (like you did) for more fine-grained control
I needed to press space bar on an ncurses program, but
proc
andshell
couldn't do it.I had to replace them with
import System.Process (spawnProcess, waitForProcess)
.Below is how I use
spawnProcess
andwaitForProcess
.I can press space bar to pause and resume timer in
termdown
which is an ncurses program.The text was updated successfully, but these errors were encountered: