branch: master
commit 9aee83aca1fe6f370d5adde4fe2516790014e01a
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
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)