X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch.el;h=060af8eb0a361a613b92cf354c37589f1e86115b;hb=dc13fcbf8755506b2681ef3c44da98737ddab8e8;hp=463b9262212ecad69b7cff10420359b3c071888d;hpb=9a5143abbcfbb008f846329b5c50b9322af5322a;p=notmuch diff --git a/emacs/notmuch.el b/emacs/notmuch.el index 463b9262..060af8eb 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -162,7 +162,7 @@ there will be called at other points of notmuch execution." (define-key map "o" 'notmuch-search-toggle-order) (define-key map "c" 'notmuch-search-stash-map) (define-key map "t" 'notmuch-search-filter-by-tag) - (define-key map "f" 'notmuch-search-filter) + (define-key map "l" 'notmuch-search-filter) (define-key map [mouse-1] 'notmuch-search-show-thread) (define-key map "*" 'notmuch-search-tag-all) (define-key map "a" 'notmuch-search-archive-thread) @@ -458,7 +458,11 @@ no messages in the region then return nil." (notmuch-search-properties-in-region :subject beg end)) (defun notmuch-search-show-thread (&optional elide-toggle) - "Display the currently selected thread." + "Display the currently selected thread. + +With a prefix argument, invert the default value of +`notmuch-show-only-matching-messages' when displaying the +thread." (interactive "P") (let ((thread-id (notmuch-search-find-thread-id)) (subject (notmuch-search-find-subject))) @@ -988,7 +992,7 @@ Enclose QUERY-STRING in parentheses if it matches query-string)) (defun notmuch-search-filter (query) - "Filter the current search results based on an additional query string. + "Filter or LIMIT the current search results based on an additional query string. Runs a new search matching only messages that match both the current search results AND the additional query string provided."