summaryrefslogtreecommitdiff
path: root/helm-misc.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2012-11-29 11:45:29 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2012-11-29 11:45:29 +0100
commit3112ef215a23617e184506910215f48ce1eecd26 (patch)
tree3d14ef734240e1740df04c26d161122bd5f58cd3 /helm-misc.el
parente3a4109c9aa52a0011f1aec30d0ee6dc38571dfe (diff)
* helm-misc.el (helm-c-source-tracker-search, helm-c-source-mac-spotlight): Use candidates-process.
Diffstat (limited to 'helm-misc.el')
-rw-r--r--helm-misc.el11
1 files changed, 6 insertions, 5 deletions
diff --git a/helm-misc.el b/helm-misc.el
index 5a744eca..21bcd68f 100644
--- a/helm-misc.el
+++ b/helm-misc.el
@@ -68,10 +68,11 @@
;;; Tracker desktop search
(defvar helm-c-source-tracker-search
'((name . "Tracker Search")
- (candidates . (lambda ()
- (start-process "tracker-search-process" nil
- "tracker-search"
- helm-pattern)))
+ (candidates-process
+ . (lambda ()
+ (start-process "tracker-search-process" nil
+ "tracker-search"
+ helm-pattern)))
(type . file)
(requires-pattern . 3)
(delayed))
@@ -81,7 +82,7 @@ with the tracker desktop search.")
;;; Spotlight (MacOS X desktop search)
(defvar helm-c-source-mac-spotlight
'((name . "mdfind")
- (candidates
+ (candidates-process
. (lambda () (start-process "mdfind-process" nil "mdfind" helm-pattern)))
(type . file)
(requires-pattern . 3)