Merge pull request #1146 from mekeor/master

mu4e: fix bug preventing mu4e-headers-change-sorting to sort by list
This commit is contained in:
Dirk-Jan C. Binnema
2017-11-02 08:10:32 +02:00
committed by GitHub

View File

@ -208,7 +208,7 @@ but also manually invoked searches."
(defvar mu4e-headers-sort-field :date (defvar mu4e-headers-sort-field :date
"Field to sort the headers by. Must be a symbol, "Field to sort the headers by. Must be a symbol,
one of: `:date', `:subject', `:size', `:prio', `:from', `:to.', one of: `:date', `:subject', `:size', `:prio', `:from', `:to.',
`:list-id'") `:list'")
(defvar mu4e-headers-sort-direction 'descending (defvar mu4e-headers-sort-direction 'descending
"Direction to sort by; a symbol either `descending' (sorting "Direction to sort by; a symbol either `descending' (sorting
@ -291,7 +291,7 @@ followed by the docid, followed by `mu4e~headers-docid-post'.")
(defvar mu4e~headers-sort-field-choices (defvar mu4e~headers-sort-field-choices
'( ("date" . :date) '( ("date" . :date)
("from" . :from) ("from" . :from)
("list" . :list-id) ("list" . :list)
("maildir" . :maildir) ("maildir" . :maildir)
("prio" . :prio) ("prio" . :prio)
("zsize" . :size) ("zsize" . :size)