Skip to content

Commit

Permalink
Fix avy-goto-subword-0
Browse files Browse the repository at this point in the history
avy-goto-subword-0's regexp requires that case-fold-search is nil, so
let-bind it.
  • Loading branch information
tsdh committed May 7, 2015
1 parent 1d184b0 commit 33546b6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions avy-jump.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 33546b6

Please sign in to comment.