aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorReto Brunner <reto@labrat.space>2019-12-23 12:51:58 +0100
committerDrew DeVault <sir@cmpwn.com>2019-12-27 10:20:29 -0700
commit63391b7dca09e3f2cf3c4ff903592d23fe8f56a3 (patch)
tree4d1d4f918bd1a9536991a763c945139f89b8065e /lib
parent6794ce0d9cce89d5fab726d7bc93a77b47cea677 (diff)
Add labels to index format (%g)
Exposes the notmuch tags accordingly, stubs it for the maildir worker.
Diffstat (limited to 'lib')
-rw-r--r--lib/format/format.go4
-rw-r--r--lib/msgstore.go1
2 files changed, 5 insertions, 0 deletions
diff --git a/lib/format/format.go b/lib/format/format.go
index 0cb9693..b66a180 100644
--- a/lib/format/format.go
+++ b/lib/format/format.go
@@ -138,6 +138,10 @@ func ParseMessageFormat(
retval = append(retval, 's')
args = append(args, val)
+ case 'g':
+ retval = append(retval, 's')
+ args = append(args, strings.Join(msg.Labels, ", "))
+
case 'i':
retval = append(retval, 's')
args = append(args, msg.Envelope.MessageId)
diff --git a/lib/msgstore.go b/lib/msgstore.go
index 9075a26..f67c49f 100644
--- a/lib/msgstore.go
+++ b/lib/msgstore.go
@@ -149,6 +149,7 @@ func merge(to *models.MessageInfo, from *models.MessageInfo) {
to.Envelope = from.Envelope
}
to.Flags = from.Flags
+ to.Labels = from.Labels
if from.Size != 0 {
to.Size = from.Size
}