From d853b8cda15c64392138c9a5cbf9d7a06332eeda Mon Sep 17 00:00:00 2001 From: Ryan Brue Date: Tue, 5 Mar 2024 00:36:48 -0600 Subject: [PATCH] fix: include Cargo.toml in .vscode/settings.json This was needed for me to get autocomplete with rust-analyzer for libcosmic --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index ee258746..110cb32e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,7 @@ { "rust-analyzer.check.overrideCommand": ["just", "check-json"], - "git-blame.gitWebUrl": "" + "git-blame.gitWebUrl": "", + "rust-analyzer.linkedProjects": [ + "./Cargo.toml" + ] }