aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/notmuch.el
diff options
context:
space:
mode:
authorGravatar Austin Clements <amdragon@MIT.EDU>2013-09-03 17:45:24 -0400
committerGravatar David Bremner <bremner@debian.org>2013-09-10 08:07:28 -0300
commitc52fee6bcb3565ce19801b86d83d5783e48df320 (patch)
treeede2d8543995a816937e9bdf5bfa4abf6362e675 /emacs/notmuch.el
parent69c52c56f2a7defe03e8e5e2ab470a7eeb4c55fb (diff)
emacs: Define a common shared keymap for all of notmuch
This defines a single, currently empty keymap that all other notmuch mode maps inherit from.
Diffstat (limited to 'emacs/notmuch.el')
-rw-r--r--emacs/notmuch.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/notmuch.el b/emacs/notmuch.el
index 03040964..e098bd7b 100644
--- a/emacs/notmuch.el
+++ b/emacs/notmuch.el
@@ -198,6 +198,7 @@ first line of documentation for the bound function."
(defvar notmuch-search-mode-map
(let ((map (make-sparse-keymap)))
+ (set-keymap-parent map notmuch-common-keymap)
(define-key map "?" 'notmuch-help)
(define-key map "q" 'notmuch-kill-this-buffer)
(define-key map "x" 'notmuch-kill-this-buffer)