aboutsummaryrefslogtreecommitdiffstats
path: root/config/ui.go
diff options
context:
space:
mode:
Diffstat (limited to 'config/ui.go')
-rw-r--r--config/ui.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/ui.go b/config/ui.go
index f52cf7f8..4b2a303a 100644
--- a/config/ui.go
+++ b/config/ui.go
@@ -284,7 +284,7 @@ func (*UIConfig) ParseIndexColumns(section *ini.Section, key *ini.Key) ([]*Colum
_, _ = section.NewKey("column-flags", `{{.Flags | join ""}}`)
}
if !section.HasKey("column-subject") {
- _, _ = section.NewKey("column-subject", `{{.Subject}}`)
+ _, _ = section.NewKey("column-subject", `{{.ThreadPrefix}}{{.Subject}}`)
}
return ParseColumnDefs(key, section)
}
@@ -382,7 +382,7 @@ func indexVerbToTemplate(verb rune) (f, name string) {
f = `{{.Cc | persons | join ", "}}`
name = "cc"
case 's':
- f = "{{.Subject}}"
+ f = "{{.ThreadPrefix}}{{.Subject}}"
name = "subject"
case 't':
f = "{{(index .To 0).Address}}"