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 the movements are "mirrored" in the Dired buffer. When this is on, moving around in the thumbnail or Dired buffer will move to the matching position in the other buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image/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
the movements are \"mirrored\" in the Dired buffer.  When this is on,
moving around in the thumbnail or Dired buffer will move to the matching
position in the other buffer."
  (interactive nil image-dired-thumbnail-mode image-dired-image-mode)
  (setq image-dired-track-movement (not image-dired-track-movement))
  (message "Movement tracking %s" (if image-dired-track-movement "on" "off")))