diff options
author | Blaž Hrastnik | 2021-06-11 04:30:21 +0000 |
---|---|---|
committer | GitHub | 2021-06-11 04:30:21 +0000 |
commit | a8a5bcd13d5c78b1613ad4ea47f8948a5ce4b8ce (patch) | |
tree | 20a6cfc87c9888ec87b3a6285fa300c59fd100d2 | |
parent | 098806ce2ab78155e102067c170fec42cd552e4a (diff) |
Temporarily disable workDone
Blows up on gopls because we don't handle receiving window/workDoneProgress/create method calls
-rw-r--r-- | helix-lsp/src/client.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/helix-lsp/src/client.rs b/helix-lsp/src/client.rs index fde9b018..070f90d1 100644 --- a/helix-lsp/src/client.rs +++ b/helix-lsp/src/client.rs @@ -229,7 +229,8 @@ impl Client { ..Default::default() }), window: Some(lsp::WindowClientCapabilities { - work_done_progress: Some(true), + // TODO: temporarily disabled until we implement handling for window/workDoneProgress/create + // work_done_progress: Some(true), ..Default::default() }), ..Default::default() |