]> git.notmuchmail.org Git - notmuch/commitdiff
INSTALL/notmuch.el: More details on how to install/run notmuch.el
authorCarl Worth <cworth@cworth.org>
Sat, 21 Nov 2009 20:40:57 +0000 (21:40 +0100)
committerCarl Worth <cworth@cworth.org>
Sat, 21 Nov 2009 20:40:57 +0000 (21:40 +0100)
Hopefully this will save some people some head-scratching trying
to figure out how to use it.

INSTALL
notmuch.el

diff --git a/INSTALL b/INSTALL
index 64b8e362cc335f277ed2400e63bd37b898be9e3e..c0b67a319642a41e2ec9b86009a60745cfe71598 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -20,7 +20,9 @@ Installing the notmuch.el emacs lisp function systemwide:
 
        sudo make install-emacs
 
-Each user needs to add (require 'notmuch) in his ~/.emacs to activate it.
+Each user needs to add (require 'notmuch) in his ~/.emacs to make it
+available and then start emacs running notmuch with "emacs -f notmuch"
+or start notmuch from within emacs with "M-x notmuch".
 
 Dependencies
 ------------
index cd3780fae8acadd59a3a52514ac52817e16918bb..0144b612668261b1e9641cef0eb0cac3ba7a84fc 100644 (file)
 ;
 ; Authors: Carl Worth <cworth@cworth.org>
 
+; This is an emacs-based interface to the notmuch mail system.
+;
+; You will first need to have the notmuch program installed and have a
+; notmuch database built in order to use this. See
+; http://notmuchmail.org for details.
+;
+; To install this software, copy it to a directory that is on the
+; `load-path' variable within emacs (a good candidate is
+; /usr/local/share/emacs/site-lisp). If you are viewing this from the
+; notmuch source distribution then you can simply run:
+;
+;      sudo make install-emacs
+;
+; to install it.
+;
+; Then, to actually run it, add:
+;
+;      (require 'notmuch)
+;
+; to your ~/.emacs file, and then run "M-x notmuch" from within emacs,
+; or run:
+;
+;      emacs -f notmuch
+;
+; Have fun, and let us know if you have any comment, questions, or
+; kudos: Notmuch list <notmuch@notmuchmail.org> (subscription is not
+; required, but is available from http://notmuchmail.org).
+
 (require 'cl)
 (require 'mm-view)