mirror of
https://github.com/nushell/nushell.git
synced 2025-05-14 06:54:33 +02:00
this PR should close #12168 # Description Add `split cell-path`, inverse of `into cell-path`. # User-Facing Changes Currently there is no way to make use of cell-path values as a user, other than passing them to builtin commands. This PR makes more use cases possible.
8 lines
144 B
Rust
8 lines
144 B
Rust
mod fill;
|
|
pub(crate) mod into;
|
|
mod split_cell_path;
|
|
|
|
pub use fill::Fill;
|
|
pub use into::*;
|
|
pub use split_cell_path::SubCommand as SplitCellPath;
|