branch: externals/avy
commit 5f2eba5f596986aaee13dd3e5475709d2d95bb5e
Author: Oleh Krehel <ohwoeo...@gmail.com>
Commit: Oleh Krehel <ohwoeo...@gmail.com>

    avy.el (avy-isearch): Bind avy-case-fold-search to case-fold-search
    
    Fixes #280
---
 avy.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/avy.el b/avy.el
index 546c2aecaf..3096e3d33f 100644
--- a/avy.el
+++ b/avy.el
@@ -1349,7 +1349,8 @@ When ARG is non-nil, do the opposite of 
`avy-all-windows'."
   "Jump to one of the current isearch candidates."
   (interactive)
   (avy-with avy-isearch
-    (let ((avy-background nil))
+    (let ((avy-background nil)
+          (avy-case-fold-search case-fold-search))
       (avy-process
        (avy--regex-candidates (if isearch-regexp
                                   isearch-string

Reply via email to