Closed buhtz closed 2 years ago
How do I unbind or unset a key?
e.g. in evil the TAB is bind to evil-jump-next. I wan't to unbind that before loading org-mode because in org-mode the TAB is essential for other things.
evil
TAB
evil-jump-next
org-mode
Use global-unset-key or define-key and set the key in the relevant keymap to nil. See the Emacs manual for more information.
global-unset-key
define-key
How do I unbind or unset a key?
e.g. in
evil
theTAB
is bind toevil-jump-next
. I wan't to unbind that before loadingorg-mode
because inorg-mode
theTAB
is essential for other things.