Fixed recursive brace expansion

https://github.com/fish-shell/fish-shell/issues/399
This commit is contained in:
ridiculousfish
2012-11-20 13:52:53 -08:00
parent 87510ac77d
commit e9d216bc84
3 changed files with 29 additions and 22 deletions

View File

@@ -10,6 +10,11 @@ for i in 1 2 #Comment on same line as command
end;
end
# Bracket expansion
echo x-{1}
echo x-{1,2}
echo foo-{1,2{3,4}}
# Simple alias tests
function foo

View File

@@ -2,6 +2,9 @@
1b
2a
2b
x-1
x-1 x-2
foo-1 foo-23 foo-24
Test 2 pass
Test pass
Test 3 pass