From: Mark Walters Date: Mon, 19 Sep 2016 09:39:49 +0000 (+0100) Subject: emacs: tree: make jump close message pane X-Git-Tag: 0.23_rc0~6 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=7b2d7d65126b11ce08079b7cf235e1073fb1c22b emacs: tree: make jump close message pane j is in the global notmuch keymap bound to notmuch jump. In tree-mode it makes sense to close the message pane first (otherwise the new search runs in the small top pane of tree-mode). --- diff --git a/emacs/notmuch-tree.el b/emacs/notmuch-tree.el index d864e6dd..6e5797e9 100644 --- a/emacs/notmuch-tree.el +++ b/emacs/notmuch-tree.el @@ -241,6 +241,8 @@ FUNC." (define-key map [remap notmuch-search] 'notmuch-tree-to-search) ;; Override because we want to close message pane first. (define-key map [remap notmuch-mua-new-mail] (notmuch-tree-close-message-pane-and #'notmuch-mua-new-mail)) + ;; Override because we want to close message pane first. + (define-key map [remap notmuch-jump-search] (notmuch-tree-close-message-pane-and #'notmuch-jump-search)) (define-key map "S" 'notmuch-search-from-tree-current-query)