summaryrefslogtreecommitdiff
path: root/emacs-lisp-mode/x-dired.process_marked
diff options
context:
space:
mode:
Diffstat (limited to 'emacs-lisp-mode/x-dired.process_marked')
-rwxr-xr-xemacs-lisp-mode/x-dired.process_marked17
1 files changed, 17 insertions, 0 deletions
diff --git a/emacs-lisp-mode/x-dired.process_marked b/emacs-lisp-mode/x-dired.process_marked
new file mode 100755
index 0000000..9af5a26
--- /dev/null
+++ b/emacs-lisp-mode/x-dired.process_marked
@@ -0,0 +1,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 \ No newline at end of file