summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleh Krehel <ohwoeowho@gmail.com>2016-08-03 15:35:19 +0200
committerOleh Krehel <ohwoeowho@gmail.com>2016-08-03 15:36:25 +0200
commita9119039ee714ab2dc221ab08c816c59ff846f1c (patch)
tree24e429c68e627a5e7a14701b1688f61b865742c9
parenta5fb9369e7b68c9786f2d620f064b4b93f2ae902 (diff)
avy.el (avy-goto-word-1): Work for "^A"-"^Z"
Fixes #167
-rw-r--r--avy.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/avy.el b/avy.el
index a3d2141..8ef6ef5 100644
--- a/avy.el
+++ b/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")