mu4e-header-info: Fix indentation

This commit is contained in:
Jonas Bernoulli 2020-02-11 12:05:51 +01:00
parent 6790c0d015
commit 4c9be1d062
1 changed files with 109 additions and 109 deletions

View File

@ -741,115 +741,115 @@ mu4e-compose-mode."
;; headers info ;; headers info
(defconst mu4e-header-info (defconst mu4e-header-info
'( (:attachments '((:attachments
. ( :name "Attachments" . (:name "Attachments"
:shortname "Atts" :shortname "Atts"
:help "Message attachments" :help "Message attachments"
:require-full t :require-full t
:sortable nil)) :sortable nil))
(:bcc (:bcc
. ( :name "Bcc" . (:name "Bcc"
:shortname "Bcc" :shortname "Bcc"
:help "Blind Carbon-Copy recipients for the message" :help "Blind Carbon-Copy recipients for the message"
:sortable t)) :sortable t))
(:cc (:cc
. ( :name "Cc" . (:name "Cc"
:shortname "Cc" :shortname "Cc"
:help "Carbon-Copy recipients for the message" :help "Carbon-Copy recipients for the message"
:sortable t)) :sortable t))
(:date (:date
. ( :name "Date" . (:name "Date"
:shortname "Date" :shortname "Date"
:help "Date/time when the message was written" :help "Date/time when the message was written"
:sortable t)) :sortable t))
(:human-date . (:human-date
( :name "Date" . (:name "Date"
:shortname "Date" :shortname "Date"
:help "Date/time when the message was written." :help "Date/time when the message was written."
:sortable :date)) :sortable :date))
(:flags . (:flags
( :name "Flags" . (:name "Flags"
:shortname "Flgs" :shortname "Flgs"
:help "Flags for the message" :help "Flags for the message"
:sortable nil)) :sortable nil))
(:from . (:from
( :name "From" . (:name "From"
:shortname "From" :shortname "From"
:help "The sender of the message" :help "The sender of the message"
:sortable t)) :sortable t))
(:from-or-to . (:from-or-to
( :name "From/To" . (:name "From/To"
:shortname "From/To" :shortname "From/To"
:help "Sender of the message if it's not me; otherwise the recipient" :help "Sender of the message if it's not me; otherwise the recipient"
:sortable nil)) :sortable nil))
(:maildir . (:maildir
( :name "Maildir" . (:name "Maildir"
:shortname "Maildir" :shortname "Maildir"
:help "Maildir for this message" :help "Maildir for this message"
:sortable t)) :sortable t))
(:list . (:list
( :name "List-Id" . (:name "List-Id"
:shortname "List" :shortname "List"
:help "Mailing list id for this message" :help "Mailing list id for this message"
:sortable t)) :sortable t))
(:mailing-list . (:mailing-list
( :name "List" . (:name "List"
:shortname "List" :shortname "List"
:help "Mailing list friendly name for this message" :help "Mailing list friendly name for this message"
:sortable :list)) :sortable :list))
(:message-id . (:message-id
( :name "Message-Id" . (:name "Message-Id"
:shortname "MsgID" :shortname "MsgID"
:help "Message-Id for this message" :help "Message-Id for this message"
:sortable nil)) :sortable nil))
(:path . (:path
( :name "Path" . (:name "Path"
:shortname "Path" :shortname "Path"
:help "Full filesystem path to the message" :help "Full filesystem path to the message"
:sortable t)) :sortable t))
(:signature . (:signature
( :name "Signature" . (:name "Signature"
:shortname "Sgn" :shortname "Sgn"
:help "Check for the cryptographic signature" :help "Check for the cryptographic signature"
:require-full t :require-full t
:sortable nil)) :sortable nil))
(:decryption . (:decryption
( :name "Decryption" . (:name "Decryption"
:shortname "Dec" :shortname "Dec"
:help "Check the cryptographic decryption status" :help "Check the cryptographic decryption status"
:require-full t :require-full t
:sortable nil)) :sortable nil))
(:size . (:size
( :name "Size" . (:name "Size"
:shortname "Size" :shortname "Size"
:help "Size of the message" :help "Size of the message"
:sortable t)) :sortable t))
(:subject . (:subject
( :name "Subject" . (:name "Subject"
:shortname "Subject" :shortname "Subject"
:help "Subject of the message" :help "Subject of the message"
:sortable t)) :sortable t))
(:tags . (:tags
( :name "Tags" . (:name "Tags"
:shortname "Tags" :shortname "Tags"
:help "Tags for the message" :help "Tags for the message"
:sortable nil)) :sortable nil))
(:thread-subject . (:thread-subject
( :name "Subject" . (:name "Subject"
:shortname "Subject" :shortname "Subject"
:help "Subject of the thread" :help "Subject of the thread"
:sortable :subject)) :sortable :subject))
(:to . (:to
( :name "To" . (:name "To"
:shortname "To" :shortname "To"
:help "Recipient of the message" :help "Recipient of the message"
:sortable t)) :sortable t))
(:user-agent . (:user-agent
( :name "User-Agent" . (:name "User-Agent"
:shortname "UA" :shortname "UA"
:help "Program used for writing this message" :help "Program used for writing this message"
:require-full t :require-full t
:sortable t))) :sortable t)))
"An alist of all possible header fields and information about them. "An alist of all possible header fields and information about them.
This is used in the user-interface (the column headers in the header list, and This is used in the user-interface (the column headers in the header list, and
the fields the message view). the fields the message view).