Function: evil-next-mark-line
evil-next-mark-line is an interactive and byte-compiled function
defined in evil-commands.el.
Signature
(evil-next-mark-line &optional COUNT)
Documentation
Go to COUNT line of next lowercase mark after current line.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-next-mark-line (count)
"Go to COUNT line of next lowercase mark after current line."
:keep-visual t
:repeat nil
:type exclusive
:jump t
(unless (evil--lowercase-markers) (user-error "No marks in this buffer"))
(dotimes (_ (or count 1))
(move-end-of-line nil)
(evil--next-mark t))
(evil-first-non-blank))