Sefa Yavuz
Sefa Yavuz

Reputation: 33

Visual Studio Code | Exclude temporary FTP files from the fuzzy search

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

Answers (1)

Gusk
Gusk

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

Related Questions