branch: master
commit a9119039ee714ab2dc221ab08c816c59ff846f1c
Author: Oleh Krehel <ohwoeo...@gmail.com>
Commit: Oleh Krehel <ohwoeo...@gmail.com>

    avy.el (avy-goto-word-1): Work for "^A"-"^Z"
    
    Fixes #167
---
 avy.el | 2 ++
 1 file changed, 2 insertions(+)

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")

Reply via email to