syntax: Properly handle injection-regex for language injections

This commit is contained in:
Blaž Hrastnik 2021-09-16 15:47:51 +09:00
parent ef532e0c0d
commit dd0b15e1f1
3 changed files with 37 additions and 4 deletions

View file

@ -88,7 +88,7 @@ fn parse<'a>(
if let Some(theme) = theme {
let rope = Rope::from(text.as_ref());
let syntax = loader
.language_config_for_scope(&format!("source.{}", language))
.language_configuration_for_injection_string(language)
.and_then(|config| config.highlight_config(theme.scopes()))
.map(|config| Syntax::new(&rope, config));