aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
Diffstat (limited to 'helix-view')
-rw-r--r--helix-view/src/theme.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-view/src/theme.rs b/helix-view/src/theme.rs
index 90185937..b1c96f94 100644
--- a/helix-view/src/theme.rs
+++ b/helix-view/src/theme.rs
@@ -277,8 +277,8 @@ impl ThemePalette {
match name.as_str() {
"fg" => *style = style.fg(self.parse_color(value)?),
"bg" => *style = style.bg(self.parse_color(value)?),
- "underline_color" => *style = style.underline_color(self.parse_color(value)?),
- "underline_style" => {
+ "underline-color" => *style = style.underline_color(self.parse_color(value)?),
+ "underline-style" => {
warn!("found style");
*style = style.underline_style(Self::parse_underline_style(&value)?)
}