Keno / REPL.jl

Pure-julia REPL implementation
Other
3 stars 4 forks source link

interaction bewteen shell mode and full-screen programs #27

Closed StefanKarpinski closed 10 years ago

StefanKarpinski commented 10 years ago

When I do ;less /usr/share/dict/words for example, bad things happen. The julia REPL process gets a SIGHUP (or something) that was meant for the less process and ends up sleeping, dumping me into the outer shell that I started julia from. This is why the C repl does the $shell -c "($cmd) && true" business – or is this a different issue?

Keno commented 10 years ago

I'll have a look.

Keno commented 10 years ago

Fixed!

StefanKarpinski commented 10 years ago

Dude. You're amazing.