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

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

[elpa] master 5f76c9d 004/110: avy.el (avy-goto-word-0-regexp): New defc


From: Oleh Krehel
Subject: [elpa] master 5f76c9d 004/110: avy.el (avy-goto-word-0-regexp): New defcustom
Date: Sat, 11 May 2019 10:15:33 -0400 (EDT)

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

    avy.el (avy-goto-word-0-regexp): New defcustom
    
    * avy.el (avy-goto-word-0): Use `avy-goto-word-0-regexp'.
    
    Fixes #136
---
 avy.el | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/avy.el b/avy.el
index a44eaaf..ff45502 100644
--- a/avy.el
+++ b/avy.el
@@ -156,6 +156,13 @@ When nil, punctuation chars will not be matched.
 \"[!-/:address@hidden" will match all printable punctuation chars."
   :type 'regexp)
 
+(defcustom avy-goto-word-0-regexp "\\b\\sw"
+  "Regexp that determines positions for `avy-goto-word-0'."
+  :type '(choice
+          (const :tag "Default" "\\b\\sw")
+          (const :tag "Not whitespace" "[^ \r\n\t]+")
+          (regexp :tag "Regex")))
+
 (defcustom avy-ignored-modes '(image-mode doc-view-mode pdf-view-mode)
   "List of modes to ignore when searching for candidates.
 Typically, these modes don't use the text representation.")
@@ -952,7 +959,7 @@ The window scope is determined by `avy-all-windows' (ARG 
negates it)."
 The window scope is determined by `avy-all-windows' (ARG negates it)."
   (interactive "P")
   (avy-with avy-goto-word-0
-    (avy--generic-jump "\\b\\sw" arg avy-style)))
+    (avy--generic-jump avy-goto-word-0-regexp arg avy-style)))
 
 ;;;###autoload
 (defun avy-goto-word-1 (char &optional arg)



reply via email to

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