Shorten previous/next commands

This commit is contained in:
Jonathan Turner 2019-08-07 20:32:29 +12:00
parent be1976dd18
commit cd3f77f4e8

View File

@ -163,8 +163,8 @@ pub async fn cli() -> Result<(), Box<dyn Error>> {
command("get", Box::new(get::get)),
command("enter", Box::new(enter::enter)),
command("exit", Box::new(exit::exit)),
command("next", Box::new(next::next)),
command("prev", Box::new(prev::prev)),
command("n", Box::new(next::next)),
command("p", Box::new(prev::prev)),
command("lines", Box::new(lines::lines)),
command("pick", Box::new(pick::pick)),
command("split-column", Box::new(split_column::split_column)),