Variable: avy-goto-word-0-regexp
avy-goto-word-0-regexp is a customizable variable defined in avy.el.
Value
"\\b\\sw"
Documentation
Regexp that determines positions for avy-goto-word-0.
Source Code
;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(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 "Symbol" "\\_<\\(\\sw\\|\\s_\\)")
(const :tag "Not whitespace" "[^ \r\n\t]+")
(regexp :tag "Regex")))