Add from_array and improve array viewing

This commit is contained in:
Jonathan Turner
2019-08-12 17:51:13 +12:00
parent 7c4a4ec62e
commit 3d5395fdd5
7 changed files with 54 additions and 8 deletions

View File

@ -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)),