Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions blog/2026-01-17-nushell_v0_110_0.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ Examples:

## Faster `ls` on Windows [[toc](#table-of-contents)]

[#17339](https://github.com/nushell/nushell/pull/17339) makes `ls` much faster on Windows.
[#17339](https://github.com/nushell/nushell/pull/17339) makes `ls` much faster on Windows by caching and not calling `metadata()` so frequently.

Before:

Expand Down Expand Up @@ -695,7 +695,6 @@ Previously, `bar` would be available to use even after `overlay hide spam`. This
- `glob` no longer canonicalizes paths internally ([#17312](https://github.com/nushell/nushell/pull/17312))
- Fixed the issue where "Duplicate Pane" in Windows Terminal failed when the current path contained Chinese characters by removing unnecessary URL-encoding in OSC 9;9 sequences. ([#17311](https://github.com/nushell/nushell/pull/17311))
- Enable `detect columns` to be more robust, specifically for handling the output of tablelike structures that are created with ascii or unicode table characters like we use in nushell today. Many tools are starting to use this columnar data output so hopefully this will enable nushell to be able to parse this data better. ([#17317](https://github.com/nushell/nushell/pull/17317))
- General speed up increase in the `ls` command by caching and not calling `metadata()` so frequently. ([#17339](https://github.com/nushell/nushell/pull/17339))
- `input -s` will append newline when user finishes typing. ([#17298](https://github.com/nushell/nushell/pull/17298))
- `std/help`: Add colors, proper examples, fix output ([#17010](https://github.com/nushell/nushell/pull/17010))
- `table -i false` no longer panic when there is an index column, e.g: `[{index: 0, data: yes}] | table -i false` ([#17126](https://github.com/nushell/nushell/pull/17126))
Expand Down