https://github.com/monsterkodi/tree-view-filter
atom plugin that hides files in the tree-view
https://github.com/monsterkodi/tree-view-filter
atom-plugin
Last synced: 10 months ago
JSON representation
atom plugin that hides files in the tree-view
- Host: GitHub
- URL: https://github.com/monsterkodi/tree-view-filter
- Owner: monsterkodi
- License: mit
- Created: 2015-03-27T22:39:56.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2019-04-18T09:41:30.000Z (almost 7 years ago)
- Last Synced: 2024-04-23T21:27:15.253Z (almost 2 years ago)
- Topics: atom-plugin
- Language: CoffeeScript
- Homepage:
- Size: 1.89 MB
- Stars: 6
- Watchers: 2
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# tree-view-filter
Limits files in the tree-view to those matching certain patterns.

## Usage
Press `ctrl-alt-shift-f` or invoke `Tree View Filter:Activate` to focus the filter editor,
enter your pattern and press `enter`/`return` to confirm.
The filter shows only files that match the provided pattern(s):
e.g. `md coffee` shows all files that have *md* or *coffee* in their filename.
You can reverse the search by prepending an exclamation mark:
e.g. `!*.md !.*` hides all *markdown* and *dotfiles*.
Note that the `Fuzzy search` option only works in the first case.
To restore the tree view to its unfiltered state:
either press `escape` when the filter has focus or click on the `(x)` button to the right.
## Credits
* file pattern matching by [minimatch](https://www.npmjs.com/package/minimatch)
* case insensitive and fuzzy option by [ruleb](https://github.com/ruleb)
[atom package](https://atom.io/packages/tree-view-filter)