diff options
author | Pascal Kuthe | 2022-10-06 18:50:54 +0000 |
---|---|---|
committer | Pascal Kuthe | 2022-10-06 18:50:54 +0000 |
commit | 7bc324fde986fab2ded2ad29d7b5244521eddc44 (patch) | |
tree | 46e977856d00f3c8fc172269bdf642c8ade059a5 /helix-view | |
parent | 114610f7dc5d6395ef5cce9111a363f7c8d879a4 (diff) |
make casing consistent with other configuration
Diffstat (limited to 'helix-view')
-rw-r--r-- | helix-view/src/theme.rs | 4 |
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)?) } |