about summary refs log blame commit diff stats
path: root/commands/help.go
blob: b27c2f03c2d07ed50062a6e174e3d35c9c109ea7 (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})
}