Skip to content

Instantly share code, notes, and snippets.

@bamboo
Created July 4, 2011 19:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bamboo/1063808 to your computer and use it in GitHub Desktop.
Save bamboo/1063808 to your computer and use it in GitHub Desktop.
Emacs: opening all actionscript files in a directory
(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