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
In the gnu emacs lisp reference manual, section 21.1 "Key Sequences", they reference using \t to represent the tab key.
Using the syntax shown in the Lisp reference manual, I would use the following command:
(global-set-key (kbd "C-\t") 'my-func)