aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/aerc.go
diff options
context:
space:
mode:
authorTim Culverhouse <tim@timculverhouse.com>2023-01-26 10:16:43 -0600
committerRobin Jarry <robin@jarry.cc>2023-01-29 21:47:11 +0100
commit6b39c0dae1e1c42445a2d8557e48135b02fc729b (patch)
treed65d2898424178203c0be52c56c255f96f8d51ee /widgets/aerc.go
parentdb60d7edeceaec075f91a802968c397698798d50 (diff)
downloadaerc-6b39c0dae1e1c42445a2d8557e48135b02fc729b.tar.gz
tabs: use template for account tab name
Use a go template to render the account tab display. Add config option for setting a specific template for the account. Add a method on Tab to allow setting a title, which may be different than the tab Name. The default template is {{.Account}}. Signed-off-by: Tim Culverhouse <tim@timculverhouse.com> Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'widgets/aerc.go')
-rw-r--r--widgets/aerc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/aerc.go b/widgets/aerc.go
index 59944cc6..f1e512f3 100644
--- a/widgets/aerc.go
+++ b/widgets/aerc.go
@@ -94,7 +94,7 @@ func NewAerc(
tabs.Add(errorScreen(err.Error()), acct.Name, nil)
} else {
aerc.accounts[acct.Name] = view
- tabs.Add(view, acct.Name, view.UiConfig())
+ view.tab = tabs.Add(view, acct.Name, view.UiConfig())
}
}