summary refs log tree commit diff stats
path: root/tests/dummy.txt
blob: 64cd361f965a55b7458f138f047f8883d4b896bb (plain) (blame)
1
Just a simple text for test
4:17 -0400 Implement :next-tab, :prev-tab' href='/akspecs/aerc/commit/commands/next-tab.go?h=0.5.1&id=14cb8cb51f4a1dfca2486d154e2206b19f9401a7'>14cb8cb ^
6838c23 ^
14cb8cb ^





















2a09617 ^

feacca3 ^
2a09617 ^
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


                


                 
                                          

 

                         
             
                               

 
                                       


                                               
                                                                         
                  

 
                                                                     





















                                                        

                                         
                                               
 
package commands

import (
	"fmt"
	"strconv"

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

type NextPrevTab struct{}

func init() {
	register(NextPrevTab{})
}

func (NextPrevTab) Aliases() []string {
	return []string{"next-tab", "prev-tab"}
}

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

func (NextPrevTab) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) > 2 {
		return nextPrevTabUsage(args[0])
	}
	var (
		n   int = 1
		err error
	)
	if len(args) > 1 {
		n, err = strconv.Atoi(args[1])
		if err != nil {
			return nextPrevTabUsage(args[0])
		}
	}
	for ; n > 0; n-- {
		if args[0] == "prev-tab" {
			aerc.PrevTab()
		} else {
			aerc.NextTab()
		}
	}
	return nil
}

func nextPrevTabUsage(cmd string) error {
	return fmt.Errorf("Usage: %s [n]", cmd)
}