mu4e: remove reference to mu4e-headers-new-thread-style

The docs for the prefix variables mention the variable
"mu4e-headers-new-thread-style" that was removed on a previous
iteration.
This commit is contained in:
Marcelo Henrique Cerri 2018-05-02 23:04:50 -03:00
parent 35951da4b5
commit d8ca5a3d7b
1 changed files with 6 additions and 18 deletions

View File

@ -233,38 +233,26 @@ one of: `:date', `:subject', `:size', `:prio', `:from', `:to.',
;; thread prefix marks
(defvar mu4e-headers-thread-child-prefix '("├>" . "┣▶ ")
"Prefix for messages in sub threads that do have a following sibling.
This variable is only used when mu4e-headers-new-thread-style is non-nil.")
"Prefix for messages in sub threads that do have a following sibling.")
(defvar mu4e-headers-thread-last-child-prefix '("└>" . "┗▶ ")
"Prefix for messages in sub threads that do not have a following sibling.
This variable is only used when mu4e-headers-new-thread-style is non-nil.")
"Prefix for messages in sub threads that do not have a following sibling.")
(defvar mu4e-headers-thread-connection-prefix '("" . "")
"Prefix to connect sibling messages that do not follow each other.
This prefix should have the same length as `mu4e-headers-thread-blank-prefix'.
This variable is only used when mu4e-headers-new-thread-style is non-nil.")
This prefix should have the same length as `mu4e-headers-thread-blank-prefix'.")
(defvar mu4e-headers-thread-blank-prefix '(" " . " ")
"Prefix to separate non connected messages.
This prefix should have the same length as `mu4e-headers-thread-connection-prefix'.
This variable is only used when mu4e-headers-new-thread-style is non-nil.")
This prefix should have the same length as `mu4e-headers-thread-connection-prefix'.")
(defvar mu4e-headers-thread-orphan-prefix '("" . "")
"Prefix for orphan messages.
This variable is only used when mu4e-headers-new-thread-style is non-nil.")
"Prefix for orphan messages.")
(defvar mu4e-headers-thread-duplicate-prefix '("=" . "")
"Prefix for duplicate messages.
This variable is only used when mu4e-headers-new-thread-style is non-nil.")
"Prefix for duplicate messages.")
(defvar mu4e-headers-actions
'( ("capture message" . mu4e-action-capture-message)