mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
Suport diagnostic code (#3096)
* add code for diagnostic. This PR provides a solution to resolve #2994. missing Code Actions for lsp * remote unused import
This commit is contained in:
parent
4f21f430e4
commit
42115d02bc
3 changed files with 31 additions and 3 deletions
|
@ -58,7 +58,7 @@ pub enum OffsetEncoding {
|
|||
|
||||
pub mod util {
|
||||
use super::*;
|
||||
use helix_core::{Range, Rope, Transaction};
|
||||
use helix_core::{diagnostic::NumberOrString, Range, Rope, Transaction};
|
||||
|
||||
/// Converts a diagnostic in the document to [`lsp::Diagnostic`].
|
||||
///
|
||||
|
@ -78,11 +78,19 @@ pub mod util {
|
|||
Error => lsp::DiagnosticSeverity::ERROR,
|
||||
});
|
||||
|
||||
let code = match diag.code.clone() {
|
||||
Some(x) => match x {
|
||||
NumberOrString::Number(x) => Some(lsp::NumberOrString::Number(x)),
|
||||
NumberOrString::String(x) => Some(lsp::NumberOrString::String(x)),
|
||||
},
|
||||
None => None,
|
||||
};
|
||||
|
||||
// TODO: add support for Diagnostic.data
|
||||
lsp::Diagnostic::new(
|
||||
range_to_lsp_range(doc, range, offset_encoding),
|
||||
severity,
|
||||
None,
|
||||
code,
|
||||
None,
|
||||
diag.message.to_owned(),
|
||||
None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue