Skip to content

Commit

Permalink
consistent diagnostic sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalkuthe committed Jul 2, 2023
1 parent b3145f9 commit ba17c69
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
4 changes: 3 additions & 1 deletion helix-term/src/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,9 @@ impl Application {

// 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);
Expand Down
17 changes: 15 additions & 2 deletions helix-view/src/document.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1203,6 +1203,14 @@ impl Document {

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]>| {
Expand Down Expand Up @@ -1699,8 +1707,13 @@ impl Document {
});
}
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) {
Expand Down

0 comments on commit ba17c69

Please sign in to comment.