consistent diagnostic sorting

This commit is contained in:
Pascal Kuthe 2023-05-20 21:29:23 +02:00 committed by Blaž Hrastnik
parent 515ef17207
commit 783ff27b1b
2 changed files with 17 additions and 5 deletions

View File

@ -907,7 +907,9 @@ macro_rules! language_server {
// Sort diagnostics first by severity and then by line numbers.
// Note: The `lsp::DiagnosticSeverity` enum is already defined in decreasing order
diagnostics.sort_unstable_by_key(|(d, _)| (d.severity, d.range.start));
diagnostics.sort_unstable_by_key(|(d, server_id)| {
(d.severity, d.range.start, *server_id)
});
}
Notification::ShowMessage(params) => {
log::warn!("unhandled window/showMessage: {:?}", params);

View File

@ -1240,8 +1240,13 @@ fn apply_impl(
true
});
self.diagnostics
.sort_unstable_by_key(|diagnostic| diagnostic.range);
self.diagnostics.sort_unstable_by_key(|diagnostic| {
(
diagnostic.range,
diagnostic.severity,
diagnostic.language_server_id,
)
});
// Update the inlay hint annotations' positions, helping ensure they are displayed in the proper place
let apply_inlay_hint_changes = |annotations: &mut Rc<[InlineAnnotation]>| {
@ -1738,8 +1743,13 @@ pub fn replace_diagnostics(
});
}
self.diagnostics.extend(diagnostics);
self.diagnostics
.sort_unstable_by_key(|diagnostic| diagnostic.range);
self.diagnostics.sort_unstable_by_key(|diagnostic| {
(
diagnostic.range,
diagnostic.severity,
diagnostic.language_server_id,
)
});
}
pub fn clear_diagnostics(&mut self, language_server_id: usize) {