Unnamed repository; edit this file 'description' to name the repository.
force update of stack trace when stopped
Dmitry Sharshakov 2021-09-03
parent 2c89107 · commit 9c64650
-rw-r--r--helix-term/src/application.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 9e22e52b..e64389ed 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -287,10 +287,10 @@ impl Application {
main.map(|t| t.id)
});
if let Some(id) = main {
- select_thread_id(&mut self.editor, id, false).await;
+ select_thread_id(&mut self.editor, id, true).await;
}
} else {
- select_thread_id(&mut self.editor, thread_id.unwrap(), false).await;
+ select_thread_id(&mut self.editor, thread_id.unwrap(), true).await;
}
let scope = match thread_id {