Skip to content

Commit 36e60c5

Browse files
committed
handled some todos
1 parent fbb443d commit 36e60c5

File tree

1 file changed

+26
-15
lines changed

1 file changed

+26
-15
lines changed

blog/2025-09-02-nushell_0_107_0.md

Lines changed: 26 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ The `find` command is now case-sensitive by default in all modes. Previously, yo
5252

5353
This change makes the different modes of `find` more consistent. It also makes `find` more consistent with other parts of Nushell, such as `where`'s `=~` operator and the recent [case-sensitive cell-paths change](https://www.nushell.sh/blog/2025-06-10-nushell_0_105_0.html#case-sensitive-cell-paths-or-not-toc).
5454

55-
> TODO(release-notes): make sure this callout renders correctly on the blog
55+
::: tip
56+
If you want `find` to still be case-insensitive after this release, which might be desirable for interactive usage, you can add an alias to your config:
5657

57-
> [!TIP]
58-
> If you want `find` to still be case-insensitive after this release, which might be desirable for interactive usage, you can add an alias to your config:
59-
>
60-
> ```nu
61-
> alias find = find -i
62-
> ```
58+
```nu
59+
alias find = find -i
60+
```
61+
62+
:::
6363

6464
### New behavior for `find --multiline`
6565

@@ -201,12 +201,10 @@ Now, `format bits` always formats in big endian:
201201

202202
`overlay list` now returns table instead of list of overlays. Before, only active overlays were included in `overlay list`. Now, hidden overlays will be included as well, and there is a column indicating whether a given overlay is hidden or not.
203203

204-
> TODO(release-notes): make sure this call out is formatted correctly for the blog
205-
206-
> [!TIP]
207-
> The ordering of `overlay list` is still preserved. If you run `overlay list | last`, you will still get the most recently activated overlay.
208-
>
209-
> For migrating to the new behavior, you can update any usages of `overlay list | last` to `overlay list | last | get name`.
204+
::: tip
205+
The ordering of `overlay list` is still preserved. If you run `overlay list | last`, you will still get the most recently activated overlay.
206+
For migrating to the new behavior, you can update any usages of `overlay list | last` to `overlay list | last | get name`.
207+
:::
210208

211209
## Additions
212210

@@ -225,6 +223,9 @@ With the new [watch --debounce option](#new-watch-duration-option-toc), the `--d
225223

226224
`nu --testbin` has a new flag `-h` to show available \<bins\>
227225

226+
<details>
227+
<p>
228+
228229
```
229230
> nu --testbin -h
230231
Usage: nu --testbin <bin>
@@ -247,6 +248,9 @@ repeat_bytes -> A version of repeater that can output binary data, even null byt
247248
repeater -> Repeat a string or char N times(e.g: nu --testbin repeater a 5)
248249
```
249250

251+
</p>
252+
</details>
253+
250254
### New keybinding: `vichangemode`
251255

252256
You can now set bindings which change the Vi mode.
@@ -267,7 +271,7 @@ The available modifiers and keycodes, remain limited to single character binding
267271

268272
### JSON column support for `stor` and `query db`
269273

270-
The 'stor create/insert/open' and 'query db' commands now support JSON and JSONB columns. This lets you store more kinds of structured data directly inside of an SQLite database without an explicit `to`/`from` step.
274+
The `stor create/insert/open` and `query db` commands now support JSON and JSONB columns. This lets you store more kinds of structured data directly inside of an SQLite database without an explicit `to`/`from` step.
271275

272276
Here's an example of storing a simple table inside a `stor` database, and retrieving it as structured data with `query db`:
273277

@@ -559,7 +563,14 @@ Here's a before/after comparison:
559563

560564
`help` command used to trim the outputs of examples, which could result in inconsistent white space:
561565

562-
> Following snippets are generated with this config `$env.config.table = {mode: light, padding: {left: 1}, header_on_separator: false}`
566+
::: info
567+
Following snippets are generated with this config:
568+
569+
```nu
570+
$env.config.table = {mode: light, padding: {left: 1}, header_on_separator: false}
571+
```
572+
573+
:::
563574

564575
Before:
565576

0 commit comments

Comments
 (0)