From 66c035fa995e7061b35a48e87c3698c6f2ad72ff Mon Sep 17 00:00:00 2001
From: Dmitry Sharshakov <d3dx12.xx@gmail.com>
Date: Sat, 21 Aug 2021 20:42:13 +0300
Subject: [PATCH] Continue command

---
 helix-term/src/commands.rs | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index de1b9890..dc8d02ac 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -306,6 +306,7 @@ impl Command {
         dap_toggle_breakpoint, "Toggle breakpoint",
         dap_start, "Start debug session",
         dap_run, "Begin program execution",
+        dap_continue, "Continue program execution",
         dap_terminate, "End debug session",
         suspend, "Suspend"
     );
@@ -4323,6 +4324,17 @@ fn dap_run(cx: &mut Context) {
     }
 }
 
+fn dap_continue(cx: &mut Context) {
+    use helix_lsp::block_on;
+
+    if let Some(debugger) = &mut cx.editor.debugger {
+        // assume 0 to continue all threads for now
+        // FIXME: spec conformant behavior here
+        let request = debugger.continue_thread(0);
+        let _ = block_on(request).unwrap();
+    }
+}
+
 fn dap_terminate(cx: &mut Context) {
     use helix_lsp::block_on;