feat: distinct inline diagnostic theme keys

pull/13318/head
Thomas Threadgold 2025-04-10 09:08:31 +02:00
parent 8b952bb1d5
commit 8d60606ba6
No known key found for this signature in database
1 changed files with 4 additions and 4 deletions

View File

@ -26,10 +26,10 @@ struct Styles {
impl Styles { impl Styles {
fn new(theme: &Theme) -> Styles { fn new(theme: &Theme) -> Styles {
Styles { Styles {
hint: theme.get("hint"), hint: theme.get("hint.diagnostic.inline"),
info: theme.get("info"), info: theme.get("info.diagnostic.inline"),
warning: theme.get("warning"), warning: theme.get("warning.diagnostic.inline"),
error: theme.get("error"), error: theme.get("error.diagnostic.inline"),
} }
} }