aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src/editor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-view/src/editor.rs')
-rw-r--r--helix-view/src/editor.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs
index 4f01cce4..c80535ed 100644
--- a/helix-view/src/editor.rs
+++ b/helix-view/src/editor.rs
@@ -97,16 +97,17 @@ impl Editor {
self._refresh();
}
- pub fn set_theme_from_name(&mut self, theme: &str) {
+ pub fn set_theme_from_name(&mut self, theme: &str) -> anyhow::Result<()> {
let theme = match self.theme_loader.load(theme.as_ref()) {
Ok(theme) => theme,
Err(e) => {
log::warn!("failed setting theme `{}` - {}", theme, e);
- return;
+ anyhow::bail!("failed setting theme `{}` - {}", theme, e);
}
};
self.set_theme(theme);
+ Ok(())
}
fn _refresh(&mut self) {