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 {