parent
301065fe4d
commit
c107f4ea49
1 changed files with 7 additions and 9 deletions
|
@ -665,15 +665,13 @@ impl EditorView {
|
|||
|
||||
let mut lines = Vec::new();
|
||||
for diagnostic in diagnostics {
|
||||
let text = Text::styled(
|
||||
&diagnostic.message,
|
||||
match diagnostic.severity {
|
||||
let style = Style::reset().patch(match diagnostic.severity {
|
||||
Some(Severity::Error) => error,
|
||||
Some(Severity::Warning) | None => warning,
|
||||
Some(Severity::Info) => info,
|
||||
Some(Severity::Hint) => hint,
|
||||
},
|
||||
);
|
||||
});
|
||||
let text = Text::styled(&diagnostic.message, style);
|
||||
lines.extend(text.lines);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue