mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
Add pull diagnostics identifier
to LSP diagnostic provider
This includes a change to lsp-types to store the identifier as an Arc since it will be cloned for each diagnostic.
This commit is contained in:
parent
683fac65e7
commit
2cc33b5c47
3 changed files with 49 additions and 8 deletions
|
@ -740,8 +740,10 @@ impl Application {
|
|||
log::error!("Discarding publishDiagnostic notification sent by an uninitialized server: {}", language_server.name());
|
||||
return;
|
||||
}
|
||||
let provider =
|
||||
helix_core::diagnostic::DiagnosticProvider::Lsp { server_id };
|
||||
let provider = helix_core::diagnostic::DiagnosticProvider::Lsp {
|
||||
server_id,
|
||||
identifier: None,
|
||||
};
|
||||
self.editor.handle_lsp_diagnostics(
|
||||
&provider,
|
||||
uri,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue