diff options
author | Jeffas <dev@jeffas.io> | 2019-07-15 22:17:00 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-07-17 15:59:08 -0400 |
commit | 715c9a47972b34bfea17ea23a59f0ddd857add75 (patch) | |
tree | 1076cc53332482968ceb5f590e9538a1f28870bb /commands/msg | |
parent | 1c419d1b4d39344b831d3bb81cd3293f477bca0a (diff) | |
download | aerc-715c9a47972b34bfea17ea23a59f0ddd857add75.tar.gz |
Update status message to include destination
Diffstat (limited to 'commands/msg')
-rw-r--r-- | commands/msg/move.go | 2 |
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) |