stsquad
stsquad

Reputation: 6032

How do I suppress certain key-sequences in mode keymaps?

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

Answers (1)

Sigma
Sigma

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

Related Questions