Is there a command to globally override a keybinding such that it overrides even the local settings of major modes? global-set-key is overridden by major mode bindings, as stated here: http://www.gnu.org/software/emacs/manual/html_node/emacs/Rebinding.html
feedback
|
|
No, there is no (built-in) way to set up a key binding that overrides all others. Look at how Emacs searches the keymap by reading "Searching the Active Keymaps". You could set The next area Emacs looks for a binding is in the character property at the current point - which probably isn't used all over the place, but it's one way your binding would be overridden (unless you muck with character properties to define your key everywhere, really icky). The next place Emacs looks is in the variable Make a global minor mode (see Defining Minor Modes), put your key binding in there, add your minor mode and keymap into the Your key binding will now have precedence over all others, except those earlier in the I believe that's the best you can do, w/out hacking Emacs source. | |||
|
feedback
|
|
In the case of minor mode keybindings overriding my personal global bindings i have had luck using add-hook + local-unset-key (add-hook 'undo-tree-mode (lambda () (local-unset-key "C-/"))) | |||
|
feedback
|