Questions tagged [key-translation-map]
The key-translation-map tag has no summary.
7 questions
0 votes
1 answer
55 views
How to translate C-i to F8
I have tried the following: (keyboard-translate ?\C-I (kbd "<f8>")) (keyboard-translate ?\C-I [(f8)]) The representation of F8 key is wrong.
0 votes
1 answer
187 views
how to exchange ESC with C-g in spacemacs
I used C-g to cancel operation in spacemacs, but feel ESC is a better way than C-g. I tried the following, but not work, spacemacs will report issue when startup: (define-key key-translation-map (kbd &...
2 votes
1 answer
286 views
How do I remove the key translation for function keys with modifiers?
I would like to bind the dedicated function keys (F1 through F10) using the standard modifier key, e.g. (define-key my-keymap (kbd "<S-F2>") #'my-function). However, this and similar ...
4 votes
1 answer
780 views
How can I prevent/override key translation behavior such as: µ (translated from A-m) runs the command self-insert-command
I've bound a command to A-m, however some package that I load seems to modify input translation maps (input-decode-map, local-function-key-map, function-key-map, key-translation-map) that interfere ...