You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 with a, not A)
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. Idea: implement globbing for number {1-9} fish-shell/fish-shell#1187
ls [ABC]*
The only globbing that works is with curly braces:
foo{1,2,3}
.Relevant issue: fish-shell/fish-shell#3681
The text was updated successfully, but these errors were encountered: