nushell/crates/nu-cli/tests/commands/mod.rs
rimathia a62745eefb
make trim apply to strings contained in tables (also at deeper nesting (#1664)
* make trim apply to strings contained in tables (also at deeper nesting
levels), not just top-level strings

* remove unnecessary clone (thanks clippy)
2020-04-27 05:26:02 +12:00

44 lines
480 B
Rust

mod alias;
mod append;
mod calc;
mod cd;
mod compact;
mod cp;
mod default;
mod drop;
mod each;
mod edit;
mod enter;
mod first;
mod format;
mod get;
mod group_by;
mod headers;
mod histogram;
mod insert;
mod last;
mod lines;
mod ls;
mod math;
mod mkdir;
mod mv;
mod open;
mod parse;
mod pick;
mod prepend;
mod range;
mod rename;
mod reverse;
mod rm;
mod save;
mod semicolon;
mod sort_by;
mod split_by;
mod split_column;
mod sum;
mod touch;
mod trim;
mod uniq;
mod where_;
mod wrap;