Add back in cd/ls and completions

This commit is contained in:
Jonathan Turner
2019-08-10 07:42:23 +12:00
parent cabd5bf009
commit 34759b7646
9 changed files with 122 additions and 122 deletions

View File

@ -154,6 +154,7 @@ pub async fn cli() -> Result<(), Box<dyn Error>> {
command("from-xml", Box::new(from_xml::from_xml)),
command("ps", Box::new(ps::ps)),
command("ls", Box::new(ls::ls)),
command("cd", Box::new(cd::cd)),
command("size", Box::new(size::size)),
command("from-yaml", Box::new(from_yaml::from_yaml)),
command("enter", Box::new(enter::enter)),
@ -175,7 +176,7 @@ pub async fn cli() -> Result<(), Box<dyn Error>> {
command("sort-by", Box::new(sort_by::sort_by)),
command("tags", Box::new(tags::tags)),
static_command(Get),
static_command(Cd),
//static_command(Cd),
static_command(Remove),
static_command(Open),
static_command(Where),