Reputation: 5098
I want to ignore anything in node_modules folder when I'm searching for a file name. I tried:
In preferences > package control > package settings > user - settings I included:
"folder_exclude_patterns": ["*node_modules*"],
"file_exclude_patterns": ["*node_modules*"],
Yet still when I do cmd + p and search for a file Sublime searches in node_modules...
Upvotes: 27
Views: 7004
Reputation: 1330
Sublime 3 changes the syntax. You need to remove the wildcard stars.
Go to Preferences > Settings and update the User settings like this:
{
"folder_exclude_patterns": ["node_modules"]
}
Upvotes: 38