aboutsummaryrefslogtreecommitdiff
path: root/commands/msg
diff options
context:
space:
mode:
authorKevin Kuehler <kkuehler@brave.com>2019-06-10 22:05:55 -0700
committerDrew DeVault <sir@cmpwn.com>2019-06-11 09:34:36 -0400
commit32f970e0531a0811392d2836773870acf649cf26 (patch)
tree2e65f2a122b6235c9e858ba4af36481475292747 /commands/msg
parentd1df7103280ef488434b103e5e9e3129c407e5b6 (diff)
Move select functionality from msglist to msgstore
Remove msglist Next and Prev commands Signed-off-by: Kevin Kuehler <kkuehler@brave.com>
Diffstat (limited to 'commands/msg')
-rw-r--r--commands/msg/archive.go3
-rw-r--r--commands/msg/delete.go3
-rw-r--r--commands/msg/move.go3
3 files changed, 6 insertions, 3 deletions
diff --git a/commands/msg/archive.go b/commands/msg/archive.go
index da4c421..4fe7330 100644
--- a/commands/msg/archive.go
+++ b/commands/msg/archive.go
@@ -34,7 +34,8 @@ func Archive(aerc *widgets.Aerc, args []string) error {
msg := widget.SelectedMessage()
store := widget.Store()
archiveDir := acct.AccountConfig().Archive
- acct.Messages().Next()
+ store.Next()
+ acct.Messages().Scroll()
switch args[1] {
case ARCHIVE_MONTH:
diff --git a/commands/msg/delete.go b/commands/msg/delete.go
index 082dbe3..ee3dd29 100644
--- a/commands/msg/delete.go
+++ b/commands/msg/delete.go
@@ -31,7 +31,8 @@ func DeleteMessage(aerc *widgets.Aerc, args []string) error {
if isMsgView {
aerc.RemoveTab(widget)
}
- acct.Messages().Next()
+ store.Next()
+ acct.Messages().Scroll()
store.Delete([]uint32{msg.Uid}, func(msg types.WorkerMessage) {
switch msg := msg.(type) {
case *types.Done:
diff --git a/commands/msg/move.go b/commands/msg/move.go
index 5300c5a..2367076 100644
--- a/commands/msg/move.go
+++ b/commands/msg/move.go
@@ -45,7 +45,8 @@ func Move(aerc *widgets.Aerc, args []string) error {
if isMsgView {
aerc.RemoveTab(widget)
}
- acct.Messages().Next()
+ store.Next()
+ acct.Messages().Scroll()
store.Move([]uint32{msg.Uid}, args[optind], createParents, func(
msg types.WorkerMessage) {