about summary refs log blame commit diff stats
path: root/commands/help.go
blob: c4ed4fffcc15063d2d327edfbd03359604e7c320 (plain) (tree)
1
2
3
4
5
6
7
8
9
10







                                          

                  
             








                                                                    

 
                                                                





                                                        
                                                            
 
package commands

import (
	"errors"

	"git.sr.ht/~sircmpwn/aerc/widgets"
)

type Help struct{}

func init() {
	register(Help{})
}

func (_ Help) Aliases() []string {
	return []string{"help"}
}

func (_ Help) Complete(aerc *widgets.Aerc, args []string) []string {
	return nil
}

func (_ Help) Execute(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 TermCore(aerc, []string{"term", "man", page})
}