diff options
author | Dmitry Sharshakov | 2021-08-22 08:16:11 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-08-22 08:16:11 +0000 |
commit | d93cd2a2611b3305293274f8fb590a01d4b99584 (patch) | |
tree | 968f5649ee3e171b18ff0245207ce059316cc8a7 /helix-term/src/application.rs | |
parent | dfc70a12f337df57e69e3613896663c2f446df8e (diff) |
editor: support stepIn, stepOut, next and pause commands
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r-- | helix-term/src/application.rs | 1 |
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 { |