mirror of
https://github.com/nushell/nushell.git
synced 2025-05-09 20:44:29 +02:00
If a table contains an empty list or record in one column and both column and -e flags are used, then skip that row. `compact -e` now skips empty values in a column where as before they were ignored. Example: ```nu [["a", "b"]; ["c", "d"], ["h", []]] | compact -e b ``` before ```plain # a b ──────────────────────── 0 c d 1 h [list 0 items] ``` after ```plain # a b ─────────── 0 c d ``` |
||
---|---|---|
.. | ||
src | ||
tests | ||
Cargo.toml | ||
LICENSE | ||
README.md |
This crate contains the majority of our commands
We allow ourselves to move some of the commands in nu-command
to nu-cmd-*
crates as needed.
Internal Nushell crate
This crate implements components of Nushell and is not designed to support plugin authors or other users directly.