Created
July 4, 2011 19:16
-
-
Save bamboo/1063808 to your computer and use it in GitHub Desktop.
Emacs: opening all actionscript files in a directory
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'find-lisp) | |
(defun open-actionscript-files-in (dir-path) | |
(interactive "s") | |
(mapc 'find-file (find-lisp-find-files dir-path "\\.as$"))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment