This question already has an answer here:
- Why the key binding M-S-t fails while C-S-t works? 1 answer
By default, C-S-t
and M-S-t
are both unbound in my Emacs. Hence, when I press them, they are translated into C-t
and M-t
. Fine, but I want to use them for a tweak on the original function, and therefore put these lines in my .emacs
:
(global-set-key (kbd "C-S-t") 'transpose-chars-backward)
(global-set-key (kbd "M-S-t") 'transpose-words-backward)
The functions there are my own, and work fine when called via M-x
.
This works for C-S-t
, but not for M-S-t
which still gets translated to M-t
. The message on C-h k M-S-t
confirms this.
It's not that it's impossible to configure M-S-
combinations in general, because M-q
and M-S-q
do different things.
What causes this inconsistency and how can I get around it?
I'm running Aquamacs on Mac OS X 10.9.5.