Function: evil-next-visual-line

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

Signature

(evil-next-visual-line &optional COUNT)

Documentation

Move the cursor COUNT screen lines down.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-next-visual-line (count)
  "Move the cursor COUNT screen lines down."
  :type exclusive
  (let ((line-move-visual t))
    (evil-line-move (or count 1))))