aboutsummaryrefslogtreecommitdiff
path: root/helix-lsp
diff options
context:
space:
mode:
authorJan Hrastnik2021-02-23 22:56:06 +0000
committerBlaž Hrastnik2021-03-16 14:03:10 +0000
commit0322c28e6bc1f3bf13842b7db47aafbe5752d45c (patch)
tree1aab0291b3677b90d68c51feed14114827bd90b8 /helix-lsp
parent18ec8adc7f24d0cde3d185202f8656b5cf7fefb0 (diff)
gd now works for singular definition
Diffstat (limited to 'helix-lsp')
-rw-r--r--helix-lsp/src/client.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/helix-lsp/src/client.rs b/helix-lsp/src/client.rs
index f3d3b7e1..e0005c09 100644
--- a/helix-lsp/src/client.rs
+++ b/helix-lsp/src/client.rs
@@ -603,8 +603,6 @@ impl Client {
let response = self.request::<lsp::request::GotoDefinition>(params).await?;
- println!("{:?}", response);
-
let items = match response {
Some(lsp::GotoDefinitionResponse::Scalar(location)) => vec![location],
Some(lsp::GotoDefinitionResponse::Array(location_vec)) => location_vec,