yasnippet-snippets/snippets/emacs-lisp-mode/x-traverse_dir
2017-08-13 12:16:55 +01:00

7 lines
223 B
Plaintext

#name: traversing a directory
#contributor: Xah Lee (XahLee.org)
# key: x-traverse_dir
# --
;; apply a function to all files in a dir
(require 'find-lisp)
(mapc 'my-process-file (find-lisp-find-files "~/myweb/" "\\.html$"))