Variable: avy-word-punc-regexp

avy-word-punc-regexp is a customizable variable defined in avy.el.

Value

"[!-/:-@[-`{-~]"

Documentation

Regexp of punctuation chars that count as word starts for `avy-goto-word-1.

When nil, punctuation chars will not be matched.

"[!-/:-@[-`{-~]" will match all printable punctuation chars.

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defcustom avy-word-punc-regexp "[!-/:-@[-`{-~]"
  "Regexp of punctuation chars that count as word starts for `avy-goto-word-1.
When nil, punctuation chars will not be matched.

\"[!-/:-@[-`{-~]\" will match all printable punctuation chars."
  :type 'regexp)