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
I'd like to have Ctrl-D behave like continue, not as quit.
This should be opt-in with a config knob, so that it can be set in ~/.rdbgrc.
Additional context
Coming from byebug, letting the program continue with Ctrl+d is deeply engrained in my muscle memory. After switching to debug, I often find myself on the Really quit? [Y/n] prompt.
The text was updated successfully, but these errors were encountered:
config set continue_keybind "C-d" # default: not set
config set quit_keybind "C-q" # default: C-d
which follows readline's inputrc syntax. (I don't know how config variables are parsed, maybe the quotes can be omitted?)
I don't mind different names for the *_keybind knobs. When debug.rb already has existing config variables for key bindings, the new variables should of course follow their naming conventions.
Your proposal
I'd like to have Ctrl-D behave like
continue
, not asquit
.This should be opt-in with a
config
knob, so that it can be set in~/.rdbgrc
.Additional context
Coming from
byebug
, letting the program continue with Ctrl+d is deeply engrained in my muscle memory. After switching todebug
, I often find myself on theReally quit? [Y/n]
prompt.The text was updated successfully, but these errors were encountered: