mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: Add `notmuch-show-only-matching-messages'.
Allow the user to choose that only matching messages are shown by default.
This commit is contained in:
parent
d268422884
commit
866ce8b132
1 changed files with 8 additions and 0 deletions
|
@ -126,6 +126,11 @@ indentation."
|
|||
(const :tag "View interactively"
|
||||
notmuch-show-interactively-view-part)))
|
||||
|
||||
(defcustom notmuch-show-only-matching-messages nil
|
||||
"Only matching messages are shown by default."
|
||||
:type 'boolean
|
||||
:group 'notmuch-show)
|
||||
|
||||
(defvar notmuch-show-thread-id nil)
|
||||
(make-variable-buffer-local 'notmuch-show-thread-id)
|
||||
(put 'notmuch-show-thread-id 'permanent-local t)
|
||||
|
@ -1032,6 +1037,9 @@ function is used."
|
|||
;; Set the default value for `notmuch-show-process-crypto' in this
|
||||
;; buffer.
|
||||
(setq notmuch-show-process-crypto notmuch-crypto-process-mime)
|
||||
;; Set the default value for
|
||||
;; `notmuch-show-elide-non-matching-messages' in this buffer.
|
||||
(setq notmuch-show-elide-non-matching-messages notmuch-show-only-matching-messages)
|
||||
|
||||
(setq notmuch-show-thread-id thread-id
|
||||
notmuch-show-parent-buffer parent-buffer
|
||||
|
|
Loading…
Reference in a new issue