Function: image-dired-dired-previous-line

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

Signature

(image-dired-dired-previous-line &optional ARG)

Documentation

Call dired-previous-line, then track thumbnail.

This can safely replace dired-previous-line. With prefix argument, move ARG lines.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defun image-dired-dired-previous-line (&optional arg)
  "Call `dired-previous-line', then track thumbnail.
This can safely replace `dired-previous-line'.
With prefix argument, move ARG lines."
  (interactive "P")
  (dired-previous-line (or arg 1))
  (if image-dired-track-movement
      (image-dired-track-thumbnail)))