mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-03 07:11:41 +01:00
17a0b8a95f
As expected, there's not much done here yet---it simply displays the output of "notmuch search" in a new window.
7 lines
204 B
EmacsLisp
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"))
|