mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Resume sorting completions from wildcard expansions
Ought to fix the wildcard expansion test on Linux
This commit is contained in:
parent
35160db268
commit
6c401bc587
1 changed files with 1 additions and 0 deletions
|
@ -1852,6 +1852,7 @@ static expand_error_t expand_stage_wildcards(const wcstring &input, std::vector<
|
|||
}
|
||||
}
|
||||
|
||||
std::sort(expanded.begin(), expanded.end(), completion_t::is_naturally_less_than);
|
||||
out->insert(out->end(), expanded.begin(), expanded.end());
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue