branch: master
commit 2bd092d274c3c27245f46dde42e2a4e4a915ea3f
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
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.
---
ivy.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/ivy.el b/ivy.el
index 86021d6..000d68e 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)