mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Document more of helix-core (#904)
This commit is contained in:
parent
acc5ac5e73
commit
92c2d5d3bf
6 changed files with 81 additions and 41 deletions
|
@ -1,3 +1,6 @@
|
|||
//! LSP diagnostic utility types.
|
||||
|
||||
/// Describes the severity level of a [`Diagnostic`].
|
||||
#[derive(Debug, Eq, PartialEq)]
|
||||
pub enum Severity {
|
||||
Error,
|
||||
|
@ -6,12 +9,14 @@ pub enum Severity {
|
|||
Hint,
|
||||
}
|
||||
|
||||
/// A range of `char`s within the text.
|
||||
#[derive(Debug)]
|
||||
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)]
|
||||
pub struct Diagnostic {
|
||||
pub range: Range,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue