diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index b0c5e43a2..7359416dd 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -462,12 +462,11 @@ impl Syntax { let mut queue = VecDeque::new(); queue.push_back(self.root); + let scopes = self.loader.scopes.load(); let injection_callback = |language: &str| { self.loader .language_configuration_for_injection_string(language) - .and_then(|language_config| { - language_config.highlight_config(&self.loader.scopes.load()) - }) + .and_then(|language_config| language_config.highlight_config(&scopes)) }; // Convert the changeset into tree sitter edits.