Skip to content

Commit 6e2ccd8

Browse files
committed
spacing issues
1 parent 572fe02 commit 6e2ccd8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

blog/2025-07-22-nushell_0_106_0.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,13 @@ This allows us try out, as the name suggests, experimental changes from drastic
135135
If you want to opt in and try them out yourself, you can enable them in the following ways:
136136

137137
- By setting the `NU_EXPERIMENTAL_OPTIONS` variable to a comma separated list of option names **before** running `nu`.
138+
138139
```sh
139140
NU_EXPERIMENTAL_OPTIONS="reorder-cell-paths,.." nu
140141
```
142+
141143
This environment variable is **not** respected when running scripts to avoid breaking independent executable scripts.
144+
142145
- By starting `nu` with the `--experimental-options` flag, passing in a list of option names.
143146
```nushell
144147
nu --experimental-options=[reorder-cell-paths,..]
@@ -252,7 +255,7 @@ $val.foo.0
252255
- Thanks to [@JohnSwiftC], the `parse` command now allows you to specify a backtrack limit for the regex engine in [#16000]. This can help out for complicated regexes, where the default backtricking limit isn't large enough.
253256
- Thanks to [@kumarUjjawal], the `drop nth` command now supports spreading its arguments. This allows you to spread a list of indices directly into `drop nth` ([#15897]). Here's a (contrived) example:
254257
```nushell
255-
ls | drop nth ...[1 2 3]
258+
ls | drop nth ...[1 2 3]
256259
```
257260
- There are some improvements to the `find` command, thanks to [@new-years-eve]:
258261
- Text in nested structures will now be properly highlighted. ([#15850])

0 commit comments

Comments
 (0)