Function: evil-previous-mark
evil-previous-mark is an interactive and byte-compiled function
defined in evil-commands.el.
Signature
(evil-previous-mark &optional COUNT)
Documentation
Go to COUNT previous lowercase mark.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-previous-mark (count)
"Go to COUNT previous lowercase mark."
:keep-visual t
:repeat nil
:type exclusive
:jump t
(dotimes (_ (or count 1))
(evil--next-mark nil)))