Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-lsp/src/lib.rs')
-rw-r--r--helix-lsp/src/lib.rs12
1 files changed, 1 insertions, 11 deletions
diff --git a/helix-lsp/src/lib.rs b/helix-lsp/src/lib.rs
index 7ece350a..5eeea81c 100644
--- a/helix-lsp/src/lib.rs
+++ b/helix-lsp/src/lib.rs
@@ -900,17 +900,7 @@ fn start_client(
}
// next up, notify<initialized>
- let notification_result = _client
- .notify::<lsp::notification::Initialized>(lsp::InitializedParams {})
- .await;
-
- if let Err(e) = notification_result {
- log::error!(
- "failed to notify language server of its initialization: {}",
- e
- );
- return;
- }
+ _client.notify::<lsp::notification::Initialized>(lsp::InitializedParams {});
initialize_notify.notify_one();
});