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:
Michael Davis 2025-03-21 10:05:50 -04:00
parent 683fac65e7
commit 2cc33b5c47
No known key found for this signature in database
3 changed files with 49 additions and 8 deletions

View file

@ -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,