aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/application.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r--helix-term/src/application.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 112bd334..802438bc 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -299,7 +299,9 @@ impl Application {
self.editor.set_status(status);
}
Event::Continued(events::Continued { thread_id, .. }) => {
- debugger.thread_states.remove(&thread_id);
+ debugger
+ .thread_states
+ .insert(thread_id, "running".to_owned());
if debugger.thread_id == Some(thread_id) {
resume_application(debugger)
}