nushell/crates
Antoine Büsch 9fa2b77611
Allow specifying a cellpath in input list to get the value to display (#11748)
# Description
When using a table (or a list of records) as input to `input list`,
allow specifying a cellpath for the field/column to use as the display
value.

For instance, at the moment, using a table as input results in the
following:

```
❯ [[name price]; [Banana 12] [Kiwi 4] [Pear 7]] | input list
> {name: Banana, price: 12}
  {name: Kiwi, price: 4}
  {name: Pear, price: 7}
```

With the new `--display` flag introduced by this PR, you can do the
following:

```
❯ [[name price]; [Banana 12] [Kiwi 4] [Pear 7]] | input list -d name
> Banana
  Kiwi
  Pear
```

Note that it doesn't change what gets returned after selecting an item:
the full row/record is still returned.

# User-Facing Changes
A new optional flag is allowed.

# Tests + Formatting

# After Submitting
2024-02-08 07:21:47 +08:00
..
nu_plugin_custom_values bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu_plugin_example bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu_plugin_formats bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu_plugin_gstat bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu_plugin_inc bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu_plugin_python remove vectorize_over_list from python plugin (#9905) 2023-08-03 16:46:48 +02:00
nu_plugin_query bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-cli Fix file completions which contains glob pattern (#11766) 2024-02-08 06:42:50 +08:00
nu-cmd-base bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-cmd-dataframe bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-cmd-extra bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-cmd-lang bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-color-config bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-command Allow specifying a cellpath in input list to get the value to display (#11748) 2024-02-08 07:21:47 +08:00
nu-engine Enforce call stack depth limit for all calls (#11729) 2024-02-08 06:42:24 +08:00
nu-explore bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-glob bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-json bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-lsp bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-parser Enforce call stack depth limit for all calls (#11729) 2024-02-08 06:42:24 +08:00
nu-path bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-plugin bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-pretty-hex bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-protocol Record cleanup (#11726) 2024-02-08 06:43:12 +08:00
nu-std bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-system bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-table bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-term-grid bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-test-support bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
nu-utils bump to dev release of nushell 0.90.2 (#11793) 2024-02-07 16:26:03 -06:00
README.md Remove old nushell/merge engine-q 2022-02-07 14:54:06 -05:00

Nushell core libraries and plugins

These sub-crates form both the foundation for Nu and a set of plugins which extend Nu with additional functionality.

Foundational libraries are split into two kinds of crates:

  • Core crates - those crates that work together to build the Nushell language engine
  • Support crates - a set of crates that support the engine with additional features like JSON support, ANSI support, and more.

Plugins are likewise also split into two types:

  • Core plugins - plugins that provide part of the default experience of Nu, including access to the system properties, processes, and web-connectivity features.
  • Extra plugins - these plugins run a wide range of different capabilities like working with different file types, charting, viewing binary data, and more.