avy.el (avy-goto-word-1): Work for "^A"-"^Z"

Fixes #167
master
Oleh Krehel 10 years ago
parent a5fb9369e7
commit a9119039ee
  1. 2
      avy.el

@ -1063,6 +1063,8 @@ The window scope is determined by `avy-all-windows' (ARG negates it)."
((and avy-word-punc-regexp
(string-match avy-word-punc-regexp str))
(regexp-quote str))
((<= char 26)
str)
(t
(concat
(if symbol "\\_<" "\\b")

Loading…
Cancel
Save