Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r--helix-term/src/application.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index afcb1a10..bd6ac758 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -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,