Function: evil-repeat-find-char-reverse
evil-repeat-find-char-reverse is an interactive and byte-compiled
function defined in evil-commands.el.
Signature
(evil-repeat-find-char-reverse &optional COUNT)
Documentation
Repeat the last find COUNT times in the opposite direction.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-repeat-find-char-reverse (count)
"Repeat the last find COUNT times in the opposite direction."
:type inclusive
(evil-repeat-find-char (- (or count 1))))