0e7d757869
* feat(lsp): configurable diagnostic severity Allow severity of diagnostic messages to be configured. E.g. allow turning of Hint level diagnostics. Fixes: https://github.com/helix-editor/helix/issues/1007 * Use language_config() method * Add documentation for diagnostic_severity * Use unreachable for unknown severity level * fix: documentation for diagnostic_severity config
33 lines
794 B
Rust
33 lines
794 B
Rust
//! LSP diagnostic utility types.
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
/// Describes the severity level of a [`Diagnostic`].
|
|
#[derive(Debug, Clone, Copy, Eq, PartialEq, PartialOrd, Ord, Deserialize, Serialize)]
|
|
pub enum Severity {
|
|
Hint,
|
|
Info,
|
|
Warning,
|
|
Error,
|
|
}
|
|
|
|
impl Default for Severity {
|
|
fn default() -> Self {
|
|
Self::Hint
|
|
}
|
|
}
|
|
|
|
/// A range of `char`s within the text.
|
|
#[derive(Debug, Clone, Copy, PartialOrd, Ord, PartialEq, Eq)]
|
|
pub struct Range {
|
|
pub start: usize,
|
|
pub end: usize,
|
|
}
|
|
|
|
/// Corresponds to [`lsp_types::Diagnostic`](https://docs.rs/lsp-types/0.91.0/lsp_types/struct.Diagnostic.html)
|
|
#[derive(Debug, Clone)]
|
|
pub struct Diagnostic {
|
|
pub range: Range,
|
|
pub line: usize,
|
|
pub message: String,
|
|
pub severity: Option<Severity>,
|
|
}
|