Reputation: 33
As the title says, I would like to exclude temporary FTP files from the fuzzy search.
The files to exclude are in the following directory: C:/Users/[USER]/AppData/Local/Temp/*
Upvotes: 1
Views: 225
Reputation: 151
You can add the temp variable to the exclude for the project like this:
// .vscode/settings.json
"search.exclude": {
"%TEMP%": true
}
Upvotes: 0