diff options
author | Ben Fiedler <git@services.bfiedler.ch> | 2020-04-23 03:56:28 +0200 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-04-23 21:02:45 +0200 |
commit | 7c89143c709e58f22a4939886ccb15bd639eec17 (patch) | |
tree | 4714984f29b0f42014436401665d9430ec288d31 /commands/term.go | |
parent | 280d8e7e1cce40f11c6d5f368f9060486556f96b (diff) | |
download | aerc-7c89143c709e58f22a4939886ccb15bd639eec17.tar.gz |
Use aerc.PushError where appropriate
Forgot an unused import, to save you the hassle here is v2.
Diffstat (limited to 'commands/term.go')
-rw-r--r-- | commands/term.go | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/commands/term.go b/commands/term.go index 459f405..c75fda5 100644 --- a/commands/term.go +++ b/commands/term.go @@ -2,12 +2,10 @@ package commands import ( "os/exec" - "time" - "git.sr.ht/~sircmpwn/aerc/widgets" - - "github.com/gdamore/tcell" "github.com/riywo/loginshell" + + "git.sr.ht/~sircmpwn/aerc/widgets" ) type Term struct{} @@ -48,8 +46,7 @@ func TermCore(aerc *widgets.Aerc, args []string) error { term.OnClose = func(err error) { aerc.RemoveTab(term) if err != nil { - aerc.PushStatus(" "+err.Error(), 10*time.Second). - Color(tcell.ColorDefault, tcell.ColorRed) + aerc.PushError(" "+err.Error()) } } return nil |