Function: evil-ex-search-previous
evil-ex-search-previous is an interactive and byte-compiled function
defined in evil-commands.el.
Signature
(evil-ex-search-previous &optional COUNT)
Documentation
Go the the previous occurrence.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-ex-search-previous (count)
"Go the the previous occurrence."
:jump t
:type exclusive
(let ((evil-ex-search-direction
(if (eq evil-ex-search-direction 'backward) 'forward 'backward)))
(evil-ex-search count)))