Exclude snapshots from vscode search results (#20457)

Makes ⌘-T file search ignore snapshot files, so you can actually fuzzy
match "ruff cache" to "ruff/src/cache.rs" without looking/scrolling past
dozens of snapshot files in the search results.
This commit is contained in:
Amethyst Reese 2025-09-18 21:10:42 -07:00 committed by GitHub
parent bc89d0394c
commit 6f2b60708e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -3,4 +3,7 @@
"--all-features"
],
"rust-analyzer.check.command": "clippy",
"search.exclude": {
"**/*.snap": true
}
}