diff options
author | Michael Davis | 2022-10-30 21:39:27 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2023-03-08 01:48:35 +0000 |
commit | d2af31b916114dd7ebbc3390eb44c0d72e06ec50 (patch) | |
tree | 4d5ad4c8de742777ef4dbd7ab4bc854de21c4692 | |
parent | b9b1ec22084cfe82ced7e34412dab0351828fc53 (diff) |
LSP: Advertise snippet support
-rw-r--r-- | helix-lsp/src/client.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-lsp/src/client.rs b/helix-lsp/src/client.rs index 3f88b352..95f3ea34 100644 --- a/helix-lsp/src/client.rs +++ b/helix-lsp/src/client.rs @@ -320,7 +320,7 @@ impl Client { text_document: Some(lsp::TextDocumentClientCapabilities { completion: Some(lsp::CompletionClientCapabilities { completion_item: Some(lsp::CompletionItemCapability { - snippet_support: Some(false), + snippet_support: Some(true), resolve_support: Some(lsp::CompletionItemCapabilityResolveSupport { properties: vec![ String::from("documentation"), |