diff options
Diffstat (limited to 'helix-core/src/config.rs')
-rw-r--r-- | helix-core/src/config.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-core/src/config.rs b/helix-core/src/config.rs index f399850e..2076fc22 100644 --- a/helix-core/src/config.rs +++ b/helix-core/src/config.rs @@ -1,10 +1,10 @@ /// Syntax configuration loader based on built-in languages.toml. pub fn default_syntax_loader() -> crate::syntax::Configuration { - helix_loader::default_lang_config() + 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::user_lang_config()?.try_into() + helix_loader::config::user_lang_config()?.try_into() } |