notmuch/notmuch-mode.el
Carl Worth 17a0b8a95f 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.
2009-10-30 15:05:53 -07:00

7 lines
204 B
EmacsLisp

; 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"))