The "Find all references" search takes forever.
When it finishes I see that VSCode searched for references in my virtual environments .venv
and .venvlinux
, even though I listed it under my "Files: Exclude" and "Files: Watcher Exclude" settings
My json.settings file looks like this
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/.venv": true,
"**/.venvlinux": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.hg/store/**": true,
"**/.venv/**": true,
"**/.venvlinux/**": true
},
}
How do I stop VSCode from searching for references in my virtual environments?