2019-07-19 19:12:57 +02:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2019-07-26 23:41:13 +02:00
|
|
|
"strconv"
|
2019-07-19 19:12:57 +02:00
|
|
|
"strings"
|
|
|
|
|
2021-11-05 10:19:46 +01:00
|
|
|
"git.sr.ht/~rjarry/aerc/widgets"
|
2019-07-19 19:12:57 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type ChangeTab struct{}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
register(ChangeTab{})
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (ChangeTab) Aliases() []string {
|
2019-07-19 19:12:57 +02:00
|
|
|
return []string{"ct", "change-tab"}
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (ChangeTab) Complete(aerc *widgets.Aerc, args []string) []string {
|
2019-07-26 15:29:40 +02:00
|
|
|
if len(args) == 0 {
|
|
|
|
return aerc.TabNames()
|
|
|
|
}
|
2019-09-20 18:16:29 +02:00
|
|
|
joinedArgs := strings.Join(args, " ")
|
2022-03-15 02:55:51 +01:00
|
|
|
return FilterList(aerc.TabNames(), joinedArgs, "", aerc.SelectedAccountUiConfig().FuzzyComplete)
|
2019-07-19 19:12:57 +02:00
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (ChangeTab) Execute(aerc *widgets.Aerc, args []string) error {
|
2019-09-20 18:16:29 +02:00
|
|
|
if len(args) == 1 {
|
2019-09-03 21:34:04 +02:00
|
|
|
return fmt.Errorf("Usage: %s <tab>", args[0])
|
2019-07-19 19:12:57 +02:00
|
|
|
}
|
2019-09-20 18:16:29 +02:00
|
|
|
joinedArgs := strings.Join(args[1:], " ")
|
|
|
|
if joinedArgs == "-" {
|
2019-07-19 19:12:57 +02:00
|
|
|
ok := aerc.SelectPreviousTab()
|
|
|
|
if !ok {
|
|
|
|
return errors.New("No previous tab to return to")
|
|
|
|
}
|
|
|
|
} else {
|
2019-09-20 18:16:29 +02:00
|
|
|
n, err := strconv.Atoi(joinedArgs)
|
2019-07-26 23:41:13 +02:00
|
|
|
if err == nil {
|
2022-07-31 14:32:48 +02:00
|
|
|
switch {
|
|
|
|
case strings.HasPrefix(joinedArgs, "+"):
|
2019-07-26 23:41:13 +02:00
|
|
|
for ; n > 0; n-- {
|
|
|
|
aerc.NextTab()
|
|
|
|
}
|
2022-07-31 14:32:48 +02:00
|
|
|
case strings.HasPrefix(joinedArgs, "-"):
|
2019-07-26 23:41:13 +02:00
|
|
|
for ; n < 0; n++ {
|
|
|
|
aerc.PrevTab()
|
|
|
|
}
|
2022-07-31 14:32:48 +02:00
|
|
|
default:
|
2019-07-26 23:41:13 +02:00
|
|
|
ok := aerc.SelectTabIndex(n)
|
|
|
|
if !ok {
|
|
|
|
return errors.New(
|
|
|
|
"No tab with that index")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2019-09-20 18:16:29 +02:00
|
|
|
ok := aerc.SelectTab(joinedArgs)
|
2019-07-26 23:41:13 +02:00
|
|
|
if !ok {
|
|
|
|
return errors.New("No tab with that name")
|
|
|
|
}
|
2019-07-19 19:12:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|