989730d470
This allows selection of a tab using its index. It attempts to parse the given argument as a number, if it fails then it uses it as a name. Also supports relative indexes using prefixed + or -.
70 lines
1.3 KiB
Go
70 lines
1.3 KiB
Go
package commands
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/widgets"
|
|
)
|
|
|
|
type ChangeTab struct{}
|
|
|
|
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()
|
|
}
|
|
out := make([]string, 0)
|
|
for _, tab := range aerc.TabNames() {
|
|
if strings.HasPrefix(tab, args[0]) {
|
|
out = append(out, tab)
|
|
}
|
|
}
|
|
return out
|
|
}
|
|
|
|
func (_ ChangeTab) Execute(aerc *widgets.Aerc, args []string) error {
|
|
if len(args) != 2 {
|
|
return errors.New(fmt.Sprintf("Usage: %s <tab>", args[0]))
|
|
}
|
|
if args[1] == "-" {
|
|
ok := aerc.SelectPreviousTab()
|
|
if !ok {
|
|
return errors.New("No previous tab to return to")
|
|
}
|
|
} else {
|
|
n, err := strconv.Atoi(args[1])
|
|
if err == nil {
|
|
if strings.HasPrefix(args[1], "+") {
|
|
for ; n > 0; n-- {
|
|
aerc.NextTab()
|
|
}
|
|
} else if strings.HasPrefix(args[1], "-") {
|
|
for ; n < 0; n++ {
|
|
aerc.PrevTab()
|
|
}
|
|
} else {
|
|
ok := aerc.SelectTabIndex(n)
|
|
if !ok {
|
|
return errors.New(
|
|
"No tab with that index")
|
|
}
|
|
}
|
|
} else {
|
|
ok := aerc.SelectTab(args[1])
|
|
if !ok {
|
|
return errors.New("No tab with that name")
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|