Function: image-dired-jump-original-dired-buffer

image-dired-jump-original-dired-buffer is an interactive and byte-compiled function defined in image-dired.el.gz.

Signature

(image-dired-jump-original-dired-buffer)

Documentation

Jump to the Dired buffer associated with the current image file.

You probably want to use this together with image-dired-track-original-file.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defun image-dired-jump-original-dired-buffer ()
  "Jump to the Dired buffer associated with the current image file.
You probably want to use this together with
`image-dired-track-original-file'."
  (interactive)
  (let ((buf (image-dired-associated-dired-buffer))
        window frame)
    (setq window (image-dired-get-buffer-window buf))
    (if window
        (progn
          (if (not (equal (selected-frame) (setq frame (window-frame window))))
              (select-frame-set-input-focus frame))
          (select-window window))
      (message "Associated dired buffer not visible"))))