init: pristine aerc 0.20.0 source
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
package commands
|
||||
|
||||
import (
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"git.sr.ht/~rjarry/aerc/app"
|
||||
)
|
||||
|
||||
type MoveTab struct {
|
||||
Index int `opt:"index" metavar:"[+|-]<index>" action:"ParseIndex"`
|
||||
Relative bool
|
||||
}
|
||||
|
||||
func init() {
|
||||
Register(MoveTab{})
|
||||
}
|
||||
|
||||
func (MoveTab) Description() string {
|
||||
return "Move the selected tab to the given index."
|
||||
}
|
||||
|
||||
func (MoveTab) Context() CommandContext {
|
||||
return GLOBAL
|
||||
}
|
||||
|
||||
func (m *MoveTab) ParseIndex(arg string) error {
|
||||
i, err := strconv.ParseInt(arg, 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
m.Index = int(i)
|
||||
if strings.HasPrefix(arg, "+") || strings.HasPrefix(arg, "-") {
|
||||
m.Relative = true
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (MoveTab) Aliases() []string {
|
||||
return []string{"move-tab"}
|
||||
}
|
||||
|
||||
func (m MoveTab) Execute(args []string) error {
|
||||
app.MoveTab(m.Index, m.Relative)
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user