Emacs input-decode-map for terminal

送分小仙女□ 提交于 2019-12-01 05:46:22

问题


I have asked a question about Ctrl-arrow keybinding in Emacs in terminal:

Emacs Ctrl modifiers don't work in console

And was told, that Linux terminal emulator doesn't process this combination. I managed to create a file for loadkeys command, that processes these keys:

control keycode 105 = F100
string F100 = "\033[[left"
control keycode 106 = F101
string F101 = "\033[[right"

Then loaded it from root:

#loadkeys ./funcskeys

After that every time I click Ctrl-right or Ctrl-left in console, I get 'right' or 'left' printed. Now I need to process this in Emacs. As far as I understand from this question:

Binding M-<up> / M-<down> in Emacs 23.1.1

it must be done, using input-decode-map function. But I couldn't make it work. Plz, help.


回答1:


Change your "funcskeys" file slightly to produce the following escape sequences:

control keycode 105 = F100
string F100 = "\033[1;5D"
control keycode 106 = F101
string F101 = "\033[1;5C"

Then add the following lines to your .emacs file:

(define-key input-decode-map "\e[1;5C" [(control right)])
(define-key input-decode-map "\e[1;5D" [(control left)])

After running loadkeys and restarting Emacs, CTRL+left and CTRL+right should work. You can verify this by typing:

C-h k C-right

and

C-h k C-left

To actually bind these keystrokes to a command, such as forward-word, you might have to add the following lines to your .emacs file as well:

(global-set-key [(control right)] 'forward-word)
(global-set-key [(control left)] 'backward-word)

Note that this whole approach specifically only makes the key combinations CTRL+left and CTRL+right work. It does not for instance make ALT+left / ALT+right work, or any other key combinations involving the CTRL character.



来源:https://stackoverflow.com/questions/13212696/emacs-input-decode-map-for-terminal

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!