aboutsummaryrefslogblamecommitdiffstats
path: root/commands/account/next-result.go
blob: d624e5599de4de4fccc3aa034902f28df347b3e6 (plain) (tree)
1
2
3
4
5
6
7
8
9



                
 
                                    
                                       

 

                            
             
                                  

 
                                          


                                                     
                                                    
                                     







                                                        
                               




                                          
                               


                  
package account

import (
	"errors"

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

type NextPrevResult struct{}

func init() {
	register(NextPrevResult{})
}

func (NextPrevResult) Aliases() []string {
	return []string{"next-result", "prev-result"}
}

func (NextPrevResult) Execute(args []string) error {
	acct := app.SelectedAccount()
	if acct == nil {
		return errors.New("No account selected")
	}
	if args[0] == "prev-result" {
		store := acct.Store()
		if store != nil {
			store.PrevResult()
		}
		ui.Invalidate()
	} else {
		store := acct.Store()
		if store != nil {
			store.NextResult()
		}
		ui.Invalidate()
	}
	return nil
}