We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d7d00c commit e477fb2Copy full SHA for e477fb2
helix-term/src/config.rs
@@ -90,7 +90,9 @@ impl Config {
90
}
91
92
let editor = match (global.editor, local.editor) {
93
- // (None, Some(_)) because the default is not loading local configuration
+ (None, Some(val)) if use_local => {
94
+ val.try_into().map_err(ConfigLoadError::BadConfig)?
95
+ }
96
(None, None) | (None, Some(_)) => helix_view::editor::Config::default(),
97
98
(Some(val), None) => val.try_into().map_err(ConfigLoadError::BadConfig)?,
0 commit comments