mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
stable sort diagnostics to avoid flickering
This commit is contained in:
parent
839f4d758d
commit
39b3d81abf
2 changed files with 6 additions and 9 deletions
|
@ -99,7 +99,6 @@ impl Serialize for Mode {
|
|||
serializer.collect_str(self)
|
||||
}
|
||||
}
|
||||
|
||||
/// A snapshot of the text of a document that we want to write out to disk
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct DocumentSavedEvent {
|
||||
|
@ -1321,7 +1320,7 @@ impl Document {
|
|||
true
|
||||
});
|
||||
|
||||
self.diagnostics.sort_unstable_by_key(|diagnostic| {
|
||||
self.diagnostics.sort_by_key(|diagnostic| {
|
||||
(diagnostic.range, diagnostic.severity, diagnostic.provider)
|
||||
});
|
||||
|
||||
|
@ -1911,9 +1910,8 @@ impl Document {
|
|||
});
|
||||
}
|
||||
self.diagnostics.extend(diagnostics);
|
||||
self.diagnostics.sort_unstable_by_key(|diagnostic| {
|
||||
(diagnostic.range, diagnostic.severity, diagnostic.provider)
|
||||
});
|
||||
self.diagnostics
|
||||
.sort_by_key(|diagnostic| (diagnostic.range, diagnostic.severity, diagnostic.provider));
|
||||
}
|
||||
|
||||
/// clears diagnostics for a given language server id if set, otherwise all diagnostics are cleared
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue