]> git.notmuchmail.org Git - notmuch/blob - notmuch-mode.el
eec920446371b518719469669efa534f204a3d9b
[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"))