Function: evil-end-of-visual-line

evil-end-of-visual-line is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-end-of-visual-line &optional COUNT)

Documentation

Move the cursor to the last character of the current screen line.

If COUNT is given, move COUNT - 1 screen lines downward first.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-end-of-visual-line (count)
  "Move the cursor to the last character of the current screen line.
If COUNT is given, move COUNT - 1 screen lines downward first."
  :type inclusive
  (end-of-visual-line count)
  (evil-move-cursor-back t))