key-chord-mode
is useful, but I don't need it to work in the minibuffer. How do I disable it in the minibuffer?
Asked
Active
Viewed 420 times
6

Gilles 'SO- stop being evil'
- 21,702
- 4
- 53
- 89

driftcrow
- 311
- 1
- 5
1 Answers
13
Just add this code in your init file:
(defun disable-key-chord-mode ()
(set (make-local-variable 'input-method-function) nil))
(add-hook 'minibuffer-setup-hook #'disable-key-chord-mode)

Sviridov Alexander
- 811
- 7
- 10