Function: evil-next-mark

evil-next-mark is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-next-mark &optional COUNT)

Documentation

Go to COUNT next lowercase mark.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-next-mark (count)
  "Go to COUNT next lowercase mark."
  :keep-visual t
  :repeat nil
  :type exclusive
  :jump t
  (dotimes (_ (or count 1))
    (evil--next-mark t)))