I asked a question here, and got good responses, but the problem turned out to be different from what I had thought.

I am trying to assign a certain function to the key "C-c" in shell mode, but it seems that a minor mode called tabbar-mode has a prefix-key assigned to "C-c", which overrides my setting for shell mode. How can I disable tabbar mode key assignments?

I put these after (require 'tabbar), but they did not work:

(defvar tabbar-mode-map nil)
(defvar tabbar-prefix-key nil)
link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

(defvar) only initialises a variable if it has no value. See C-hfdefvarRET for details.

Use (setq) to change the value of an existing variable.

To prevent the mode's keymap from being used when looking up key-bindings, you can delete it from the minor-mode-map-alist variable:

(assq-delete-all 'tabbar-mode minor-mode-map-alist)
link|improve this answer
Great. It worked perfectly. Thanks. – sawa Jun 26 '11 at 4:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.