Skip to content

Commit

Permalink
flip top-level table merging flag
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis committed Apr 21, 2022
1 parent 2df735f commit 837b152
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helix-loader/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub fn user_lang_config() -> Result<toml::Value, toml::de::Error> {
.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)
Expand Down

0 comments on commit 837b152

Please sign in to comment.