diff options
author | Tim Culverhouse <tim@timculverhouse.com> | 2022-10-28 12:20:19 -0500 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-11-06 23:17:02 +0100 |
commit | c894ee2d7ae9442a04ca2af2dca5b576a850482a (patch) | |
tree | 31a4d9bd714c90892e67c7eb3faf17773352bc3d /widgets/account.go | |
parent | 4cf96270f135fb31411d933ab4b686fe4e4900cf (diff) | |
download | aerc-c894ee2d7ae9442a04ca2af2dca5b576a850482a.tar.gz |
status: add warning style and methods
Add a warning style to default statusline. Add methods to status, aerc,
and account to push a warning message.
Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'widgets/account.go')
-rw-r--r-- | widgets/account.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/widgets/account.go b/widgets/account.go index cdb43cbf..f1360b8f 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -137,6 +137,10 @@ func (acct *AccountView) PushError(err error) { acct.aerc.PushError(fmt.Sprintf("%s: %v", acct.acct.Name, err)) } +func (acct *AccountView) PushWarning(warning string) { + acct.aerc.PushWarning(fmt.Sprintf("%s: %s", acct.acct.Name, warning)) +} + func (acct *AccountView) AccountConfig() *config.AccountConfig { return acct.acct } |