mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Track source and tags in diagnostics (#3898)
This commit is contained in:
parent
130793dfd0
commit
64b0745413
3 changed files with 45 additions and 4 deletions
|
@ -29,6 +29,12 @@ pub enum NumberOrString {
|
|||
String(String),
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub enum DiagnosticTag {
|
||||
Unnecessary,
|
||||
Deprecated,
|
||||
}
|
||||
|
||||
/// Corresponds to [`lsp_types::Diagnostic`](https://docs.rs/lsp-types/0.91.0/lsp_types/struct.Diagnostic.html)
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct Diagnostic {
|
||||
|
@ -37,4 +43,6 @@ pub struct Diagnostic {
|
|||
pub message: String,
|
||||
pub severity: Option<Severity>,
|
||||
pub code: Option<NumberOrString>,
|
||||
pub tags: Option<Vec<DiagnosticTag>>,
|
||||
pub source: Option<String>,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue