From 6f2b60708e64123c711fee16cf852cf662f8f011 Mon Sep 17 00:00:00 2001 From: Amethyst Reese Date: Thu, 18 Sep 2025 21:10:42 -0700 Subject: [PATCH] Exclude snapshots from vscode search results (#20457) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 91c33bc2c6..ed69b26b29 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,4 +3,7 @@ "--all-features" ], "rust-analyzer.check.command": "clippy", -} \ No newline at end of file + "search.exclude": { + "**/*.snap": true + } +}