branch: master
commit 41bc3e82a5185831338b037ae3bc3a54d10b8fde
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
Ignore case for "TAB"
* ivy.el (ivy-partial-or-done): Update.
Now, e.g. "pub" can expand to "Public License".
---
ivy.el | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/ivy.el b/ivy.el
index e8204dd..980046b 100644
--- a/ivy.el
+++ b/ivy.el
@@ -286,6 +286,7 @@ candidate."
(exit-minibuffer))
(let* ((parts (split-string ivy-text " " t))
(postfix (car (last parts)))
+ (completion-ignore-case t)
(new (try-completion postfix
(mapcar (lambda (str) (substring str
(string-match postfix str)))
ivy--old-cands))))