diff options
author | Blaž Hrastnik | 2021-03-11 07:31:49 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-11 07:31:49 +0000 |
commit | 9dcfe25e4a1868a4936194faf1d753d91d85430a (patch) | |
tree | c74f469e83b848c10545819c0fdc511f26457993 /helix-core/src/diagnostic.rs | |
parent | c7ccb432ef174e2eeadafe19dfb8b7c978062dc8 (diff) |
Use diagnostic.severity to distinguish between error colors.
Diffstat (limited to 'helix-core/src/diagnostic.rs')
-rw-r--r-- | helix-core/src/diagnostic.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/helix-core/src/diagnostic.rs b/helix-core/src/diagnostic.rs index 96ed6746..c1a3b4c1 100644 --- a/helix-core/src/diagnostic.rs +++ b/helix-core/src/diagnostic.rs @@ -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>, } |