From 6cfbc87d8ab0be8d264d81b0b1f26e7b96719dfc Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Fri, 3 Feb 2023 13:14:35 +0100 Subject: dirlist: use templates instead of % mini language Replace dirlist-format with two settings: dirlist-left & dirlist-right. These two settings take aerc-templates(7) and may be left empty. Add automatic translation of dirlist-format to these new settings. Display a warning on startup if dirlist-format has been converted. Signed-off-by: Robin Jarry Acked-by: Tim Culverhouse --- models/templates.go | 1 + 1 file changed, 1 insertion(+) (limited to 'models/templates.go') diff --git a/models/templates.go b/models/templates.go index c07f3dbd..4886b83c 100644 --- a/models/templates.go +++ b/models/templates.go @@ -33,6 +33,7 @@ type TemplateData interface { Recent(folders ...string) int Unread(folders ...string) int Exists(folders ...string) int + RUE(folders ...string) string Connected() bool ConnectionInfo() string ContentInfo() string -- cgit