jwiegley / use-package

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

Unbind or unset a key? #961

Closed buhtz closed 1 year ago

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

skangas commented 1 year 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.