Results 73 comments of William G Hatch

The thing is that in terminals, C-c is weird. Unlike most key events where the process just gets characters written to its input, C-c is handled specially by the terminal....

@vityou @AlexKnauth @BostX @lexi-lambda @Colelyman @octplane @jgarte @bennn @jasperpilgrim

My plan at this point is to have unix-style job control for pipelines consisting only of subprocess, and punt job control for other things to a future time. Job control...

Another new embedded lisp shell [Janetsh](https://github.com/andrewchambers/janetsh) has job control working, so perhaps I should see what series of syscalls it's using and how it differs from my job-control branch. It's...

I made some progress on this today. One major problem from the last time I tried it is that there is some initialization that the shell must do that I...

Well, I'm not so sure about using `SIGCHLD`, but I think `waitpid` is the right way to do this. But Racket uses `waitpid` as well, perhaps I need to figure...

Interesting. I'm not sure I fully understand what is going on here with that backslash. Can you give me the full command you used that gave this error? What do...

On Fri, Jun 14, 2019 at 10:11:32AM -0700, Zaoqi wrote: >``` >> (find-executable-path "yarn") ># >``` This looks like a Racket bug. I'm guessing you get the same results with...

So I'm finally home from travelling and I fired up a Windows machine to test this out. I can construct paths that have a mix of forward and back slashes...

I imagine you could have a generic interface that objects could adhere to for printing to subprocesses. Also, a project called Caml-Shcaml has an interesting way of doing typed subprocess...