Function: image-dired-minor-mode

image-dired-minor-mode is an autoloaded, interactive and byte-compiled function defined in image-dired-dired.el.gz.

Signature

(image-dired-minor-mode &optional ARG)

Documentation

Setup easy-to-use keybindings for Image-Dired in Dired mode.

This minor mode adds these additional bindings:
  C-S-n (image-dired-next-line-and-display) Move to next line and display thumbnail image.
  C-S-p (image-dired-previous-line-and-display) Move to previous line and display thumbnail image.
  S-RET (image-dired-mark-and-display-next) Mark current file and display next thumbnail image.
  <tab> (image-dired-jump-thumbnail-buffer) Jump to thumbnail buffer.

For reference, these are the default Image-Dired bindings that are always available in Dired:
  C-t d (image-dired-display-thumbs) Display thumbnails of all marked files.
  C-t t (image-dired-tag-files) Tag marked file(s).
  C-t r (image-dired-delete-tag) Remove tag for selected file(s).
  C-t j (image-dired-jump-thumbnail-buffer) Jump to thumbnail buffer.
  C-t i (image-dired-dired-display-image) Display current image file.
  C-t x (image-dired-dired-display-external) Display file at point using an external viewer.
  M-x image-dired-display-thumbs-append (image-dired-display-thumbs-append) Append thumbnails to thumbnail buffer.
  C-t . (image-dired-display-thumb) Display thumbnails of all marked files.
  C-t c (image-dired-dired-comment-files) Add comment to current or marked files in Dired.
  C-t f (image-dired-mark-tagged-files) Use REGEXP to mark files with matching tag.
  C-t C-t (image-dired-dired-toggle-marked-thumbs) Toggle thumbnails in front of file names.
  C-t e (image-dired-dired-edit-comment-and-tags) Edit comment and tags of marked images.

This is a minor mode. If called interactively, toggle the Image-Dired minor mode mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode.

If called from Lisp, toggle the mode if ARG is toggle. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number.

To check whether the minor mode is enabled in the current buffer, evaluate the variable image-dired-minor-mode(var)/image-dired-minor-mode(fun).

The mode's hook is called both when the mode is enabled and when it is disabled.

Probably introduced at or before Emacs version 26.1.

Key Bindings

Aliases

image-dired-setup-dired-keybindings (obsolete since 26.1)

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-dired-dired.el.gz
;;;###autoload
(define-minor-mode image-dired-minor-mode
  "Setup easy-to-use keybindings for Image-Dired in Dired mode.

This minor mode adds these additional bindings:
\\<image-dired-minor-mode-map>
  \\[image-dired-next-line-and-display]		Move to next line and display \
thumbnail image.
  \\[image-dired-previous-line-and-display]		Move to previous line \
and display thumbnail image.
  \\[image-dired-mark-and-display-next]		Mark current file and display \
next thumbnail image.
  \\[image-dired-jump-thumbnail-buffer]		Jump to thumbnail buffer.

For reference, these are the default Image-Dired bindings that
are always available in Dired:
\\<dired-mode-map>
  \\[image-dired-display-thumbs]		Display thumbnails of all marked files.
  \\[image-dired-tag-files]		Tag marked file(s).
  \\[image-dired-delete-tag]		Remove tag for selected file(s).
  \\[image-dired-jump-thumbnail-buffer]		Jump to thumbnail buffer.
  \\[image-dired-dired-display-image]		Display current image file.
  \\[image-dired-dired-display-external]		Display file at point \
using an external viewer.
  \\[image-dired-display-thumbs-append]		Append thumbnails to \
thumbnail buffer.
  \\[image-dired-display-thumb]		Display thumbnails of all marked files.
  \\[image-dired-dired-comment-files]		Add comment to current or \
marked files in Dired.
  \\[image-dired-mark-tagged-files]		Use REGEXP to mark files with \
matching tag.
  \\[image-dired-dired-toggle-marked-thumbs]	Toggle thumbnails in \
front of file names.
  \\[image-dired-dired-edit-comment-and-tags]		Edit comment and tags \
of marked images."
  :keymap image-dired-minor-mode-map)