diff options
author | Drew DeVault <sir@cmpwn.com> | 2020-05-28 10:32:32 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-05-28 10:32:32 -0400 |
commit | 76a91813d8dc0f0011202f8120fc197097f022aa (patch) | |
tree | ff4cd6581d3af0911954a37550602366d2bb0e2f /commands/util.go | |
parent | b9af9b5fb1c4f226499ab9c56d3e24f2b9b2db24 (diff) | |
download | aerc-76a91813d8dc0f0011202f8120fc197097f022aa.tar.gz |
Revert "Remove duration from the status methods"
This reverts commit f06d683688e3d2139b14f67b7e349089e7200bf4.
Diffstat (limited to 'commands/util.go')
-rw-r--r-- | commands/util.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/commands/util.go b/commands/util.go index bab9774..7c7b6ab 100644 --- a/commands/util.go +++ b/commands/util.go @@ -8,6 +8,7 @@ import ( "path/filepath" "sort" "strings" + "time" "git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~sircmpwn/aerc/models" @@ -31,11 +32,12 @@ func QuickTerm(aerc *widgets.Aerc, args []string, stdin io.Reader) (*widgets.Ter term.OnClose = func(err error) { if err != nil { - aerc.PushError(" " + err.Error()) + aerc.PushError(" "+err.Error(), 10*time.Second) // remove the tab on error, otherwise it gets stuck aerc.RemoveTab(term) } else { - aerc.PushStatus("Process complete, press any key to close.") + aerc.PushStatus("Process complete, press any key to close.", + 10*time.Second) term.OnEvent = func(event tcell.Event) bool { aerc.RemoveTab(term) return true @@ -54,7 +56,7 @@ func QuickTerm(aerc *widgets.Aerc, args []string, stdin io.Reader) (*widgets.Ter err := <-status if err != nil { - aerc.PushError(" " + err.Error()) + aerc.PushError(" "+err.Error(), 10*time.Second) } } |