Function: evil-next-line

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

Signature

(evil-next-line &optional COUNT)

Documentation

Move the cursor COUNT lines down.

Key Bindings

Source Code

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