6

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

driftcrow
  • 311
  • 1
  • 5

1 Answers1

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)