aboutsummaryrefslogtreecommitdiff
path: root/commands/account/next-result.go
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-06-26 20:50:27 -0400
committerDrew DeVault <sir@cmpwn.com>2019-06-26 20:50:54 -0400
commit91a75cd98b705bd5e6689b154ecaca0e7c81630e (patch)
tree85fd35605953bad88f9ad2b3a5875f5490b59f09 /commands/account/next-result.go
parentccf5c02c3815efbe3b2e495cbc6eaca9f017aefd (diff)
Implement :search, :next-result, :prev-result
Diffstat (limited to 'commands/account/next-result.go')
-rw-r--r--commands/account/next-result.go41
1 files changed, 41 insertions, 0 deletions
diff --git a/commands/account/next-result.go b/commands/account/next-result.go
new file mode 100644
index 0000000..d89de56
--- /dev/null
+++ b/commands/account/next-result.go
@@ -0,0 +1,41 @@
+package account
+
+import (
+ "errors"
+ "fmt"
+
+ "git.sr.ht/~sircmpwn/aerc/widgets"
+)
+
+func init() {
+ register("next-result", NextPrevResult)
+ register("prev-result", NextPrevResult)
+}
+
+func nextPrevResultUsage(cmd string) error {
+ return errors.New(fmt.Sprintf("Usage: %s [<n>[%%]]", cmd))
+}
+
+func NextPrevResult(aerc *widgets.Aerc, args []string) error {
+ if len(args) > 1 {
+ return nextPrevResultUsage(args[0])
+ }
+ acct := aerc.SelectedAccount()
+ if acct == nil {
+ return errors.New("No account selected")
+ }
+ if args[0] == "prev-result" {
+ store := acct.Store()
+ if store != nil {
+ store.PrevResult()
+ }
+ acct.Messages().Scroll()
+ } else {
+ store := acct.Store()
+ if store != nil {
+ store.NextResult()
+ }
+ acct.Messages().Scroll()
+ }
+ return nil
+}