Function: image-dired-backward-image

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

Signature

(image-dired-backward-image &optional ARG)

Documentation

Move to previous image in the thumbnail buffer.

Optional prefix ARG says how many images to move; the default is one image. Negative means move forward. On reaching end or beginning of buffer, stop and show a message.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-dired.el.gz
(defun image-dired-backward-image (&optional arg)
  "Move to previous image in the thumbnail buffer.
Optional prefix ARG says how many images to move; the default is
one image.  Negative means move forward.
On reaching end or beginning of buffer, stop and show a message."
  (interactive "p" image-dired-thumbnail-mode)
  (image-dired-forward-image (- (or arg 1))))