aboutsummaryrefslogblamecommitdiffstats
path: root/commands/account/select.go
blob: f990a1a15416bee9b6824a588e3384afe099cbc1 (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/commands"
)

type SelectMessage struct {
	Index int `opt:"n"`
}

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

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

func (SelectMessage) Aliases() []string {
	return []string{"select", "select-message"}
}

func (s SelectMessage) Execute(args []string) error {
	acct := app.SelectedAccount()
	if acct == nil {
		return errors.New("No account selected")
	}
	if acct.Messages().Empty() {
		return nil
	}
	acct.Messages().Select(s.Index)
	return nil
}