Open all files in a directory from the tree view.
Installation
apm install open-all
or use the Install Packages pane from Atom settings.
Configuration Options
Include Dotfiles
Open files beginning with a .
.
Defaults to false
.
Search Within Subdirectories
Open all files within all subdirectories of the selected directory.
Defaults to false
.
Note: Setting this to
true
will cause Atom to consume a lot of CPU when attempting to open a directory containing many files. Use with caution.
Skip VCS Ignored Files
Don't open files ignored by the current project's VCS. For example, projects using Git have these paths defined in their .gitignore
file.
Defaults to true
.
Running the tests
Run apm test
Contributing
If you're going to submit a pull request, please try to follow the official contribution guidelines of Atom.
- Fork it.
- Create your feature branch (
git checkout -b my-new-feature
). - Ensure tests are passing. See running-the-tests.
- Commit your changes (
git commit -am 'Add some feature'
). - Push to the branch (
git push origin my-new-feature
). - Create new Pull Request.
TODO
- Better handle opening of tons of files