diff options
author | Ben Cohen <ben@bencohen.net> | 2022-12-14 09:58:38 -0500 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-12-14 17:17:38 +0100 |
commit | 4fe27144e3e78108b9ead03a256d1f7cf3e85557 (patch) | |
tree | 4c0b471fadc54662583123ffbc6095a41e785d29 /config/ui.go | |
parent | ffc21baeacb587f66e58ef65ddfdd40b0be4a812 (diff) | |
download | aerc-4fe27144e3e78108b9ead03a256d1f7cf3e85557.tar.gz |
config: add a default flag to icon-attachment
Set a default flag character for icon-attachment to match the man page.
Fixes: adf74be4b5c5 ("msglist: add attachment indicator")
Signed-off-by: Ben Cohen <ben@bencohen.net>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'config/ui.go')
-rw-r--r-- | config/ui.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/ui.go b/config/ui.go index 440fccf3..18724af2 100644 --- a/config/ui.go +++ b/config/ui.go @@ -120,6 +120,7 @@ func defaultUiConfig() *UIConfig { IconSignedEncrypted: "", IconUnknown: "[s?]", IconInvalid: "[s!]", + IconAttachment: "a", DirListFormat: "%n %>r", DirListDelay: 200 * time.Millisecond, NextMessageOnDelete: true, |