When using CTRL + P to search in all project-files in Sublime Text 3, I use the following settings to exclude some folders:
"binary_file_patterns":
[
".svn/**",
".git/**",
".hg",
"node_modules/**",
"bower_components",
"cache",
"deprecated",
"vendor/**"
]
Is it possible to exclude all vendor content but not the vendor/laravel folder? Is there any form of regular expressions possible or are there some negating operators that I could use?