From: Oleh Krehel Date: Mon, 4 Apr 2016 14:58:40 +0000 (+0200) Subject: ivy.el (ivy--minibuffer-setup): Ensure inhibit-field-text-motion is nil X-Git-Url: https://code.delx.au/gnu-emacs-elpa/commitdiff_plain/2bd092d274c3c27245f46dde42e2a4e4a915ea3f ivy.el (ivy--minibuffer-setup): Ensure inhibit-field-text-motion is nil It's normally nil, but may become t when debugging stuff. And that trips up ivy. --- diff --git a/ivy.el b/ivy.el index 86021d617..000d68e07 100644 --- a/ivy.el +++ b/ivy.el @@ -1797,6 +1797,7 @@ depending on the number of candidates." (set (make-local-variable 'minibuffer-default-add-function) (lambda () (list ivy--default))) + (set (make-local-variable 'inhibit-field-text-motion) nil) (when (display-graphic-p) (setq truncate-lines t)) (setq-local max-mini-window-height ivy-height)