1

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/*

Sefa Yavuz
  • 33
  • 1
  • 3

1 Answers1

0

You can add the temp variable to the exclude for the project like this:

// .vscode/settings.json
  "search.exclude": {
    "%TEMP%": true
  }
Gusk
  • 152
  • 2
  • 7