Consider supporting CTRL+D to close the REPL
See original GitHub issueMany REPLs (Ruby, Haskell) can be terminated with CTRL+d
. It would be nice if Java-REPL could be stopped the same way.
Issue Analytics
- State:
- Created 9 years ago
- Reactions:1
- Comments:6
Top Results From Across the Web
How to exit REPL process in correct way? - Replit
You can access the shell via the command palette (F1 I think, but you can also right click in the editor window, then...
Read more >Exiting the REPL should be .exit instead of exit #4772 - GitHub
Press Ctrl+D or type "Deno.exit()" to exit REPL. > ... Consider if we added a break command for example. These are meta REPL...
Read more >C / Ctrl-C closes REPL expression interpreter interactive loop
Hello, I've noticed that the scala REPL is easily inadvertently closed by a Ctrl-C / ^C keystroke (I'm experiencing this under Linux, ...
Read more >The MicroPython Interactive Interpreter Mode (aka REPL)
You can interrupt a running program by pressing Ctrl-C. This will raise a KeyboardInterrupt which will bring you back to the REPL, providing...
Read more >Node.js - REPL Terminal - Tutorialspoint
ctrl + c − terminate the current command. · ctrl + c twice − terminate the Node REPL. · ctrl + d −...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
+1
ctrl-d
issues an end-of-transmission character, and is therefor used as a shortcut toexit
,ctrl-c
on the other hand issues an end-of-text character and should terminate the current input, not the program itself 😃+1