Function: evil-find-char-to-backward
evil-find-char-to-backward is an interactive and byte-compiled
function defined in evil-commands.el.
Signature
(evil-find-char-to-backward &optional COUNT CHAR)
Documentation
Move before the previous COUNT'th occurrence of CHAR.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-find-char-to-backward (count char)
"Move before the previous COUNT'th occurrence of CHAR."
:type exclusive
(interactive "<c><C>")
(evil-find-char-to (- (or count 1)) char))