aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 9e34df54..36b85508 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -4344,6 +4344,7 @@ fn dap_continue(cx: &mut Context) {
let request = debugger.continue_thread(0);
let _ = block_on(request).unwrap();
debugger.is_running = true;
+ debugger.stack_pointer = None;
}
}