When I search a word in my sublime project (which is very big), I found it will search files in the excluded folders.
Below is my project file:
{
“folders”:
[
{
“folder_exclude_patterns”:
[
“bin”,
“obj”,
“Built”,
“Built-Projects”,
“Imports”,
“Debug”,
“Release”,
“Samples”,
“GenSource”
],
“path”: “.”
}
]
}
Only when I exclude those folders in sublime user settings, sublime won’t search files under those folders.
I think this is not right thing.