From fcddd50325383bce84252d8fb924b7ccf0407453 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Tue, 25 Feb 2025 10:09:50 -0500 Subject: [PATCH] Set theme before opening documents This is not consequential now but when we switch to the new highlighter we will want the theme to be set (and the loader's `scopes` to be set based on the theme) before parsing a document. Previously `set_theme` came after the loading of documents, so documents would be missing locals highlights after being loaded and before the first edit. --- helix-term/src/application.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 2a4bea655..499732f00 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -139,6 +139,7 @@ impl Application { })), handlers, ); + editor.set_theme(theme); let keys = Box::new(Map::new(Arc::clone(&config), |config: &Config| { &config.keys @@ -237,8 +238,6 @@ impl Application { .unwrap_or_else(|_| editor.new_file(Action::VerticalSplit)); } - editor.set_theme(theme); - #[cfg(windows)] let signals = futures_util::stream::empty(); #[cfg(not(windows))]