summaryrefslogtreecommitdiff
path: root/emacs-lisp-mode/x-dired.process_marked
blob: 9af5a26ed680fdb81be248a8ea35423be264fa53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#contributor: Xah Lee (XahLee.org)
#name: process marked files in dired
# key: x-dired
# --
;; idiom for processing a list of files in dired's marked files
 
;; suppose myProcessFile is your function that takes a file path
;; and do some processing on the file

(defun dired-myProcessFile ()
  "apply myProcessFile function to marked files in dired."
  (interactive)
  (require 'dired)
  (mapc 'myProcessFile (dired-get-marked-files))
)

;; to use it, type M-x dired-myProcessFile