mirror of https://github.com/helix-editor/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
483 B
Rust
11 lines
483 B
Rust
/// Syntax configuration loader based on built-in languages.toml.
|
|
pub fn default_syntax_loader() -> crate::syntax::Configuration {
|
|
helix_loader::config::default_lang_config()
|
|
.try_into()
|
|
.expect("Could not serialize built-in languages.toml")
|
|
}
|
|
/// Syntax configuration loader based on user configured languages.toml.
|
|
pub fn user_syntax_loader() -> Result<crate::syntax::Configuration, toml::de::Error> {
|
|
helix_loader::config::user_lang_config()?.try_into()
|
|
}
|