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
Instead of using read-kbd-macro, try using the more plain syntax?
read-kbd-macro
;(global-set-key [(control tab)] 'my-func)
Perhaps the plainer syntax will make a difference?
More on read-kbd-macro and global-set-key.