Function: evil-goto-mark-line

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

Signature

(evil-goto-mark-line CHAR &optional NOERROR)

Documentation

Go to the line of the marker specified by CHAR.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-goto-mark-line (char &optional noerror)
  "Go to the line of the marker specified by CHAR."
  :keep-visual t
  :repeat nil
  :type line
  :jump t
  (interactive (list (read-char)))
  (evil-goto-mark char noerror)
  (evil-first-non-blank))