Function: image-dired-dired-next-line

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

Signature

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

Documentation

Call dired-next-line, while tracking the file's thumbnail.

This can safely replace dired-next-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-next-line (&optional arg)
  "Call `dired-next-line', while tracking the file's thumbnail.
This can safely replace `dired-next-line'.
With prefix argument ARG, move that many lines."
  (interactive "P" dired-mode)
  (dired-next-line (or arg 1))
  (if image-dired-track-movement
      (image-dired-track-thumbnail)))