forked from extern/nushell
hello there 👋 😋 when messing around with `with-env`, looking at the examples, i did not understand that we could directly run `with-env` with a record as the argument and not from the input of a pipe 😮 even though the last example, i.e. ```bash Set by row(e.g. `open x.json` or `from json`) > '{"X":"Y","W":"Z"}'|from json|with-env $in { [$env.X $env.W] } ``` , is equivalent, just the record comes from the pipe, i thought adding that explicite new example could be helpful 😌 # Description looking at the single real change of this PR, i.e. 86ef34e90, you can see i've simply added ```bash Set by key-value record > with-env {X: "Y", W: "Z"} { [$env.X $env.W] } ``` just before the example above > **Note** > i've also added spaces around the '|' in the last examples, from > ```bash > > '{"X":"Y","W":"Z"}'|from json|with-env $in { [$env.X $env.W] } > ``` > to > ```bash > > '{"X":"Y","W":"Z"}' | from json | with-env $in { [$env.X $env.W] } > ``` > hopefully making the pipeline a bit easier to read 👍 ### hope you like that 😏 # User-Facing Changes a new example has been added to `with-env` # Tests + Formatting no tests have been added # After Submitting the change should not affect the website, i think => if i need to generate the associated `HTML` file on https://github.com/nushell/nushell.github.io, please tell me 😋
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.