branch: master
commit 33546b65c4932150c3ccac5c877fc46f3bd915c4
Author: Tassilo Horn <[email protected]>
Commit: Tassilo Horn <[email protected]>
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 files changed, 1 insertions(+), 0 deletions(-)
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)