diff options
author | Dmitry Sharshakov | 2021-08-22 08:21:02 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-08-22 08:21:02 +0000 |
commit | be9dc5802a8e2d6d26d6f9c00475aedafef97c61 (patch) | |
tree | ecfc88cd8bd586e5a46ce2b8a441e8ca5c5db624 /helix-term/src | |
parent | d93cd2a2611b3305293274f8fb590a01d4b99584 (diff) |
editor: mark target as running when continued
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/application.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 6e3b6e99..9f0e751e 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -324,6 +324,13 @@ impl Application { self.editor .set_status("Debugged application started".to_owned()); } + Event::Continued(_) => { + if let Some(debugger) = self.editor.debugger.as_mut() { + debugger.stopped_thread = None; + debugger.stack_pointer = None; + debugger.is_running = true; + } + } ev => { log::warn!("Unhandled event {:?}", ev); return; // return early to skip render |