mirror of
https://github.com/nushell/nushell.git
synced 2025-08-10 02:27:50 +02:00
Add from_array and improve array viewing
This commit is contained in:
@ -147,6 +147,7 @@ pub async fn cli() -> Result<(), Box<dyn Error>> {
|
||||
context.add_commands(vec![
|
||||
command("first", Box::new(first::first)),
|
||||
command("pick", Box::new(pick::pick)),
|
||||
command("from-array", Box::new(from_array::from_array)),
|
||||
command("from-ini", Box::new(from_ini::from_ini)),
|
||||
command("from-csv", Box::new(from_csv::from_csv)),
|
||||
command("from-json", Box::new(from_json::from_json)),
|
||||
@ -160,6 +161,7 @@ pub async fn cli() -> Result<(), Box<dyn Error>> {
|
||||
command("enter", Box::new(enter::enter)),
|
||||
command("n", Box::new(next::next)),
|
||||
command("p", Box::new(prev::prev)),
|
||||
command("debug", Box::new(debug::debug)),
|
||||
command("lines", Box::new(lines::lines)),
|
||||
command("pick", Box::new(pick::pick)),
|
||||
command("shells", Box::new(shells::shells)),
|
||||
|
Reference in New Issue
Block a user