From a9119039ee714ab2dc221ab08c816c59ff846f1c Mon Sep 17 00:00:00 2001 From: Oleh Krehel Date: Wed, 3 Aug 2016 15:35:19 +0200 Subject: [PATCH] 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")