Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-core/src/config.rs')
| -rw-r--r-- | helix-core/src/config.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/helix-core/src/config.rs b/helix-core/src/config.rs deleted file mode 100644 index 2076fc22..00000000 --- a/helix-core/src/config.rs +++ /dev/null @@ -1,10 +0,0 @@ -/// 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() -} |