forked from extern/nushell
# Description Address part of feature request #7337, add a small command `into cellpath` to allow string -> cellpath auto-conversion, with this change, we could run ``` let p = 'ls.use_ls_colors' $env.config | upsert ($p | nito cellpath) false ``` <img width="710" alt="image" src="https://user-images.githubusercontent.com/85712372/206782818-3024b34f-150b-482d-aebc-9426ef6a1cf9.png"> Note - This pr only covers `String` -> `CellPath`, any other conversions should be considered as expected? # Tests + Formatting Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - [x] `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - [x] `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect` to check that you're using the standard code style - [x] `cargo test --workspace` to check that all tests pass # After Submitting If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date.
24 lines
601 B
Rust
24 lines
601 B
Rust
mod binary;
|
|
mod bool;
|
|
mod cellpath;
|
|
mod command;
|
|
mod datetime;
|
|
mod decimal;
|
|
mod duration;
|
|
mod filesize;
|
|
mod int;
|
|
mod record;
|
|
mod string;
|
|
|
|
pub use self::bool::SubCommand as IntoBool;
|
|
pub use self::filesize::SubCommand as IntoFilesize;
|
|
pub use binary::SubCommand as IntoBinary;
|
|
pub use cellpath::SubCommand as IntoCellPath;
|
|
pub use command::Into;
|
|
pub use datetime::SubCommand as IntoDatetime;
|
|
pub use decimal::SubCommand as IntoDecimal;
|
|
pub use duration::SubCommand as IntoDuration;
|
|
pub use int::SubCommand as IntoInt;
|
|
pub use record::SubCommand as IntoRecord;
|
|
pub use string::SubCommand as IntoString;
|