Function: image-dired-image-mode

image-dired-image-mode is a byte-compiled function defined in image-dired.el.gz.

Signature

(image-dired-image-mode)

Documentation

Mode for displaying and manipulating original image.

Resized or in full-size.

In addition to any hooks its parent mode image-mode might have run, this mode runs the hook image-dired-image-mode-hook, as the final or penultimate step during initialization.

DEL image-dired-display-previous
S image-dired-slideshow-start
SPC image-dired-display-next
U image-dired-unmark-all-marks
d image-dired-flag-thumb-original-file
m image-dired-mark-thumb-original-file
n image-dired-display-next
o nil
p image-dired-display-previous
u image-dired-unmark-thumb-original-file

Probably introduced at or before Emacs version 29.1.

Aliases

image-dired-display-image-mode (obsolete since 29.1)

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-dired.el.gz
  "o" nil)   ; image-save

(define-derived-mode image-dired-image-mode
  image-mode "image-dired-image-display"
  "Mode for displaying and manipulating original image.
Resized or in full-size."
  :interactive nil
  :group 'image-dired
  (setq-local column-number-mode nil)
  (setq-local line-number-mode nil)
  (add-hook 'file-name-at-point-functions #'image-dired-file-name-at-point nil t))