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 /config/style.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 'config/style.go')
-rw-r--r-- | config/style.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/style.go b/config/style.go index d1fd5573..3a0f7a4f 100644 --- a/config/style.go +++ b/config/style.go @@ -27,6 +27,7 @@ const ( STYLE_STATUSLINE_DEFAULT STYLE_STATUSLINE_ERROR + STYLE_STATUSLINE_WARNING STYLE_STATUSLINE_SUCCESS STYLE_MSGLIST_DEFAULT @@ -65,6 +66,7 @@ var StyleNames = map[string]StyleObject{ "statusline_default": STYLE_STATUSLINE_DEFAULT, "statusline_error": STYLE_STATUSLINE_ERROR, + "statusline_warning": STYLE_STATUSLINE_WARNING, "statusline_success": STYLE_STATUSLINE_SUCCESS, "msglist_default": STYLE_MSGLIST_DEFAULT, |