Function: dired-prev-dirline

dired-prev-dirline is an interactive and byte-compiled function defined in dired.el.gz.

Signature

(dired-prev-dirline ARG)

Documentation

Goto ARGth previous directory file 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-prev-dirline (arg)
  "Goto ARGth previous 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)
  (dired-next-dirline (- arg)))