SublimeQuickFileCreator
SublimeQuickFileCreator copied to clipboard
Ignoring the exclusion of some directories
My config User/SublimeQuickFileCreator.sublime-settings
{
"excluded_dir_patterns": [
".tmp",
"|.git",
"|.svn",
"|.venv",
"|node_modules",
"|__pycache__"
]
}
Dir tree:
core/
├── app
├── flask.sublime-project
├── flask.sublime-workspace
├── gulpfile.js
├── node_modules
├── package.json
└── package-lock.json
Exclusion for .git
, .venv
works fine, but not for node_modules
.