mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: Add custom `notmuch-show-elide-same-subject'
This controls the appearance of collapsed messages in notmuch-show mode, avoiding redundancy for repeated subject). Remove `notmuch-show-always-show-subject'. Signed-off-by: Jameson Rollins <jrollins@finestructure.net>
This commit is contained in:
parent
8ab4336074
commit
4f04d2734f
1 changed files with 9 additions and 3 deletions
|
@ -64,6 +64,12 @@ any given message."
|
|||
:group 'notmuch
|
||||
:type 'boolean)
|
||||
|
||||
(defcustom notmuch-show-elide-same-subject nil
|
||||
"Do not show the subject of a collapsed message if it is the
|
||||
same as that of the previous message."
|
||||
:group 'notmuch
|
||||
:type 'boolean)
|
||||
|
||||
(defcustom notmuch-show-always-show-subject t
|
||||
"Should a collapsed message show the `Subject:' line?"
|
||||
:group 'notmuch
|
||||
|
@ -626,9 +632,9 @@ current buffer, if possible."
|
|||
;; If the subject of this message is the same as that of the
|
||||
;; previous message, don't display it when this message is
|
||||
;; collapsed.
|
||||
(when (or notmuch-show-always-show-subject
|
||||
(not (string= notmuch-show-previous-subject
|
||||
bare-subject)))
|
||||
(when (and notmuch-show-elide-same-subject
|
||||
(not (string= notmuch-show-previous-subject
|
||||
bare-subject)))
|
||||
(forward-line 1))
|
||||
(setq headers-start (point-marker)))
|
||||
(setq headers-end (point-marker))
|
||||
|
|
Loading…
Reference in a new issue