Sort results of Find References

This commit is contained in:
Tad Hardesty 2019-06-23 19:04:02 -07:00
parent 8cc091e6c0
commit df654bda95

View file

@ -52,6 +52,11 @@ impl ReferencesTable {
}
});
// Sublime Text client does not sort these itself, so sort them here.
for value in tab.uses.values_mut() {
value.sort();
}
tab
}