Unnamed repository; edit this file 'description' to name the repository.
Update crates/rust-analyzer/src/handlers.rs
Co-authored-by: Lukas Wirth <[email protected]>
| -rw-r--r-- | crates/rust-analyzer/src/handlers.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/rust-analyzer/src/handlers.rs b/crates/rust-analyzer/src/handlers.rs index c38addd598..4ac76557df 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(()) } |