diff options
author | Filip Dutescu | 2022-10-15 20:33:57 +0000 |
---|---|---|
committer | GitHub | 2022-10-15 20:33:57 +0000 |
commit | 2457111bf074d4b5c1d45f76e2c7d593ceec5895 (patch) | |
tree | eb1cb24ac55207c6f3fcd9279435481f14653bd6 /helix-view/src/handlers | |
parent | 661f48d62f9d6920f6929b5ae5a5365401459c61 (diff) |
feat(csharp,debug): add C# debugger support (#4213)
Diffstat (limited to 'helix-view/src/handlers')
-rw-r--r-- | helix-view/src/handlers/dap.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/handlers/dap.rs b/helix-view/src/handlers/dap.rs index e39584c3..2e86871b 100644 --- a/helix-view/src/handlers/dap.rs +++ b/helix-view/src/handlers/dap.rs @@ -262,7 +262,7 @@ impl Editor { log::info!("{}", output); self.set_status(format!("{} {}", prefix, output)); } - Event::Initialized => { + Event::Initialized(_) => { // send existing breakpoints for (path, breakpoints) in &mut self.breakpoints { // TODO: call futures in parallel, await all |