From 17a0b8a95f3d041dd39199d3853b03f7b9fce727 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Fri, 30 Oct 2009 15:05:53 -0700 Subject: [PATCH] The very beginnings of an emacs mode for notmuch in notmuch-mode.el. As expected, there's not much done here yet---it simply displays the output of "notmuch search" in a new window. --- notmuch-mode.el | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 notmuch-mode.el diff --git a/notmuch-mode.el b/notmuch-mode.el new file mode 100644 index 00000000..eec92044 --- /dev/null +++ b/notmuch-mode.el @@ -0,0 +1,7 @@ +; A mode for running notmuch within emacs + +(defun notmuch () + "Run notmuch to display all mail with tag of 'inbox'" + (interactive) + (require 'compile) + (compilation-start "notmuch search tag:inbox")) -- 2.43.0