diff options
author | Matthias Deiml | 2022-11-09 09:17:09 +0000 |
---|---|---|
committer | GitHub | 2022-11-09 09:17:09 +0000 |
commit | dee5b2a983f6a334753be48730868e8dd651b505 (patch) | |
tree | 3fe0e73147ccef4e4fc5703686646da6bf7dfb0e /helix-lsp | |
parent | 3e84434c695379dd2b56415c5cec46990488d007 (diff) |
Add LSP workspace command picker (#3140)
* Add workspace command picker
* Make command typable
* Add optional argument to lsp-workspace-command
Diffstat (limited to 'helix-lsp')
-rw-r--r-- | helix-lsp/src/client.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/helix-lsp/src/client.rs b/helix-lsp/src/client.rs index 81b7d8ad..50c4b87f 100644 --- a/helix-lsp/src/client.rs +++ b/helix-lsp/src/client.rs @@ -298,6 +298,9 @@ impl Client { dynamic_registration: Some(false), ..Default::default() }), + execute_command: Some(lsp::DynamicRegistrationClientCapabilities { + dynamic_registration: Some(false), + }), ..Default::default() }), text_document: Some(lsp::TextDocumentClientCapabilities { |