Function: image-dired-dired-comment-files

image-dired-dired-comment-files is an autoloaded, interactive and byte-compiled function defined in image-dired-tags.el.gz.

Signature

(image-dired-dired-comment-files)

Documentation

Add comment to current or marked files in Dired.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-dired-tags.el.gz
;;;###autoload
(defun image-dired-dired-comment-files ()
  "Add comment to current or marked files in Dired."
  (interactive nil dired-mode)
  (let ((comment (image-dired-read-comment)))
    (image-dired-write-comments
     (mapcar
      (lambda (curr-file)
        (cons curr-file comment))
      (dired-get-marked-files)))))