summary refs log tree commit diff stats
path: root/commands/account/move.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/account/move.go')
-rw-r--r--commands/account/move.go39
1 files changed, 0 insertions, 39 deletions
diff --git a/commands/account/move.go b/commands/account/move.go
deleted file mode 100644
index d58a279..0000000
--- a/commands/account/move.go
+++ /dev/null
@@ -1,39 +0,0 @@
-package account
-
-import (
-	"errors"
-	"time"
-
-	"github.com/gdamore/tcell"
-
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
-)
-
-func init() {
-	register("mv", Move)
-	register("move", Move)
-}
-
-func Move(aerc *widgets.Aerc, args []string) error {
-	if len(args) != 2 {
-		return errors.New("Usage: mv <folder>")
-	}
-	acct := aerc.SelectedAccount()
-	if acct == nil {
-		return errors.New("No account selected")
-	}
-	msg := acct.Messages().Selected()
-	store := acct.Messages().Store()
-	acct.Messages().Next()
-	store.Move([]uint32{msg.Uid}, args[1], func(msg types.WorkerMessage) {
-		switch msg := msg.(type) {
-		case *types.Done:
-			aerc.PushStatus("Messages moved.", 10*time.Second)
-		case *types.Error:
-			aerc.PushStatus(" "+msg.Error.Error(), 10*time.Second).
-				Color(tcell.ColorDefault, tcell.ColorRed)
-		}
-	})
-	return nil
-}