Function: image-dired-display-image-mode

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

Signature

(image-dired-display-image-mode)

Documentation

Mode for displaying and manipulating original image.

Resized or in full-size.

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

         image-scroll-down
         image-scroll-up
<left> image-backward-hscroll
<right> image-forward-hscroll
C-a image-bol
C-b image-backward-hscroll
C-e image-eol
C-f image-forward-hscroll
C-n image-next-line
C-p image-previous-line
C-v image-scroll-up
C-x < image-scroll-left
C-x > image-scroll-right
M-< image-bob
M-> image-eob
M-v image-scroll-down
f image-dired-display-current-image-full
g nil
s image-dired-display-current-image-sized

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(define-derived-mode image-dired-display-image-mode
  special-mode "image-dired-image-display"
  "Mode for displaying and manipulating original image.
Resized or in full-size."
  (buffer-disable-undo)
  (image-mode-setup-winprops)
  (setq cursor-type nil)
  (add-hook 'file-name-at-point-functions 'image-dired-file-name-at-point nil t))