delve icon indicating copy to clipboard operation
delve copied to clipboard

Support inputrc

Open loyalpartner opened this issue 4 years ago • 2 comments
trafficstars

hi, thanks for your job, i really like this debug tool!

here i have a question, i'm a bash shell user, i can use above config(~/.inputrc) bind key C-n to step command , this skill i really like it.

# keybind for python or python3
$if gdb
"\C-n": "step\C-m"
"\C-c": "continue\C-m"
"\C-r": "run\C-m"
$endif

when i try dlv, i try to bellow config, but it hasno effect, could you tell me how to do it?

# keybind for python or python3
$if dlv
"\C-n": "step\C-m"
"\C-c": "continue\C-m"
"\C-r": "run\C-m"
$endif

loyalpartner avatar May 27 '21 09:05 loyalpartner

AFAIK the line editor we use does not support inputrc https://github.com/peterh/liner/issues/120

aarzilli avatar May 28 '21 09:05 aarzilli

@aarzilli i got it, thanks for you reply!

loyalpartner avatar May 28 '21 15:05 loyalpartner