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
|
@cartouche
|
||||||
@verbatim
|
@verbatim
|
||||||
* mu4e - mu for emacs version xx.xx CG
|
* mu4e - mu for emacs version 0.X.X CG
|
||||||
|
|
||||||
Basics
|
Basics
|
||||||
|
|
||||||
@ -660,13 +660,12 @@ Misc
|
|||||||
|
|
||||||
* [;]Switch focus
|
* [;]Switch focus
|
||||||
* [U]pdate email & database
|
* [U]pdate email & database
|
||||||
* toggle [m]ail sending mode (currently direct)
|
|
||||||
* [f]lush 5 queued mails
|
|
||||||
|
|
||||||
* [N]ews
|
* [N]ews
|
||||||
* [A]bout mu4e
|
* [A]bout mu4e
|
||||||
* [H]elp
|
* [H]elp
|
||||||
* [q]uit
|
* [q]uit
|
||||||
|
|
||||||
@end verbatim
|
@end verbatim
|
||||||
@end cartouche
|
@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
|
( :name "Number of recipients" ;; long name, as seen in the message-view
|
||||||
:shortname "Recip#" ;; short name, as seen in the headers view
|
:shortname "Recip#" ;; short name, as seen in the headers view
|
||||||
:help "Number of recipients for this message" ;; tooltip
|
:help "Number of recipients for this message" ;; tooltip
|
||||||
:function
|
:function (lambda (msg)
|
||||||
(lambda (msg)
|
|
||||||
(format "%d"
|
(format "%d"
|
||||||
(+ (length (mu4e-message-field msg :to))
|
(+ (length (mu4e-message-field msg :to))
|
||||||
(length (mu4e-message-field msg :cc))))))))
|
(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
|
( :name "Mailing-list" ;; long name, as seen in the message-view
|
||||||
:shortname "ML" ;; short name, as seen in the headers view
|
:shortname "ML" ;; short name, as seen in the headers view
|
||||||
:help "Full name for mailing list" ;; tooltip
|
:help "Full name for mailing list" ;; tooltip
|
||||||
:function
|
:function (lambda (msg)
|
||||||
(lambda (msg)
|
|
||||||
(or (mu4e-message-field msg :mailing-list) "")))))
|
(or (mu4e-message-field msg :mailing-list) "")))))
|
||||||
@end lisp
|
@end lisp
|
||||||
|
|
||||||
@ -1869,6 +1866,7 @@ first.
|
|||||||
instructive:
|
instructive:
|
||||||
|
|
||||||
@lisp
|
@lisp
|
||||||
|
|
||||||
(defvar mu4e-bookmarks
|
(defvar mu4e-bookmarks
|
||||||
'( ("flag:unread AND NOT flag:trashed" "Unread messages" ?u)
|
'( ("flag:unread AND NOT flag:trashed" "Unread messages" ?u)
|
||||||
("date:today..now" "Today's messages" ?t)
|
("date:today..now" "Today's messages" ?t)
|
||||||
@ -1912,7 +1910,6 @@ inbox:
|
|||||||
"Inbox messages in the last 7 days" ?W) t)
|
"Inbox messages in the last 7 days" ?W) t)
|
||||||
@end lisp
|
@end lisp
|
||||||
|
|
||||||
|
|
||||||
@subsection Editing bookmarks before searching
|
@subsection Editing bookmarks before searching
|
||||||
|
|
||||||
There is also @kbd{M-x mu4e-headers-search-bookmark-edit} (key @key{B}), which
|
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
|
@code{mu4e-headers-include-related} to @code{t}, and you can toggle between
|
||||||
including/not-including with @key{W}.
|
including/not-including with @key{W}.
|
||||||
|
|
||||||
Be careful though when e.g. deleting ranges of messages from a certain folder
|
Be careful though when e.g. deleting ranges of messages from a certain
|
||||||
-- the list may now also include messages from @emph{other} folders.
|
folder -- the list may now also include messages from @emph{other}
|
||||||
|
folders.
|
||||||
|
|
||||||
@subsection Skipping duplicates
|
@subsection Skipping duplicates
|
||||||
@anchor{Skipping duplicates}
|
@anchor{Skipping duplicates}
|
||||||
@ -2497,7 +2495,7 @@ folders:
|
|||||||
mu4e-sent-folder "/sent" ;; sent messages
|
mu4e-sent-folder "/sent" ;; sent messages
|
||||||
mu4e-drafts-folder "/drafts" ;; unfinished messages
|
mu4e-drafts-folder "/drafts" ;; unfinished messages
|
||||||
mu4e-trash-folder "/trash" ;; trashed messages
|
mu4e-trash-folder "/trash" ;; trashed messages
|
||||||
mu4e-refile-folder "/archive") ;; saved messages
|
mu4e-refile-folder "/archive") ;; saved messages01
|
||||||
@end lisp
|
@end lisp
|
||||||
|
|
||||||
In some cases, having such static folders may not suffice - perhaps you want
|
In some cases, having such static folders may not suffice - perhaps you want
|
||||||
|
|||||||
Reference in New Issue
Block a user