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)
However, whenever I use it, I get a
<C-tab> is undefined
error message. Trying to set the binding to “C-tab” results in an error message.
How can I set my binding to C-TAB?
1 Answer