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/*
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/*
You can add the temp variable to the exclude for the project like this:
// .vscode/settings.json
"search.exclude": {
"%TEMP%": true
}