diff --git a/helix-lsp/src/client.rs b/helix-lsp/src/client.rs index d63089973..bf8a86952 100644 --- a/helix-lsp/src/client.rs +++ b/helix-lsp/src/client.rs @@ -1119,7 +1119,7 @@ impl Client { text_document: lsp::TextDocumentIdentifier, position: lsp::Position, work_done_token: Option, - ) -> Option>> { + ) -> Option>>> { let capabilities = self.capabilities.get().unwrap(); // Return early if the server does not support hover. @@ -1140,7 +1140,8 @@ impl Client { // lsp::SignatureHelpContext }; - Some(self.call::(params)) + let res = self.call::(params); + Some(async move { Ok(serde_json::from_value(res.await?)?) }) } // formatting diff --git a/helix-term/src/commands/lsp.rs b/helix-term/src/commands/lsp.rs index 1ef4d4bd9..c54429241 100644 --- a/helix-term/src/commands/lsp.rs +++ b/helix-term/src/commands/lsp.rs @@ -1076,11 +1076,7 @@ pub fn hover(cx: &mut Context) { .text_document_hover(doc.identifier(), pos, None) .unwrap(); - async move { - let json = request.await?; - let response = serde_json::from_value::>(json)?; - anyhow::Ok((server_name, response)) - } + async move { anyhow::Ok((server_name, request.await?)) } }) .collect();