mirror of
https://github.com/nushell/nushell.git
synced 2025-07-11 20:05:25 +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
18 lines
446 B
Rust
18 lines
446 B
Rust
pub mod clear;
|
|
pub mod command;
|
|
pub mod get;
|
|
pub mod load;
|
|
pub mod path;
|
|
pub mod remove;
|
|
pub mod set;
|
|
pub mod set_into;
|
|
|
|
pub use clear::SubCommand as ConfigClear;
|
|
pub use command::Command as Config;
|
|
pub use get::SubCommand as ConfigGet;
|
|
pub use load::SubCommand as ConfigLoad;
|
|
pub use path::SubCommand as ConfigPath;
|
|
pub use remove::SubCommand as ConfigRemove;
|
|
pub use set::SubCommand as ConfigSet;
|
|
pub use set_into::SubCommand as ConfigSetInto;
|