Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-loader/src/grammar.rs')
| -rw-r--r-- | helix-loader/src/grammar.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-loader/src/grammar.rs b/helix-loader/src/grammar.rs index ca2e8ca3..3574e589 100644 --- a/helix-loader/src/grammar.rs +++ b/helix-loader/src/grammar.rs @@ -195,7 +195,7 @@ pub fn build_grammars(target: Option<String>) -> Result<()> { // merged. The `grammar_selection` key of the config is then used to filter // down all grammars into a subset of the user's choosing. fn get_grammar_configs() -> Result<Vec<GrammarConfiguration>> { - let config: Configuration = crate::config::user_lang_config() + let config: Configuration = crate::config::user_lang_config(false) .context("Could not parse languages.toml")? .try_into()?; @@ -217,7 +217,7 @@ fn get_grammar_configs() -> Result<Vec<GrammarConfiguration>> { } pub fn get_grammar_names() -> Result<Option<HashSet<String>>> { - let config: Configuration = crate::config::user_lang_config() + let config: Configuration = crate::config::user_lang_config(false) .context("Could not parse languages.toml")? .try_into()?; |