Highlighting a symbol, Right-Click --> Find All References (or Go To References) brings up a pane with all usages of that symbol in every file in my workspace. Unfortunately this includes .ipynb_checkpoints/*
files and others making it hard to comb through results.
Following this answer, I successfully removed __pycache__
files by adding **/__pycache__
to files:exclude in my User Settings. But adding **/.ipynb_checkpoints/**
(and similar globs) there, nor to Files: Watcher Exclude did anything. Also tried this setting in my remote ssh settings and workspace settings.
Anyone know how to filter these references? FYI I'm running VS code 1.62.2 on Windows 10 and my configured remote SSH python executable is Python version 3.7 in a conda environment.