Function: image-dired-jump-thumbnail-buffer

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

Signature

(image-dired-jump-thumbnail-buffer)

Documentation

Jump to thumbnail buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
;;;###autoload
(defun image-dired-jump-thumbnail-buffer ()
  "Jump to thumbnail buffer."
  (interactive)
  (let ((window (image-dired-thumbnail-window))
        frame)
    (if window
        (progn
          (if (not (equal (selected-frame) (setq frame (window-frame window))))
              (select-frame-set-input-focus frame))
          (select-window window))
      (message "Thumbnail buffer not visible"))))