From 33546b65c4932150c3ccac5c877fc46f3bd915c4 Mon Sep 17 00:00:00 2001 From: Tassilo Horn Date: Thu, 7 May 2015 10:28:24 +0200 Subject: [PATCH] Fix avy-goto-subword-0 avy-goto-subword-0's regexp requires that case-fold-search is nil, so let-bind it. --- avy-jump.el | 1 + 1 file changed, 1 insertion(+) diff --git a/avy-jump.el b/avy-jump.el index f596363..2f8617b 100644 --- a/avy-jump.el +++ b/avy-jump.el @@ -277,6 +277,7 @@ When ARG is non-nil, flip the window scope." (not avy-all-windows) avy-all-windows)) (avy-keys (number-sequence ?a ?z)) + (case-fold-search nil) (candidates (avy--regex-candidates "\\(\\b\\sw\\)\\|\\(?:[^A-Z]\\([A-Z]\\)\\)"))) (dolist (x candidates)