nushell/crates/nu-command
A. Taha Baki c01f2ee0e9
str-expand: new capability, empty collection item (#9750)
I added a new capability to `bracoxide` which is for `brace expansion`
(it's almost like bash brace expressions).

Anyway, this change adds this capability:

`A{,B,C} | str expand`, returns:

```md
- A
- AB
- AC
```


`A{B,,C} | str expand`, returns:

```md
- AB
- A
- AC
```

`A{B,C,} | str expand`, returns:

```md
- AB
- AC
- A
```

Updated examples, according to the new feature.
2023-07-20 18:51:25 -05:00
..
src str-expand: new capability, empty collection item (#9750) 2023-07-20 18:51:25 -05:00
tests fix removing symlinks on windows (#9704) 2023-07-20 20:16:03 +02:00
Cargo.toml str-expand: new capability, empty collection item (#9750) 2023-07-20 18:51:25 -05:00
LICENSE Fix rest of license year ranges (#8727) 2023-04-04 09:03:29 +12:00