Function: dired-next-line

dired-next-line is an interactive and byte-compiled function defined in dired.el.gz.

Signature

(dired-next-line ARG)

Documentation

Move down ARG lines, then position at filename.

The argument ARG (interactively, prefix argument) says how many lines to move; the default is one line.

Whether to skip empty lines and how to move from last line is controlled by dired-movement-style.

View in manual

Probably introduced at or before Emacs version 30.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/dired.el.gz
(defun dired-next-line (arg)
  "Move down ARG lines, then position at filename.
The argument ARG (interactively, prefix argument) says how many lines
to move; the default is one line.

Whether to skip empty lines and how to move from last line
is controlled by `dired-movement-style'."
  (interactive "^p" dired-mode)
  (if dired-movement-style
      (dired--move-to-next-line arg #'dired--trivial-next-line)
    (dired--trivial-next-line arg)))