2009-11-29 00:30:43 +01:00
|
|
|
;; -*-emacs-lisp-*-
|
|
|
|
;;
|
|
|
|
;; Emacs startup file, e.g. /etc/emacs/site-start.d/50notmuch.el
|
2009-11-29 14:48:46 +01:00
|
|
|
;; for the Debian notmuch package
|
2009-11-29 00:30:43 +01:00
|
|
|
|
2009-11-29 14:48:46 +01:00
|
|
|
;; The notmuch package follows the Debian/GNU Linux 'emacsen' policy and
|
2009-11-29 00:30:43 +01:00
|
|
|
;; byte-compiles its elisp files for each 'emacs flavor' (emacs19,
|
|
|
|
;; xemacs19, emacs20, xemacs20...). The compiled code is then
|
|
|
|
;; installed in a subdirectory of the respective site-lisp directory.
|
2009-11-29 14:48:46 +01:00
|
|
|
|
2009-12-24 03:23:19 +01:00
|
|
|
(cond
|
|
|
|
((not (file-exists-p "/usr/share/emacs/site-lisp/notmuch"))
|
|
|
|
(message "Package notmuch removed but not purged. Skipping setup."))
|
|
|
|
((not (file-exists-p (concat "/usr/share/"
|
|
|
|
(symbol-name debian-emacs-flavor)
|
|
|
|
"/site-lisp/notmuch")))
|
|
|
|
(message "Package notmuch not fully installed. Skipping setup."))
|
|
|
|
(t
|
2009-11-29 14:48:46 +01:00
|
|
|
(debian-pkg-add-load-path-item
|
2009-12-24 03:23:19 +01:00
|
|
|
(concat "/usr/share/"
|
|
|
|
(symbol-name debian-emacs-flavor)
|
|
|
|
"/site-lisp/notmuch"))
|
2010-10-30 00:28:18 +02:00
|
|
|
(autoload 'notmuch "notmuch" "Run notmuch and display saved searches, known tags, etc." t)
|
|
|
|
(autoload 'notmuch-hello "notmuch" "Run notmuch and display saved searches, known tags, etc." t)
|
|
|
|
(autoload 'notmuch-search "notmuch" "Run \"notmuch search\" with the given query string and display results." t)
|
|
|
|
(autoload 'notmuch-show "notmuch" "Run \"notmuch show\" with the given thread ID and display results." t)
|
|
|
|
|
2009-12-24 03:23:19 +01:00
|
|
|
))
|