Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/ui/text_decorations/diagnostics.rs')
-rw-r--r--helix-term/src/ui/text_decorations/diagnostics.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/helix-term/src/ui/text_decorations/diagnostics.rs b/helix-term/src/ui/text_decorations/diagnostics.rs
index fb82bcf5..84f6c680 100644
--- a/helix-term/src/ui/text_decorations/diagnostics.rs
+++ b/helix-term/src/ui/text_decorations/diagnostics.rs
@@ -26,10 +26,10 @@ struct Styles {
impl Styles {
fn new(theme: &Theme) -> Styles {
Styles {
- hint: theme.get("hint"),
- info: theme.get("info"),
- warning: theme.get("warning"),
- error: theme.get("error"),
+ hint: theme.get("hint.diagnostic.inline"),
+ info: theme.get("info.diagnostic.inline"),
+ warning: theme.get("warning.diagnostic.inline"),
+ error: theme.get("error.diagnostic.inline"),
}
}