Function: image-dired-display-next

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

Signature

(image-dired-display-next &optional ARG)

Documentation

Move to the next 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-next-thumbnail-original (obsolete since 29.1)

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-dired.el.gz
(defun image-dired-display-next (&optional arg)
  "Move to the next 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--with-thumbnail-buffer
    (image-dired-forward-image arg t)
    (image-dired-display-this)))