| 6 | |
| 7 | All the listed problems with brace expansion also remain: |
| 8 | - unpaired literal braces are misinterpreted and break the RE: \\ |
| 9 | you cannot select, say, `"{"` or `"*.{"` despite files matching the pattern being there; |
| 10 | - a text in braces w/o a comma is misinterpreted as without braces: \\ |
| 11 | trying to select "{abc}*" selects "abc"; |
| 12 | - a sequence expression is misinterpreted as literal text w/o braces: \\ |
| 13 | trying to select "{a..h}*" selects "a..h" and does not select "glob.c" or "hex.c"; |
| 14 | - nested braces now just plain do not work: \\ |
| 15 | `"{{a,b},c}*"` selects "a,c" and "b,c", but neither "abc" nor "ccc". |