shell - What is terminal key code for Ctrl+Backspace -
i'm trying find ctrl+backspace terminal keycode create delete whole words in shell.
while explained how codes arrows, home, del , such keys cat
or od
commands:
or codes given straight here: https://code.google.com/p/mintty/wiki/keycodes (^_ doesn't work me) can't find way ctrl+backpace code.
any clues? thanks.
the cursor- , home/end (editing-keypad) keys different backspace key. send type of escape sequence. backspace key not. sends single command character, makes control sequence, rather escape sequence. distinction used in xterm manual.
control/backspace (like case control-modifier applied control character) feature may provided terminal, has no general meaning (much less standard meaning). rxvt (during 1990s) used combination switch between ascii bs
(^h
or 8) , del
(^?
, or 127). xterm incorporated in 1998 (patch #83) same purpose. way, vt220 emulator, xterm refers "backarrow key" (vt200s had that, not backspace key).
putty not appear provide feature; behavior control/backspace same without control-modifier.
shell terminal
No comments:
Post a Comment