From 837b152d06f3dfb7b200d0d7bd37fa7aa842974c Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Thu, 21 Apr 2022 14:09:02 -0500 Subject: [PATCH] flip top-level table merging flag --- helix-loader/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-loader/src/config.rs b/helix-loader/src/config.rs index 242af197a0f5..a8c843612811 100644 --- a/helix-loader/src/config.rs +++ b/helix-loader/src/config.rs @@ -19,7 +19,7 @@ pub fn user_lang_config() -> Result { .into_iter() .chain([default_lang_config()].into_iter()) .fold(toml::Value::Table(toml::value::Table::default()), |a, b| { - crate::merge_toml_values(b, a, false) + crate::merge_toml_values(b, a, true) }); Ok(config)