Implement :help

This commit is contained in:
Drew DeVault 2019-05-22 11:17:52 -04:00
parent 58bc15b472
commit 1a45b793c7
1 changed files with 21 additions and 0 deletions

21
commands/help.go Normal file
View File

@ -0,0 +1,21 @@
package commands
import (
"errors"
"git.sr.ht/~sircmpwn/aerc/widgets"
)
func init() {
register("help", Help)
}
func Help(aerc *widgets.Aerc, args []string) error {
page := "aerc"
if len(args) == 2 {
page = "aerc-" + args[1]
} else if len(args) > 2 {
return errors.New("Usage: help [topic]")
}
return Term(aerc, []string{"term", "man", page})
}