aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
authorFilip Dutescu2022-10-15 20:33:57 +0000
committerGitHub2022-10-15 20:33:57 +0000
commit2457111bf074d4b5c1d45f76e2c7d593ceec5895 (patch)
treeeb1cb24ac55207c6f3fcd9279435481f14653bd6 /helix-view
parent661f48d62f9d6920f6929b5ae5a5365401459c61 (diff)
feat(csharp,debug): add C# debugger support (#4213)
Diffstat (limited to 'helix-view')
-rw-r--r--helix-view/src/handlers/dap.rs2
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