Skip to content

Commit

Permalink
Merge pull request #19266 from the-mikedavis/lsp-pull-diagnostics-ide…
Browse files Browse the repository at this point in the history
…ntifier

Add `identifier` to pull diagnostic LSP capabilities
  • Loading branch information
lnicola authored Mar 2, 2025
2 parents 0834d7c + c9fdc48 commit 81ff38f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rust-analyzer/src/lsp/capabilities.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ pub fn server_capabilities(config: &Config) -> ServerCapabilities {
})),
diagnostic_provider: Some(lsp_types::DiagnosticServerCapabilities::Options(
lsp_types::DiagnosticOptions {
identifier: None,
identifier: Some("rust-analyzer".to_owned()),
inter_file_dependencies: true,
// FIXME
workspace_diagnostics: false,
Expand Down

0 comments on commit 81ff38f

Please sign in to comment.