aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
authorJeffas <dev@jeffas.io>2019-07-15 22:17:00 +0100
committerDrew DeVault <sir@cmpwn.com>2019-07-17 15:59:08 -0400
commit715c9a47972b34bfea17ea23a59f0ddd857add75 (patch)
tree1076cc53332482968ceb5f590e9538a1f28870bb /commands
parent1c419d1b4d39344b831d3bb81cd3293f477bca0a (diff)
Update status message to include destination
Diffstat (limited to 'commands')
-rw-r--r--commands/msg/move.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/msg/move.go b/commands/msg/move.go
index 45fa635..b7d52ff 100644
--- a/commands/msg/move.go
+++ b/commands/msg/move.go
@@ -68,7 +68,7 @@ func (_ Move) Execute(aerc *widgets.Aerc, args []string) error {
switch msg := msg.(type) {
case *types.Done:
- aerc.PushStatus("Messages moved.", 10*time.Second)
+ aerc.PushStatus("Message moved to "+args[optind], 10*time.Second)
case *types.Error:
aerc.PushStatus(" "+msg.Error.Error(), 10*time.Second).
Color(tcell.ColorDefault, tcell.ColorRed)