mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-20 14:11:14 -03:00
This command cd $(mktemp -d) mkdir a "a b" complete -C": " prints a b/ a/ which is wrong ordering. Usually the trailing slash should not be compared. Fix this by always sorting slashes first. Not sure if this is correct for middle slashes but I couldn't find a case where it matters. Closes #12695