Force sort order in notmuch saved searches

This commit is contained in:
Evie Litherland-Smith 2023-10-30 10:54:59 +00:00
parent 76ff0e4115
commit 46d7475d06

View file

@ -27,12 +27,12 @@
(".*@icloud.com" . "iCloud/Sent") (".*@icloud.com" . "iCloud/Sent")
(".*@ukaea.uk" . "Outlook/Sent") (".*@ukaea.uk" . "Outlook/Sent")
(".*@jet.uk" . "Outlook/Sent")) (".*@jet.uk" . "Outlook/Sent"))
notmuch-saved-searches '((:name "inbox" :query "tag:inbox" :key "i") notmuch-saved-searches '((:name "inbox" :query "tag:inbox" :key "i" :sort-order newest-first)
(:name "unread" :query "tag:unread AND tag:inbox" :key "u") (:name "unread" :query "tag:unread AND tag:inbox" :key "u" :sort-order newest-first)
(:name "flagged" :query "tag:flagged" :key "f") (:name "flagged" :query "tag:flagged" :key "f" :sort-order newest-first)
(:name "sent" :query "tag:sent" :key "t") (:name "sent" :query "tag:sent" :key "t" :sort-order newest-first)
(:name "drafts" :query "tag:draft" :key "d") (:name "drafts" :query "tag:draft" :key "d" :sort-order newest-first)
(:name "all mail" :query "*" :key "a")) (:name "all mail" :query "*" :key "a" :sort-order newest-first))
notmuch-tagging-keys '(("a" notmuch-archive-tags "Archive") notmuch-tagging-keys '(("a" notmuch-archive-tags "Archive")
("u" notmuch-show-mark-read-tags "Mark read") ("u" notmuch-show-mark-read-tags "Mark read")
("f" ("+flagged") "Flag") ("f" ("+flagged") "Flag")