mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
feat(lsp): add support for lsp Diagnostic{}.data (#4935)
This commit is contained in:
parent
8291654326
commit
4960c41f18
3 changed files with 11 additions and 8 deletions
|
@ -102,16 +102,17 @@ pub mod util {
|
|||
None
|
||||
};
|
||||
|
||||
// TODO: add support for Diagnostic.data
|
||||
lsp::Diagnostic::new(
|
||||
range_to_lsp_range(doc, range, offset_encoding),
|
||||
lsp::Diagnostic {
|
||||
range: range_to_lsp_range(doc, range, offset_encoding),
|
||||
severity,
|
||||
code,
|
||||
diag.source.clone(),
|
||||
diag.message.to_owned(),
|
||||
None,
|
||||
source: diag.source.clone(),
|
||||
message: diag.message.to_owned(),
|
||||
related_information: None,
|
||||
tags,
|
||||
)
|
||||
data: diag.data.to_owned(),
|
||||
..Default::default()
|
||||
}
|
||||
}
|
||||
|
||||
/// Converts [`lsp::Position`] to a position in the document.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue