Message:"what category should this command be filed under?",
Options:categories,
},&choice);err!=nil{
returnerr
}
category=categories[choice]
fmt.Printf("DBG %#v\n",category)
iferr:=survey.AskOne(&survey.Input{
Message:"What's a one line description of this command?",
},&shortDescription);err!=nil{
returnerr
}
iferr:=survey.AskOne(&survey.Editor{
Message:"Write a long description for this command. Try to include examples. If the short description is enough, you can just leave it blank though. Really it's whatever you want. I donno"},&longDescription);err!=nil{