]> git.notmuchmail.org Git - notmuch/blob - notmuch-mode.el
The very beginnings of an emacs mode for notmuch in notmuch-mode.el.
[notmuch] / notmuch-mode.el
1 ; A mode for running notmuch within emacs
2
3 (defun notmuch ()
4   "Run notmuch to display all mail with tag of 'inbox'"
5   (interactive)
6   (require 'compile)
7   (compilation-start "notmuch search tag:inbox"))