noklesta / SublimeQuickFileCreator

Quick File Creator plugin for Sublime Text
64 stars 26 forks source link

Ignoring the exclusion of some directories #18

Closed karmicdude closed 7 months ago

karmicdude commented 4 years ago

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.

smaffer commented 8 months ago

@karmicdude try to remove the first | from node_modules (i think that is needed only to escape . character)