mirror of https://github.com/helix-editor/helix
feat: distinct inline diagnostic theme keys
parent
8b952bb1d5
commit
8d60606ba6
|
@ -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"),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue