summary refs log tree commit diff stats
path: root/doc/howto-publish-a-release.txt
diff options
context:
space:
mode:
authorRichard Boß <richboss@gmail.de>2016-10-25 18:34:04 +0200
committerRichard Boß <richboss@gmail.de>2016-10-25 18:34:04 +0200
commit6f9c106aa352c3e13f34c4216a4516b4c18e452b (patch)
treec5ba899d54e6a32cc8e509ffa809373664df31b0 /doc/howto-publish-a-release.txt
parent21312c3dc2721a5116b1d3d27255084390346ec5 (diff)
downloadranger-6f9c106aa352c3e13f34c4216a4516b4c18e452b.tar.gz
fix argument order
Diffstat (limited to 'doc/howto-publish-a-release.txt')
0 files changed, 0 insertions, 0 deletions
ommit/commands/account/next.go?h=0.2.1&id=2a0961701c4cabecc53d134ed1782e5612e64580'>2a09617 ^
24daef8 ^
2a09617 ^
24daef8 ^

2a09617 ^





24daef8 ^

2a09617 ^
24daef8 ^





e780c6e ^
24daef8 ^

e780c6e ^



24daef8 ^





9e28a02 ^


e780c6e ^


24daef8 ^
455c6f0 ^
53df15a ^



9746f48 ^
24daef8 ^
53df15a ^



9746f48 ^
24daef8 ^



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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
               




                 
                 
 
                                          

 

                         
             
                               

 





                                                                           

 
                                                                       





                                                    
                        

                          



                                                          





                                                            


                                                        


                                                                                 
                          
                                                                   



                                             
                                                
                        



                                             
                                                



                  



                                                                  
package account

import (
	"errors"
	"fmt"
	"strconv"
	"strings"

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

type NextPrevMsg struct{}

func init() {
	register(NextPrevMsg{})
}

func (_ NextPrevMsg) Aliases() []string {
	return []string{"next", "next-message", "prev", "prev-message"}
}

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

func (_ NextPrevMsg) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) > 2 {
		return nextPrevMessageUsage(args[0])
	}
	var (
		n   int = 1
		err error
		pct bool
	)
	if len(args) > 1 {
		if strings.HasSuffix(args[1], "%") {
			pct = true
			args[1] = args[1][:len(args[1])-1]
		}
		n, err = strconv.Atoi(args[1])
		if err != nil {
			return nextPrevMessageUsage(args[0])
		}
	}
	acct := aerc.SelectedAccount()
	if acct == nil {
		return errors.New("No account selected")
	}
	if pct {
		n = int(float64(acct.Messages().Height()) * (float64(n) / 100.0))
	}
	for ; n > 0; n-- {
		if args[0] == "prev-message" || args[0] == "prev" {
			store := acct.Store()
			if store != nil {
				store.Prev()
			}
			acct.Messages().Scroll()
		} else {
			store := acct.Store()
			if store != nil {
				store.Next()
			}
			acct.Messages().Scroll()
		}
	}
	return nil
}

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