From: William Casarin Date: Wed, 13 Nov 2019 22:57:52 +0000 (-0800) Subject: emacs: bind M-RET to notmuch-tree-from-search-thread X-Git-Tag: archive/debian/0.30_rc0-1~130 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=5f9ea4d2908a597acaf0b809b6f27fa74b70520b emacs: bind M-RET to notmuch-tree-from-search-thread This is an unbound function that is quite useful. It opens a selected thread in notmuch-tree from the current search query. Signed-off-by: William Casarin --- diff --git a/emacs/notmuch.el b/emacs/notmuch.el index 773d1206..0d68d123 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -188,6 +188,7 @@ there will be called at other points of notmuch execution." (define-key map "-" 'notmuch-search-remove-tag) (define-key map "+" 'notmuch-search-add-tag) (define-key map (kbd "RET") 'notmuch-search-show-thread) + (define-key map (kbd "M-RET") 'notmuch-tree-from-search-thread) (define-key map "Z" 'notmuch-tree-from-search-current-query) map) "Keymap for \"notmuch search\" buffers.")