Function: evil-search-unbounded-word-forward
evil-search-unbounded-word-forward is an interactive and byte-compiled
function defined in evil-commands.el.
Signature
(evil-search-unbounded-word-forward &optional COUNT SYMBOL)
Documentation
Search forward for symbol under point.
The search is unbounded, i.e., the pattern is not wrapped in
\<...\>.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-search-unbounded-word-forward (count &optional symbol)
"Search forward for symbol under point.
The search is unbounded, i.e., the pattern is not wrapped in
\\<...\\>."
:jump t
:type exclusive
(interactive (list (prefix-numeric-value current-prefix-arg)
evil-symbol-word-search))
(dotimes (_ (or count 1))
(evil-search-word t t symbol)))