Function: image-dired-display-previous

image-dired-display-previous is an interactive and byte-compiled function defined in image-dired.el.gz.

Signature

(image-dired-display-previous ARG)

Documentation

Move to the previous image in the thumbnail buffer and display it.

With prefix ARG, move that many thumbnails.

View in manual

Probably introduced at or before Emacs version 29.1.

Key Bindings

Aliases

image-dired-display-previous-thumbnail-original (obsolete since 29.1)

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-dired.el.gz
(defun image-dired-display-previous (arg)
  "Move to the previous image in the thumbnail buffer and display it.
With prefix ARG, move that many thumbnails."
  (interactive "p" image-dired-thumbnail-mode image-dired-image-mode)
  (image-dired-display-next (- arg)))