Open
Description
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.
- Globs are not case-insensitive (e.g.
ls a*
finds only files starting witha
, notA
) - There's no "range" globbing, like
ls [A-Z]*
a. Idea: implement globbing for number {1-9} fish-shell/fish-shell#1187 - There is no globbing even without a range, like
ls [ABC]*
The only globbing that works is with curly braces: foo{1,2,3}
.
Relevant issue: fish-shell/fish-shell#3681