Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/health.rs')
-rw-r--r--helix-term/src/health.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/health.rs b/helix-term/src/health.rs
index 52112bf9..c73df787 100644
--- a/helix-term/src/health.rs
+++ b/helix-term/src/health.rs
@@ -163,7 +163,7 @@ fn languages(selection: Option<HashSet<String>>) -> std::io::Result<()> {
let stdout = std::io::stdout();
let mut stdout = stdout.lock();
- let mut syn_loader_conf = match user_lang_config() {
+ let mut syn_loader_conf = match user_lang_config(false) {
Ok(conf) => conf,
Err(err) => {
let stderr = std::io::stderr();
@@ -283,7 +283,7 @@ pub fn language(lang_str: String) -> std::io::Result<()> {
let stdout = std::io::stdout();
let mut stdout = stdout.lock();
- let syn_loader_conf = match user_lang_config() {
+ let syn_loader_conf = match user_lang_config(false) {
Ok(conf) => conf,
Err(err) => {
let stderr = std::io::stderr();