1
0
mirror of https://github.com/nushell/nushell.git synced 2025-04-03 22:20:48 +02:00
nushell/crates/nu-command
A. Taha Baki c01f2ee0e9
str-expand: new capability, empty collection item ()
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 () 2023-07-20 18:51:25 -05:00
tests fix removing symlinks on windows () 2023-07-20 20:16:03 +02:00
Cargo.toml str-expand: new capability, empty collection item () 2023-07-20 18:51:25 -05:00
LICENSE Fix rest of license year ranges () 2023-04-04 09:03:29 +12:00