I'm trying to bind a key in ido-completing-map
, and I want it to override the key-binding with the same key from minibuffer-inactive-mode-map
. But the latter seems to take precedence. How can I remedy this ?
Asked
Active
Viewed 40 times
0

Joon Kwon
- 363
- 1
- 6
-
maybe unbind the key in the minibuffer...mode-map. `(define-key minibuffer-inactive-mode-map (kbd "THE-KEY") nil)` – jue Oct 13 '20 at 21:09
-
@jue Well, I would like to keep that binding for minibuffer situations other than ido... – Joon Kwon Oct 14 '20 at 06:40
-
read here to give a keymap precedence over another keymap: https://emacs.stackexchange.com/questions/37277/priority-of-keymapping-commands maybe this solves it for you. – jue Oct 20 '20 at 20:04