shell - What is terminal key code for Ctrl+Backspace -
I'm trying to find the Ctrl + backspace terminal keycode Let me remove the whole words in the shell.
Although it has been explained that how to get those codes for arrows , home , del and Such a key with the cue
or od
command:
Or direct The code here (^ _ does not work for me) I can not find the way to get the Ctrl + back space code.
Any clues? Thank you.
The cursor- and the home / end (edit-keypad) key is different from the backspace key. They always send some sort of escape sequence backspace key, it sends a single control character, which makes it control sequence , instead of escape sequence
Control / Backspace (like in any case where a control-modifier has been applied to the control character) is a feature that provided by a terminal Is done, but its normal Does not have (a standard meaning is too short). RCVVT (during the decade of 1990) gave this combination as ASCII BS
( ^ H
or 8) and DEL
( ?
, or 127). Includes Xterm (1998) for the same purpose. By the way, as a VT220 emulator, extram refers to it as a "backer key" (VT200S was not a backspace key)
The cyst does not provide that facility; His behavior for control / backspace is similar to the control-modifier.
Comments
Post a Comment