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



                
 
                                    
                                         
                                       

 

                            
             


                                           



                                                           
                                                         
                                    

 
                                          


                                                     
                                                    
                                     







                                                        
                               




                                          
                               


                  
package account

import (
	"errors"

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

type NextPrevResult struct{}

func init() {
	commands.Register(NextPrevResult{})
}

func (NextPrevResult) Description() string {
	return "Select the next or previous search result."
}

func (NextPrevResult) Context() commands.CommandContext {
	return commands.MESSAGE_LIST
}

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
}