aboutsummaryrefslogtreecommitdiff
path: root/commands/account/select.go
blob: 70e08ac60596bb1e3268cfe7c902fe5b85dddf2c (plain)
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
37
38
39
40
41
42
43
44
45
46
47
package account

import (
	"errors"
	"strconv"

	"git.sr.ht/~sircmpwn/aerc/widgets"
)

type SelectMessage struct{}

func init() {
	register(SelectMessage{})
}

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

func (_ SelectMessage) Complete(aerc *widgets.Aerc, args []string) []string {
	return nil
}

func (_ SelectMessage) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) != 2 {
		return errors.New("Usage: :select-message <n>")
	}
	var (
		n   int = 1
		err error
	)
	if len(args) > 1 {
		n, err = strconv.Atoi(args[1])
		if err != nil {
			return errors.New("Usage: :select-message <n>")
		}
	}
	acct := aerc.SelectedAccount()
	if acct == nil {
		return errors.New("No account selected")
	}
	if acct.Messages().Empty() {
		return nil
	}
	acct.Messages().Select(n)
	return nil
}