mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
Support LSP diagnostic tags (#9780)
This commit is contained in:
parent
1d6db30acf
commit
5ca6a448e9
4 changed files with 24 additions and 1 deletions
|
@ -631,6 +631,12 @@ impl Client {
|
|||
}),
|
||||
publish_diagnostics: Some(lsp::PublishDiagnosticsClientCapabilities {
|
||||
version_support: Some(true),
|
||||
tag_support: Some(lsp::TagSupport {
|
||||
value_set: vec![
|
||||
lsp::DiagnosticTag::UNNECESSARY,
|
||||
lsp::DiagnosticTag::DEPRECATED,
|
||||
],
|
||||
}),
|
||||
..Default::default()
|
||||
}),
|
||||
inlay_hint: Some(lsp::InlayHintClientCapabilities {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue