emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master a911903 029/110: avy.el (avy-goto-word-1): Work for "^A"-"


From: Oleh Krehel
Subject: [elpa] master a911903 029/110: avy.el (avy-goto-word-1): Work for "^A"-"^Z"
Date: Sat, 11 May 2019 10:15:37 -0400 (EDT)

branch: master
commit a9119039ee714ab2dc221ab08c816c59ff846f1c
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>

    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

[Prev in Thread] Current Thread [Next in Thread]