The following patch adds a mode-hook to notmuch-hello-mode. Not much else to say, really. Would people find hooks for before and/or after adding the tags useful? Or hooks elsewhere in this mode (or other modes)? iff Signed-off-by: Ivy Foster <joyfulgirl@archlinux.us> >From e8cdead0222fc85dd01d8a0185b54aed5e0a6e1e Mon Sep 17 00:00:00 2001 From: Ivy Foster <joyfulgirl@archlinux.us> Date: Fri, 28 Oct 2011 23:47:16 -0400 Subject: [PATCH 3/3] Added notmuch-hello-mode-hook --- emacs/notmuch-hello.el | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el index 1a213f0..13356c5 100644 --- a/emacs/notmuch-hello.el +++ b/emacs/notmuch-hello.el @@ -118,6 +118,11 @@ Typically \",\" in the US and UK and \".\" in Europe." :group 'notmuch :type 'string) +(defcustom notmuch-hello-mode-hook nil + "Functions called after entering `notmuch-hello-mode'." + :group 'notmuch + :type 'hook) + (defvar notmuch-hello-url "http://notmuchmail.org" "The `notmuch' web site.") @@ -337,6 +342,7 @@ Complete list of currently available key bindings: (use-local-map notmuch-hello-mode-map) (setq major-mode 'notmuch-hello-mode mode-name "notmuch-hello") + (run-mode-hooks 'notmuch-hello-mode-hook) ;;(setq buffer-read-only t) ) -- 1.7.7.1