aboutsummaryrefslogtreecommitdiffstats
path: root/commands/account/select.go
blob: cbaaf6e92c2672cdfeda2480312f552aa2fce58b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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.ACCOUNT
}

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
}