emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master 9aee83a 105/272: ivy.el (ivy-completion-in-region): Bind c


From: Oleh Krehel
Subject: [elpa] master 9aee83a 105/272: ivy.el (ivy-completion-in-region): Bind completion-ignore-case
Date: Mon, 25 Apr 2016 10:13:19 +0000

branch: master
commit 9aee83aca1fe6f370d5adde4fe2516790014e01a
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>

    ivy.el (ivy-completion-in-region): Bind completion-ignore-case
    
    It's convenient to have it the same value as `case-fold-search'.
---
 ivy.el |    1 +
 1 file changed, 1 insertion(+)

diff --git a/ivy.el b/ivy.el
index ebd1c96..26f6167 100644
--- a/ivy.el
+++ b/ivy.el
@@ -1515,6 +1515,7 @@ The previous string is between `ivy-completion-beg' and 
`ivy-completion-end'."
   "An Ivy function suitable for `completion-in-region-function'."
   (let* ((enable-recursive-minibuffers t)
          (str (buffer-substring-no-properties start end))
+         (completion-ignore-case case-fold-search)
          (comps
           (completion-all-completions str collection predicate (- end start))))
     (if (null comps)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]