aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/application.rs
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-08-22 08:16:11 +0000
committerDmitry Sharshakov2021-08-22 08:16:11 +0000
commitd93cd2a2611b3305293274f8fb590a01d4b99584 (patch)
tree968f5649ee3e171b18ff0245207ce059316cc8a7 /helix-term/src/application.rs
parentdfc70a12f337df57e69e3613896663c2f446df8e (diff)
editor: support stepIn, stepOut, next and pause commands
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r--helix-term/src/application.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 0f0a9ae5..6e3b6e99 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -276,6 +276,7 @@ impl Application {
if let Some(main) = main {
let (bt, _) = debugger.stack_trace(main.id).await.unwrap();
debugger.stack_pointer = bt.get(0).cloned();
+ debugger.stopped_thread = Some(main.id);
}
let scope = match thread_id {