Hacker News new | ask | show | jobs
by wpollock 322 days ago
>Also, if the terminal is in raw mode then you'll never get ctrl+C.

The process/thread/task won't receive SIGINT, true. But I believe it will see the character ETX (ASCII 3). Programs that use raw mode input need to do their own keystroke processing.

1 comments

If you're in raw mode, whether ^C is SIGINT is open for interpretation