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
The CTRL+C and CTRL+BREAK key combinations receive special handling by console processes. By default, when a console window has the keyboard focus, CTRL+C or CTRL+BREAK is treated as a signal (SIGINT or SIGBREAK) and not as keyboard input.
But in the repl of QuickJS, on Windows, press CTRL+C does not send a SIGINT signal to interrupt the execution of time-consuming commands.
The Ctrl-C shortcut does not send a
SIGINT
signal.From the Windows console document:
But in the repl of QuickJS, on Windows, press CTRL+C does not send a
SIGINT
signal to interrupt the execution of time-consuming commands.Screenshot on Windows
Screenshot on Linux
The code:
The text was updated successfully, but these errors were encountered: