Implement :help
This commit is contained in:
parent
58bc15b472
commit
1a45b793c7
|
@ -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})
|
||||||
|
}
|
Loading…
Reference in New Issue