mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
Improve error handling for config-reload (#3668)
* Don't change config to default when refreshing invalid config * Propely handle theme errors with config-reload * Extract refresh theme into seperate function
This commit is contained in:
parent
75e6a64327
commit
9c627c65e5
@ -366,29 +366,39 @@ pub fn handle_config_events(&mut self, config_event: ConfigEvent) {
|
||||
self.editor.refresh_config();
|
||||
}
|
||||
|
||||
fn refresh_config(&mut self) {
|
||||
let config = Config::load_default().unwrap_or_else(|err| {
|
||||
self.editor.set_error(err.to_string());
|
||||
Config::default()
|
||||
});
|
||||
|
||||
// Refresh theme
|
||||
/// Refresh theme after config change
|
||||
fn refresh_theme(&mut self, config: &Config) {
|
||||
if let Some(theme) = config.theme.clone() {
|
||||
let true_color = self.true_color();
|
||||
self.editor.set_theme(
|
||||
self.theme_loader
|
||||
.load(&theme)
|
||||
.map_err(|e| {
|
||||
log::warn!("failed to load theme `{}` - {}", theme, e);
|
||||
e
|
||||
})
|
||||
.ok()
|
||||
.filter(|theme| (true_color || theme.is_16_color()))
|
||||
.unwrap_or_else(|| self.theme_loader.default_theme(true_color)),
|
||||
);
|
||||
match self.theme_loader.load(&theme) {
|
||||
Ok(theme) => {
|
||||
if true_color || theme.is_16_color() {
|
||||
self.editor.set_theme(theme);
|
||||
} else {
|
||||
self.editor
|
||||
.set_error("theme requires truecolor support, which is not available");
|
||||
}
|
||||
}
|
||||
Err(err) => {
|
||||
let err_string = format!("failed to load theme `{}` - {}", theme, err);
|
||||
self.editor.set_error(err_string);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
self.config.store(Arc::new(config));
|
||||
fn refresh_config(&mut self) {
|
||||
match Config::load_default() {
|
||||
Ok(config) => {
|
||||
self.refresh_theme(&config);
|
||||
|
||||
// Store new config
|
||||
self.config.store(Arc::new(config));
|
||||
}
|
||||
Err(err) => {
|
||||
self.editor.set_error(err.to_string());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn true_color(&self) -> bool {
|
||||
|
Loading…
Reference in New Issue
Block a user