Function: evil-move-end-of-line

evil-move-end-of-line is a byte-compiled function defined in evil-common.el.

Signature

(evil-move-end-of-line &optional ARG)

Documentation

Move to the end of the line as displayed.

Like move-end-of-line, but retains the goal column.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-move-end-of-line (&optional arg)
  "Move to the end of the line as displayed.
Like `move-end-of-line', but retains the goal column."
  (evil-save-goal-column
    (move-end-of-line arg)
    (end-of-line)))