aboutsummaryrefslogblamecommitdiffstats
path: root/commands/ct.go
blob: 4f908fcf99ef1297e5a1e63cd6f216b4c8f0f21c (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                
                 

                 
                                    

 
                       
                                                     
 

             




                                           

 
                                     


                                           
                                                    
                                                   

 

                                                 
                                             



                                                                         
                                             
                               


                                                                                           
                                                           
                                        
                                                                                   


                                 
                                                  


                                                                          



                  
package commands

import (
	"errors"
	"strconv"
	"strings"

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

type ChangeTab struct {
	Tab string `opt:"tab" complete:"CompleteTab"`
}

func init() {
	Register(ChangeTab{})
}

func (ChangeTab) Context() CommandContext {
	return GLOBAL
}

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

func (*ChangeTab) CompleteTab(arg string) []string {
	return FilterList(app.TabNames(), arg, nil)
}

func (c ChangeTab) Execute(args []string) error {
	if c.Tab == "-" {
		ok := app.SelectPreviousTab()
		if !ok {
			return errors.New("No previous tab to return to")
		}
	} else {
		n, err := strconv.Atoi(c.Tab)
		if err == nil {
			if strings.HasPrefix(c.Tab, "+") || strings.HasPrefix(c.Tab, "-") {
				app.SelectTabAtOffset(n)
			} else {
				ok := app.SelectTabIndex(n)
				if !ok {
					return errors.New("No tab with that index")
				}
			}
		} else {
			ok := app.SelectTab(c.Tab)
			if !ok {
				return errors.New("No tab with that name")
			}
		}
	}
	return nil
}