mirror of
https://github.com/nushell/nushell.git
synced 2025-07-12 20:35:18 +02:00
* First commit updating `config` to use subcommands (#2119) - Implemented `get` subcommand * Implmented `config set` as a subcommand. * Implemented `config set_into` as subcommand * Fixed base `config` command - Instead of outputting help, it now outputs the list of all configuration parameters. * Added `config clear` subcommand * Added `config load` and `config remove` subcommands * Added `config path` subcommand * fixed clippy * initial commit for implementing groups * each group works * each group is slightly cleaner + added example * Added `each window` subcommand - No support for stride flag yet * each window stride implemented * Added tests and minor documentation changes * fixed clippy * fixed clippy again
10 lines
199 B
Rust
10 lines
199 B
Rust
pub mod command;
|
|
pub mod group;
|
|
pub mod window;
|
|
|
|
pub(crate) use command::make_indexed_item;
|
|
pub use command::process_row;
|
|
pub use command::Each;
|
|
pub use group::EachGroup;
|
|
pub use window::EachWindow;
|