aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src
diff options
context:
space:
mode:
authorPascal Kuthe2022-10-06 18:50:54 +0000
committerPascal Kuthe2022-10-06 18:50:54 +0000
commit7bc324fde986fab2ded2ad29d7b5244521eddc44 (patch)
tree46e977856d00f3c8fc172269bdf642c8ade059a5 /helix-view/src
parent114610f7dc5d6395ef5cce9111a363f7c8d879a4 (diff)
make casing consistent with other configuration
Diffstat (limited to 'helix-view/src')
-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)?)
}