Resume sorting completions from wildcard expansions

Ought to fix the wildcard expansion test on Linux
This commit is contained in:
ridiculousfish 2016-02-22 03:37:39 -08:00
parent 35160db268
commit 6c401bc587

View file

@ -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