diff options
| author | David Barsky <me@davidbarsky.com> | 2023-03-10 10:35:47 -0500 |
|---|---|---|
| committer | David Barsky <me@davidbarsky.com> | 2023-03-13 13:30:19 -0400 |
| commit | 7a6e1119af28aeb0c42d3092a7a9957df731c92c (patch) | |
| tree | 70ebf4551af57a3380a6cacd7bd11dde076fae76 | |
| parent | 68d3eaead4100a32e705161ee0136121882949f1 (diff) | |
| download | rust-7a6e1119af28aeb0c42d3092a7a9957df731c92c.tar.gz rust-7a6e1119af28aeb0c42d3092a7a9957df731c92c.zip | |
Update crates/rust-analyzer/src/handlers.rs
Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
| -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 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(()) } |
