Function: image-dired-next-line
image-dired-next-line is an interactive and byte-compiled function
defined in image-dired.el.gz.
Signature
(image-dired-next-line)
Documentation
Move to next line and display properties.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defun image-dired-next-line ()
"Move to next line and display properties."
(interactive)
(let ((goal-column (current-column)))
(forward-line 1)
(move-to-column goal-column))
;; If we end up in an empty spot, back up to the next thumbnail.
(if (not (image-dired-image-at-point-p))
(image-dired-backward-image))
(if image-dired-track-movement
(image-dired-track-original-file))
(image-dired-display-thumb-properties))