aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/notmuch-tree.el
diff options
context:
space:
mode:
authorGravatar Mark Walters <markwalters1009@gmail.com>2013-11-01 09:23:45 +0000
committerGravatar David Bremner <david@tethera.net>2013-11-07 08:01:22 -0400
commit3cf926463e654b0d9c968e80c82e6f0f8e101aa9 (patch)
treeca1807182329c83fa5f6dbf905d7c659cc45bb70 /emacs/notmuch-tree.el
parent31d81f7fddfd262f0fe37ca32cace3827ab03cd7 (diff)
emacs: move the show entry to tree into show.el
Move the keybinding and show specific helper from tree.el to show.el
Diffstat (limited to 'emacs/notmuch-tree.el')
-rw-r--r--emacs/notmuch-tree.el12
1 files changed, 1 insertions, 11 deletions
diff --git a/emacs/notmuch-tree.el b/emacs/notmuch-tree.el
index c66dd350..f13b41f5 100644
--- a/emacs/notmuch-tree.el
+++ b/emacs/notmuch-tree.el
@@ -404,15 +404,6 @@ Does NOT change the database."
(notmuch-tree-close-message-window)
(notmuch-tree query)))
-;; This function should be in notmuch-show.el but be we trying to
-;; minimise impact on the rest of the codebase.
-(defun notmuch-tree-from-show-current-query ()
- "Call notmuch tree with the current query"
- (interactive)
- (notmuch-tree notmuch-show-thread-id
- notmuch-show-query-context
- (notmuch-show-get-message-id)))
-
(defun notmuch-tree-message-window-kill-hook ()
"Close the message pane when exiting the show buffer."
(let ((buffer (current-buffer)))
@@ -918,7 +909,6 @@ The arguments are:
(setq truncate-lines t))
-;; Set up key bindings from the rest of notmuch.
-(define-key notmuch-show-mode-map "Z" 'notmuch-tree-from-show-current-query)
+;;
(provide 'notmuch-tree)