Function: image-dired-copy-filename-as-kill
image-dired-copy-filename-as-kill is an interactive and byte-compiled
function defined in image-dired.el.gz.
Signature
(image-dired-copy-filename-as-kill &optional ARG)
Documentation
Copy names of marked (or next ARG) files into the kill ring.
This works like dired-copy-filename-as-kill (which see).
Probably introduced at or before Emacs version 29.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/image/image-dired.el.gz
(defun image-dired-copy-filename-as-kill (&optional arg)
"Copy names of marked (or next ARG) files into the kill ring.
This works like `dired-copy-filename-as-kill' (which see)."
(interactive "P" image-dired-thumbnail-mode)
(image-dired--with-dired-buffer
(dired-copy-filename-as-kill arg)))