what is terminal escape sequence for ctrl + arrow (left, right,…) in TERM=linux

后端 未结 3 1202
别跟我提以往
别跟我提以往 2020-12-14 22:42

I am building a terminal window in a browser (sth. like ajaxterm) and don\'t know which escape sequence to send to ssh tunnel (opened via paramiko.SSHClient().invoke_s

相关标签:
3条回答
  • 2020-12-14 23:07

    The Ctrl+arrow keycodes were introduced by xterm, and the likes of Gnome Terminal and KDE Konsole try to be compatible with xterm. Actual VT100 and VT220 terminals did not have separate keycodes for such combinations. As far as I know, the Linux console aims to be compatible with the VT100, with some additions, whereas xterm emulates the VT220, with lots of additions.

    0 讨论(0)
  • 2020-12-14 23:22

    A quick check with od -c reveals that gnome-termainal generates these values:

    Left-arrow generates ESC-[-D.

    Control-left-array geneates ESC-[-1-;-5-D

    0 讨论(0)
  • 2020-12-14 23:28

    Terminals were hardware devices that consisted of a keyboard and an output device (initially a hardcopy printer, later a CRT monitor). A large computer could have several remote terminals connected to it. Each terminal would have a protocol for communicating efficiently with the computer, for CRT-based terminals this includes having special "control sequences" to change cursor position, erase parts of the current line/screen, switch to an alternate full-screen mode, ...

    A terminal emulator is an application emulating one of those older terminals. It allows to do functions like cursor positioning, setting foreground and background colors, ... Terminal emulators try to emulate some specific terminal protocol, but each has its own set of quirks and deviations.

    Unix systems have databases describing terminals and terminal emulators, so applications are abstracted away from the particular terminal (or terminal emulator) in use. An older database is termcap(5), while terminfo(5) is a newer database. These databases allow applications to query for the capabilities of the terminal in use. Capabilities can be booleans, numeric capabilities, or even string capabilities, e.g.: if a specific terminal type has/supports a F12 key, it will have a capability "key_f12" (long terminfo name), "kf12" (short terminfo name), "F2" (termcap name) describing the string that key produces. Try it with: tput kf12 | od -tx1.

    Since programming directly with capabilities can be cumbersome, applications typically use a higher-level library like curses/ncurses, slang, etc...

    There is a special environment variable called TERM that tells applications what terminal type they are talking to. This variable should be set to the exact terminal type if it exists in the database, for best results. This just tells the application which precise protocol and protocol deviations does the terminal understand. Changing the TERM variable does not change the terminal type, it just changes the terminal type the application thinks it is talking to.

    All that said, Ctrl+arrow is a xterm behaviour (dependent on a configuration option) that is not reflected at all in the terminfo/termcap databases, so most applications will have no knowledge of it. Either way, either your terminal emulator (in your case pyte) supports it or it doesn't.

    Assuming your main application is bash or some other application that uses the readline library, you may get away with using readline's backward-word (Meta-b/Alt-b/ESC b by default, configurable in inputrc) instead.

    0 讨论(0)
提交回复
热议问题