Unnamed repository; edit this file 'description' to name the repository.
minor changes
Ali Bektas 2024-07-23
parent e0db833 · commit af88940
-rw-r--r--crates/load-cargo/src/lib.rs14
1 files changed, 8 insertions, 6 deletions
diff --git a/crates/load-cargo/src/lib.rs b/crates/load-cargo/src/lib.rs
index 3310614c21..9ad5c68a55 100644
--- a/crates/load-cargo/src/lib.rs
+++ b/crates/load-cargo/src/lib.rs
@@ -243,23 +243,25 @@ impl ProjectFolders {
for ws in workspaces.iter() {
let mut file_set_roots: Vec<VfsPath> = vec![];
let mut entries = vec![];
- let mut register = false;
if let Some(manifest) = ws.manifest().map(ManifestPath::as_ref) {
file_set_roots.push(VfsPath::from(manifest.to_owned()));
entries.push(manifest.to_owned());
- register = true;
}
// In case of detached files we do **not** look for a rust-analyzer.toml.
if !matches!(ws.kind, ProjectWorkspaceKind::DetachedFile { .. }) {
let ws_root = ws.workspace_root();
- file_set_roots.push(VfsPath::from(ws_root.to_owned()));
- entries.push(ws_root.to_owned());
- register = true;
+ let ratoml_path = {
+ let mut p = ws_root.to_path_buf();
+ p.push("rust-analyzer.toml");
+ p
+ };
+ file_set_roots.push(VfsPath::from(ratoml_path.to_owned()));
+ entries.push(ratoml_path.to_owned());
}
- if register {
+ if !file_set_roots.is_empty() {
let entry = vfs::loader::Entry::Files(entries);
res.watch.push(res.load.len());
res.load.push(entry);