mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Use diagnostic.severity to distinguish between error colors.
This commit is contained in:
parent
c7ccb432ef
commit
9dcfe25e4a
5 changed files with 43 additions and 6 deletions
|
@ -1,7 +1,15 @@
|
|||
use crate::Range;
|
||||
|
||||
pub enum Severity {
|
||||
Error,
|
||||
Warning,
|
||||
Info,
|
||||
Hint,
|
||||
}
|
||||
|
||||
pub struct Diagnostic {
|
||||
pub range: (usize, usize),
|
||||
pub line: usize,
|
||||
pub message: String,
|
||||
pub severity: Option<Severity>,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue