Function: evil-ex-search-word-forward
evil-ex-search-word-forward is an interactive and byte-compiled
function defined in evil-commands.el.
Signature
(evil-ex-search-word-forward &optional COUNT SYMBOL)
Documentation
Search for the next occurrence of word under the cursor.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-ex-search-word-forward (count &optional symbol)
"Search for the next occurrence of word under the cursor."
:jump t
:type exclusive
(interactive (list (prefix-numeric-value current-prefix-arg)
evil-symbol-word-search))
(evil-ex-start-word-search nil 'forward count symbol))