Reputation: 6032
I'm currently experimenting with mediawiki-mode and yasnippet. They both have binding for the TAB key in their respective mode-map. How do I programatically tweak the mediawiki-mode-map so it doesn't re-map TAB?
Upvotes: 1
Views: 99
Reputation: 993
The canonical way of unsetting a keybinding in a map, is to set it to nil. So:
(define-key mediawiki-mode-map (kbd "TAB") nil)
Upvotes: 3