Unnamed repository; edit this file 'description' to name the repository.
Temporarily disable workDone
Blows up on gopls because we don't handle receiving window/workDoneProgress/create method calls
Blaž Hrastnik 2021-06-11
parent 098806c · commit a8a5bcd
-rw-r--r--helix-lsp/src/client.rs3
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()