Add the machinery to load syntax config from TOML.

It's embedded into the binary at build time for now, but it's progress.
This commit is contained in:
Blaž Hrastnik 2021-03-25 15:26:25 +09:00
parent a900159a86
commit e3c4edae32
12 changed files with 86 additions and 55 deletions

View file

@ -80,6 +80,8 @@ fn parse<'a>(contents: &'a str, theme: Option<&Theme>) -> tui::text::Text<'a> {
let rope = Rope::from(text.as_ref());
let syntax = syntax::LOADER
.get()
.unwrap()
.language_config_for_scope(&format!("source.{}", language))
.and_then(|config| config.highlight_config(theme.scopes()))
.map(|config| Syntax::new(&rope, config));