From 4fe27144e3e78108b9ead03a256d1f7cf3e85557 Mon Sep 17 00:00:00 2001 From: Ben Cohen Date: Wed, 14 Dec 2022 09:58:38 -0500 Subject: 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 Acked-by: Robin Jarry --- config/ui.go | 1 + 1 file changed, 1 insertion(+) 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, -- cgit