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
Currently, the cbmbasic.exe in interactive mode exits when Control+C or Control+Break is pressed.
It would probably feel more natural, and avoid users losing their code when they're trying to program something and are trying to break back to the interactive prompt, if these keystrokes were handled by cbmbasic as equivalent to the original Stop (Run/Stop) key.
On Win32, this can be achieved by providing a handler routine to SetConsoleCtrlHandler. Be aware the routine will be called from another thread.
The text was updated successfully, but these errors were encountered:
Currently, the cbmbasic.exe in interactive mode exits when Control+C or Control+Break is pressed.
It would probably feel more natural, and avoid users losing their code when they're trying to program something and are trying to break back to the interactive prompt, if these keystrokes were handled by cbmbasic as equivalent to the original Stop (Run/Stop) key.
On Win32, this can be achieved by providing a handler routine to SetConsoleCtrlHandler. Be aware the routine will be called from another thread.
The text was updated successfully, but these errors were encountered: