aboutsummaryrefslogblamecommitdiffstats
path: root/commands/help.go
blob: 5bc8f0e2d1b67ba532b3ab45a37a3e98d12709fc (plain) (tree)
1
2
3
4
5
6
7
8
9
10




                
                                        

 

                  
             


                        
                                


                               
                                                                  
                  

 
                                                              





                                                        
                                                            
 
package commands

import (
	"errors"

	"git.sr.ht/~rjarry/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})
}