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




                
                                    

 

                  

                     

                   

                 
               






                    
               

 
             


                        
                                


                               
                                                              
                                                    

 
                                                          
                      
                                                



                                                        

                                

                                             




                                                                              





                                                          
                          

         
                                                            
 
package commands

import (
	"errors"

	"git.sr.ht/~rjarry/aerc/app"
)

type Help struct{}

var pages = []string{
	"aerc",
	"accounts",
	"binds",
	"config",
	"imap",
	"jmap",
	"notmuch",
	"search",
	"sendmail",
	"smtp",
	"stylesets",
	"templates",
	"tutorial",
	"keys",
}

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

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

func (Help) Complete(aerc *app.Aerc, args []string) []string {
	return CompletionFromList(aerc, pages, args)
}

func (Help) Execute(aerc *app.Aerc, args []string) error {
	page := "aerc"
	if len(args) == 2 && args[1] != "aerc" {
		page = "aerc-" + args[1]
	} else if len(args) > 2 {
		return errors.New("Usage: help [topic]")
	}

	if page == "aerc-keys" {
		aerc.AddDialog(app.NewDialog(
			app.NewListBox(
				"Bindings: Press <Esc> or <Enter> to close. "+
					"Start typing to filter bindings.",
				aerc.HumanReadableBindings(),
				aerc.SelectedAccountUiConfig(),
				func(_ string) {
					aerc.CloseDialog()
				},
			),
			func(h int) int { return h / 4 },
			func(h int) int { return h / 2 },
		))
		return nil
	}

	return TermCore(aerc, []string{"term", "man", page})
}