aboutsummaryrefslogtreecommitdiff
path: root/commands/ct.go
blob: 01eec808bd787ed8c24db75b606a5fe7aa013332 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package commands

import (
	"errors"
	"strconv"
	"strings"

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

type ChangeTab struct {
	Tab string `opt:"TAB"`
}

func init() {
	register(ChangeTab{})
}

func (ChangeTab) Aliases() []string {
	return []string{"ct", "change-tab"}
}

func (ChangeTab) Complete(aerc *widgets.Aerc, args []string) []string {
	if len(args) == 0 {
		return aerc.TabNames()
	}
	joinedArgs := strings.Join(args, " ")
	return FilterList(aerc.TabNames(), joinedArgs, "", aerc.SelectedAccountUiConfig().FuzzyComplete)
}

func (c ChangeTab) Execute(aerc *widgets.Aerc, args []string) error {
	if c.Tab == "-" {
		ok := aerc.SelectPreviousTab()
		if !ok {
			return errors.New("No previous tab to return to")
		}
	} else {
		n, err := strconv.Atoi(c.Tab)
		if err == nil {
			switch {
			case strings.HasPrefix(c.Tab, "+"):
				for ; n > 0; n-- {
					aerc.NextTab()
				}
			case strings.HasPrefix(c.Tab, "-"):
				for ; n < 0; n++ {
					aerc.PrevTab()
				}
			default:
				ok := aerc.SelectTabIndex(n)
				if !ok {
					return errors.New(
						"No tab with that index")
				}
			}
		} else {
			ok := aerc.SelectTab(c.Tab)
			if !ok {
				return errors.New("No tab with that name")
			}
		}
	}
	return nil
}