mu4e: fix indentation in doc
The previous doc changes somehow broke indentation in figures, lisp. This fixes it again. Fixes #762
This commit is contained in:
@ -637,7 +637,7 @@ The main view looks something like the following:
|
||||
|
||||
@cartouche
|
||||
@verbatim
|
||||
* mu4e - mu for emacs version xx.xx CG
|
||||
* mu4e - mu for emacs version 0.X.X CG
|
||||
|
||||
Basics
|
||||
|
||||
@ -660,13 +660,12 @@ Misc
|
||||
|
||||
* [;]Switch focus
|
||||
* [U]pdate email & database
|
||||
* toggle [m]ail sending mode (currently direct)
|
||||
* [f]lush 5 queued mails
|
||||
|
||||
* [N]ews
|
||||
* [A]bout mu4e
|
||||
* [H]elp
|
||||
* [q]uit
|
||||
|
||||
@end verbatim
|
||||
@end cartouche
|
||||
|
||||
@ -966,8 +965,7 @@ takes a message-plist as its argument (@ref{Message functions}).
|
||||
( :name "Number of recipients" ;; long name, as seen in the message-view
|
||||
:shortname "Recip#" ;; short name, as seen in the headers view
|
||||
:help "Number of recipients for this message" ;; tooltip
|
||||
:function
|
||||
(lambda (msg)
|
||||
:function (lambda (msg)
|
||||
(format "%d"
|
||||
(+ (length (mu4e-message-field msg :to))
|
||||
(length (mu4e-message-field msg :cc))))))))
|
||||
@ -980,8 +978,7 @@ Or, let's get the full mailing-list name:
|
||||
( :name "Mailing-list" ;; long name, as seen in the message-view
|
||||
:shortname "ML" ;; short name, as seen in the headers view
|
||||
:help "Full name for mailing list" ;; tooltip
|
||||
:function
|
||||
(lambda (msg)
|
||||
:function (lambda (msg)
|
||||
(or (mu4e-message-field msg :mailing-list) "")))))
|
||||
@end lisp
|
||||
|
||||
@ -1869,6 +1866,7 @@ first.
|
||||
instructive:
|
||||
|
||||
@lisp
|
||||
|
||||
(defvar mu4e-bookmarks
|
||||
'( ("flag:unread AND NOT flag:trashed" "Unread messages" ?u)
|
||||
("date:today..now" "Today's messages" ?t)
|
||||
@ -1912,7 +1910,6 @@ inbox:
|
||||
"Inbox messages in the last 7 days" ?W) t)
|
||||
@end lisp
|
||||
|
||||
|
||||
@subsection Editing bookmarks before searching
|
||||
|
||||
There is also @kbd{M-x mu4e-headers-search-bookmark-edit} (key @key{B}), which
|
||||
@ -2016,8 +2013,9 @@ results, just like e.g. Gmail does it. You can enable this behavior by setting
|
||||
@code{mu4e-headers-include-related} to @code{t}, and you can toggle between
|
||||
including/not-including with @key{W}.
|
||||
|
||||
Be careful though when e.g. deleting ranges of messages from a certain folder
|
||||
-- the list may now also include messages from @emph{other} folders.
|
||||
Be careful though when e.g. deleting ranges of messages from a certain
|
||||
folder -- the list may now also include messages from @emph{other}
|
||||
folders.
|
||||
|
||||
@subsection Skipping duplicates
|
||||
@anchor{Skipping duplicates}
|
||||
@ -2497,7 +2495,7 @@ folders:
|
||||
mu4e-sent-folder "/sent" ;; sent messages
|
||||
mu4e-drafts-folder "/drafts" ;; unfinished messages
|
||||
mu4e-trash-folder "/trash" ;; trashed messages
|
||||
mu4e-refile-folder "/archive") ;; saved messages
|
||||
mu4e-refile-folder "/archive") ;; saved messages01
|
||||
@end lisp
|
||||
|
||||
In some cases, having such static folders may not suffice - perhaps you want
|
||||
|
||||
Reference in New Issue
Block a user