summary refs log tree commit diff stats
path: root/tests/osproc/tstdout.nim
Commit message (Collapse)AuthorAgeFilesLines
* make tests green againAraq2018-12-111-0/+2
|
* Bugfix/double newlines in stderr (#5426)Fabian Keller2017-02-241-0/+29
class='alt'>
b60999c ^


8126d82 ^

d394fd1 ^

24daef8 ^
d394fd1 ^
b60999c ^

d394fd1 ^

24daef8 ^
d394fd1 ^







24daef8 ^
d394fd1 ^

b60999c ^
9e28a02 ^


d394fd1 ^






b60999c ^

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
               

        



                 
                                          


             

                                               

 
                                            
                                                            

 

                                                              
                                                   







                                              
                                                           

                 
                                      


                                                        






                                                 

                  
package account

import (
	"errors"
	"fmt"
	"strconv"

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

func init() {
	register("next-folder", NextPrevFolder)
	register("prev-folder", NextPrevFolder)
}

func nextPrevFolderUsage(cmd string) error {
	return errors.New(fmt.Sprintf("Usage: %s [n]", cmd))
}

func NextPrevFolder(aerc *widgets.Aerc, args []string) error {
	if len(args) > 2 {
		return nextPrevFolderUsage(args[0])
	}
	var (
		n   int = 1
		err error
	)
	if len(args) > 1 {
		n, err = strconv.Atoi(args[1])
		if err != nil {
			return nextPrevFolderUsage(args[0])
		}
	}
	acct := aerc.SelectedAccount()
	if acct == nil {
		return errors.New("No account selected")
	}
	for ; n > 0; n-- {
		if args[0] == "prev-folder" {
			acct.Directories().Prev()
		} else {
			acct.Directories().Next()
		}
	}
	return nil
}