Function: image-dired-minor-mode
image-dired-minor-mode is an autoloaded, interactive and byte-compiled
function defined in image-dired.el.gz.
Signature
(image-dired-minor-mode &optional ARG)
Documentation
Setup easy-to-use keybindings for the commands to be used in Dired mode.
Note that n, p and <down> and <up> will be hijacked and bound to
image-dired-dired-x-line.
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 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-dired.el.gz
;;;###autoload
(define-minor-mode image-dired-minor-mode
"Setup easy-to-use keybindings for the commands to be used in Dired mode.
Note that n, p and <down> and <up> will be hijacked and bound to
`image-dired-dired-x-line'."
:keymap image-dired-minor-mode-map)