diff options
author | Dmitry Sharshakov | 2021-08-14 08:27:22 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-20 04:43:54 +0000 |
commit | 43c9eba037c1a270138f7fa7b25d3107f03ec3de (patch) | |
tree | 6ca069d446f1834a6bd6293440dcde9ca0e3976e /helix-dap/src | |
parent | c5492788a23056dd82874a8524226dc20e2becc8 (diff) |
compat: remove missing caps
Only report present features now
Diffstat (limited to 'helix-dap/src')
-rw-r--r-- | helix-dap/src/client.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-dap/src/client.rs b/helix-dap/src/client.rs index a2b8a4e3..23faffd2 100644 --- a/helix-dap/src/client.rs +++ b/helix-dap/src/client.rs @@ -428,8 +428,8 @@ impl Client { supports_variable_paging: Some(false), supports_run_in_terminal_request: Some(false), supports_memory_references: Some(false), - supports_progress_reporting: Some(true), - supports_invalidated_event: Some(true), + supports_progress_reporting: Some(false), + supports_invalidated_event: Some(false), }; let response = self |