From 7ec980cb97a0101c4595d6cc25901ad4b3cfb1a6 Mon Sep 17 00:00:00 2001 From: Bryan Gilbert Date: Fri, 19 May 2017 05:45:11 -0400 Subject: [PATCH] disable ivy magic slash non-match action --- modules/completion/ivy/config.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/completion/ivy/config.el b/modules/completion/ivy/config.el index b03ebfcf1..f1a7a2c6c 100644 --- a/modules/completion/ivy/config.el +++ b/modules/completion/ivy/config.el @@ -31,7 +31,9 @@ session)." ;; Don't use ^ as initial input ivy-initial-inputs-alist nil ;; highlight til EOL - ivy-format-function #'ivy-format-function-line) + ivy-format-function #'ivy-format-function-line + ;; disable magic slash on non-match + ivy-magic-slash-non-match-action nil) (after! magit (setq magit-completing-read-function #'ivy-completing-read)) (after! yasnippet (push #'+ivy-yas-prompt yas-prompt-functions))