From 8d60606ba6192e8b64a432995c7d1a2053058847 Mon Sep 17 00:00:00 2001 From: Thomas Threadgold Date: Thu, 10 Apr 2025 09:08:31 +0200 Subject: [PATCH] feat: distinct inline diagnostic theme keys --- helix-term/src/ui/text_decorations/diagnostics.rs | 8 ++++---- 1 file 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 fb82bcf54..84f6c6803 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"), } }