Compilation mode does a bunch of things that we don't want. Instead
of trying to tear it down to what we want, let's start at the other
end and build up only things that we really want.
(defun notmuch-search (query)
"Run \"notmuch search\" with the given query string and display results."
- (interactive "sNotmuch search:")
- (compilation-start (concat "notmuch search " query) 'notmuch-search-mode))
+ (interactive "sNotmuch search: ")
+ (start-process "notmuch-search" (concat "*notmuch-search-" query) "notmuch" "search" query))
(defun notmuch ()
"Run notmuch to display all mail with tag of 'inbox'"