Open gabebw opened 2 years ago
I'm listing them here as they come up just in case I want to switch back. Or perhaps these are already fixed, and I just don't know Fish well enough yet.
ls a*
a
A
ls [A-Z]*
ls [ABC]*
The only globbing that works is with curly braces: foo{1,2,3}.
foo{1,2,3}
Relevant issue: https://github.com/fish-shell/fish-shell/issues/3681
I'm listing them here as they come up just in case I want to switch back. Or perhaps these are already fixed, and I just don't know Fish well enough yet.
ls a*
finds only files starting witha
, notA
)ls [A-Z]*
a. https://github.com/fish-shell/fish-shell/issues/1187ls [ABC]*
The only globbing that works is with curly braces:
foo{1,2,3}
.Relevant issue: https://github.com/fish-shell/fish-shell/issues/3681