X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch-show.el;h=85e03e89052f864f30dda52badb1fdac1ec6c39e;hb=63b8a2b9af798dc9f47769e2a0c26bdb53ea16cd;hp=95874bb26bc1161d7a23dbf8363648aa5a8cb946;hpb=e6bc99f31ffc644fde059ab6fb31b3289c13c8f1;p=notmuch diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index 95874bb2..85e03e89 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -42,6 +42,11 @@ that if this order is changed the headers shown when a message is collapsed will change.") +(defcustom notmuch-show-headers-visible nil + "Should the headers be visible by default?" + :group 'notmuch + :type 'boolean) + (defvar notmuch-show-markup-headers-hook '(notmuch-show-colour-headers) "A list of functions called to decorate the headers listed in `notmuch-show-headers'.") @@ -416,8 +421,8 @@ current buffer, if possible." ;; the content). (notmuch-show-set-message-properties msg) - ;; Headers are hidden by default. - (notmuch-show-headers-visible msg nil) + ;; Set header visibility. + (notmuch-show-headers-visible msg notmuch-show-headers-visible) ;; Message visibility depends on whether it matched the search ;; criteria. @@ -526,7 +531,7 @@ function is used. " (define-key map "p" 'notmuch-show-previous-open-message) (define-key map (kbd "DEL") 'notmuch-show-rewind) (define-key map " " 'notmuch-show-advance-and-archive) - (define-key map (kbd "M-RET") 'notmuch-show-toggle-all) + (define-key map (kbd "M-RET") 'notmuch-show-open-or-close-all) (define-key map (kbd "RET") 'notmuch-show-toggle-message) map) "Keymap for \"notmuch show\" buffers.") @@ -907,10 +912,10 @@ to stdout or stderr will appear in the *Messages* buffer." (not (plist-get props :message-visible)))) (force-window-update)) -(defun notmuch-show-toggle-all () - "Change the visibility all of the messages in the current -thread. By default make all of the messages visible. With a -prefix argument, make them all not visible." +(defun notmuch-show-open-or-close-all () + "Set the visibility all of the messages in the current thread. +By default make all of the messages visible. With a prefix +argument, hide all of the messages." (interactive) (save-excursion (goto-char (point-min))