I\'m trying to set a key-binding to Ctrl+TAB in Emacs. I used the following call:
(global-set-key (read-kbd-macro \"C-TAB\") \'my-func)
Howeve
Note that you can also call global-set-key
interactively. You can then see the correct binding command with repeat-complex-command
(see also KeybindingGuide):
M-x: global-set-key
Use C-x ESC ESC
(repeat-complex-command
) to see the apropiate command. In your case I get:
(global-set-key (quote [C-tab]) (quote my-func))