From 7a6e1119af28aeb0c42d3092a7a9957df731c92c Mon Sep 17 00:00:00 2001 From: David Barsky Date: Fri, 10 Mar 2023 10:35:47 -0500 Subject: [PATCH] Update crates/rust-analyzer/src/handlers.rs Co-authored-by: Lukas Wirth --- crates/rust-analyzer/src/handlers.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/rust-analyzer/src/handlers.rs b/crates/rust-analyzer/src/handlers.rs index c38addd5987..4ac76557df1 100644 --- a/crates/rust-analyzer/src/handlers.rs +++ b/crates/rust-analyzer/src/handlers.rs @@ -63,8 +63,8 @@ pub(crate) fn handle_add_project( let config = Arc::make_mut(&mut state.config); config.add_linked_projects(params.project); - state.fetch_workspaces_queue.request_op("reload workspace request".to_string()); - state.fetch_build_data_queue.request_op("reload workspace request".to_string()); + state.fetch_workspaces_queue.request_op("linked projects changed".to_string()); + state.fetch_build_data_queue.request_op("linked projects changed".to_string()); Ok(()) }