From 455c6f0b774bb5e37906dd3fb8c786892f0b1519 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 19 May 2019 18:23:34 -0400 Subject: Rename :delete-message et al to :delete et al --- commands/account/next-message.go | 55 ---------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 commands/account/next-message.go (limited to 'commands/account/next-message.go') diff --git a/commands/account/next-message.go b/commands/account/next-message.go deleted file mode 100644 index f13ea5a..0000000 --- a/commands/account/next-message.go +++ /dev/null @@ -1,55 +0,0 @@ -package account - -import ( - "errors" - "fmt" - "strconv" - "strings" - - "git.sr.ht/~sircmpwn/aerc/widgets" -) - -func init() { - register("next-message", NextPrevMessage) - register("prev-message", NextPrevMessage) -} - -func nextPrevMessageUsage(cmd string) error { - return errors.New(fmt.Sprintf("Usage: %s [[%%]]", cmd)) -} - -func NextPrevMessage(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" { - acct.Messages().Prev() - } else { - acct.Messages().Next() - } - } - return nil -} -- cgit v1.2.3