Function: evil-ex-search-word-backward

evil-ex-search-word-backward is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-ex-search-word-backward &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-backward (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 'backward count symbol))