Emacs snippet for pmwiki attachments
Posted on June 16th, 2005 by Sacha Chua
(defun sacha/dired-marked-images-as-attach ()
"Return a list of images ready to be inserted into a pmwiki page."
(interactive)
(kill-new (mapconcat
(lambda (item)
(concat "Attach:" (file-name-nondirectory item)))
(dired-get-marked-files)
"\n")))
Short URL: http://sachachua.com/blog/p/2778
I'm 