mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-03-03 21:18:30 +08:00
parent
d5f2d472d0
commit
9ae3b345c8
@ -243,7 +243,7 @@ static bool compare_completions_by_duplicate_arguments(const completion_t &a,
|
||||
}
|
||||
|
||||
static bool compare_completions_by_tilde(const completion_t &a, const completion_t &b) {
|
||||
return (a.completion.back() == L'~') < (b.completion.back() == L'~');
|
||||
return (a.completion.empty() < b.completion.empty()) || (a.completion.back() == L'~') < (b.completion.back() == L'~');
|
||||
}
|
||||
/// Unique the list of completions, without perturbing their order.
|
||||
static void unique_completions_retaining_order(std::vector<completion_t> *comps) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user