mirror of
https://github.com/nushell/nushell.git
synced 2025-05-14 11:44:35 +00:00
with the `help` command to explore and list all commands available. Enter will also try to see if the location to be entered is an existing Nu command, if it is it will let you inspect the command under `help`. This provides baseline needed so we can iterate on it.
10 lines
221 B
Rust
10 lines
221 B
Rust
pub(crate) mod completer;
|
|
pub(crate) mod filesystem_shell;
|
|
pub(crate) mod helper;
|
|
pub(crate) mod shell;
|
|
pub(crate) mod shell_manager;
|
|
pub(crate) mod value_shell;
|
|
pub(crate) mod help_shell;
|
|
|
|
pub(crate) use helper::Helper;
|