Function: dired-next-dirline
dired-next-dirline is an interactive and byte-compiled function
defined in dired.el.gz.
Signature
(dired-next-dirline ARG &optional OPOINT)
Documentation
Goto ARGth next directory file line.
Whether to skip empty lines and how to move from last line
is controlled by dired-movement-style.
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-dirline (arg &optional _opoint)
"Goto ARGth next directory file 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-dirline)
(dired--trivial-next-dirline arg)))