mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 17:34:54 +01:00
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.
This commit is contained in:
parent
f365024166
commit
17a0b8a95f
1 changed files with 7 additions and 0 deletions
7
notmuch-mode.el
Normal file
7
notmuch-mode.el
Normal file
|
@ -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"))
|
Loading…
Reference in a new issue