mirror of
https://github.com/nushell/nushell.git
synced 2025-07-13 04:46:17 +02:00
# Description This PR adds a new `state` key to the output of `gstat` that shows the current repo state state. Like "Clean", "Merge", "Rebase", etc. The full list of possible values can be seen [here](https://docs.rs/git2/latest/git2/enum.RepositoryState.html). This information is somewhat useful when shown in prompt. Not often needed, but sometimes really useful. # User-Facing Changes New key added to `gstat` output. I don't think it should cause issues to `gstat` users. # Tests + Formatting I couldn't find any tests for `nu_plugin_gstat`. # After Submitting I couldn't find any documentation about the output of `gstat`, so I don't think there is anything to be done here either.
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.