Function: image-dired-dired-display-properties
image-dired-dired-display-properties is an interactive and
byte-compiled function defined in image-dired-dired.el.gz.
Signature
(image-dired-dired-display-properties)
Documentation
Show in the echo area the image-related properties of a file in Dired buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/image/image-dired-dired.el.gz
(defun image-dired-dired-display-properties ()
"Show in the echo area the image-related properties of a file in Dired buffer."
(interactive nil dired-mode)
(let* ((file-name (dired-get-filename))
(dired-buf (buffer-name (current-buffer)))
(image-count "") ; TODO
(props (string-join (image-dired-list-tags file-name) ", "))
(comment (image-dired-get-comment file-name))
(message-log-max nil))
(if file-name
(message "%s"
(image-dired-format-properties-string
dired-buf
file-name
image-count
props
comment)))))