jwiegley / use-package

A use-package declaration for simplifying your .emacs
https://jwiegley.github.io/use-package
GNU General Public License v3.0
4.42k stars 261 forks source link

Unbind or unset a key? #961

Closed buhtz closed 2 years ago

buhtz commented 3 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.

skangas commented 2 years ago

Use global-unset-key or define-key and set the key in the relevant keymap to nil. See the Emacs manual for more information.