What causes `M-S-t` (meta + shift + t) key binding not to take? [duplicate]
问题 This question already has an answer here : Why the key binding M-S-t fails while C-S-t works? (1 answer) Closed last year . 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