diff options
author | Robin Jarry <robin@jarry.cc> | 2023-03-03 17:37:05 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-03-08 00:42:56 +0100 |
commit | 35040bec9962cac3c92039fac85a4068e148b0a0 (patch) | |
tree | ca33752e9ad3d00894468ae489497d3d168faeee /doc/aerc-templates.7.scd | |
parent | 159ad244ee23d69f2491b139fd4384c7620b83c2 (diff) | |
download | aerc-35040bec9962cac3c92039fac85a4068e148b0a0.tar.gz |
templates: separate thread prefix from subject
Extract {{.ThreadPrefix}} from {{.Subject}} so that the prefix can be
styled in a different color.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Acked-by: Tim Culverhouse <tim@timculverhouse.com>
Diffstat (limited to 'doc/aerc-templates.7.scd')
-rw-r--r-- | doc/aerc-templates.7.scd | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/aerc-templates.7.scd b/doc/aerc-templates.7.scd index f3f2a568..63d9df6a 100644 --- a/doc/aerc-templates.7.scd +++ b/doc/aerc-templates.7.scd @@ -76,10 +76,11 @@ available always. Refer to the *TEMPLATE FUNCTIONS* section for details. *Subject* - The subject of the email. + The subject of the email (_ThreadPrefix_ will be empty unless threading + is enabled). ``` - {{.Subject}} + {{.ThreadPrefix}}{{.Subject}} ``` *Flags* |