From c2a40d9d5229c701fa1a6d0fb80ce4ba86e8dc0c Mon Sep 17 00:00:00 2001 From: Kirawi Date: Sun, 17 Apr 2022 23:10:51 -0400 Subject: Add support for local language configuration (#1249) * add local configuration * move config loading to Application::new * simplify find_root_impl--- helix-core/src/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'helix-core/src/config.rs') 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 { - helix_loader::user_lang_config()?.try_into() + helix_loader::config::user_lang_config()?.try_into() } -- cgit v1.2.3-70-g09d2