Function: image-dired-dired-previous-line
image-dired-dired-previous-line is an interactive and byte-compiled
function defined in image-dired-dired.el.gz.
Signature
(image-dired-dired-previous-line &optional ARG)
Documentation
Call dired-previous-line, while tracking the file's thumbnail.
This can safely replace dired-previous-line.
With prefix argument ARG, move that many lines.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/image/image-dired-dired.el.gz
(defun image-dired-dired-previous-line (&optional arg)
"Call `dired-previous-line', while tracking the file's thumbnail.
This can safely replace `dired-previous-line'.
With prefix argument ARG, move that many lines."
(interactive "P" dired-mode)
(dired-previous-line (or arg 1))
(if image-dired-track-movement
(image-dired-track-thumbnail)))