Function: image-dired-toggle-movement-tracking
image-dired-toggle-movement-tracking is an interactive and
byte-compiled function defined in image-dired.el.gz.
Signature
(image-dired-toggle-movement-tracking)
Documentation
Turn on and off image-dired-track-movement.
Tracking of the movements between thumbnail and Dired buffer so that they are "mirrored" in the dired buffer. When this is on, moving around in the thumbnail or dired buffer will find the matching position in the other buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defun image-dired-toggle-movement-tracking ()
"Turn on and off `image-dired-track-movement'.
Tracking of the movements between thumbnail and Dired buffer so that
they are \"mirrored\" in the dired buffer. When this is on, moving
around in the thumbnail or dired buffer will find the matching
position in the other buffer."
(interactive)
(setq image-dired-track-movement (not image-dired-track-movement))
(message "Tracking %s" (if image-dired-track-movement "on" "off")))