Mail von Xebar Saram, Sat, 28 Feb 2015 at 08:19:17 +0200:
Hello,
> I was wondering if anyone uses helm for refiling org capture data. and if
> so can anyone share his methods/setup?
I switched from ido to helm around last christmas and it is hard to retrain
my fingers and habbits...
Here is, what I'm doing with refiling with helm:
#+BEGIN_SRC elisp
(defun helm-refile-completing-read (orig-func prompt collection &optional
predicate require-match
initial-input hist def
inherit-input-method)
"Completing function for org-refile"
(helm-completing-read-default-1
prompt collection predicate require-match
initial-input hist def inherit-input-method
"org-refile" nil t)
)
(advice-add 'org-olpath-completing-read :around #'helm-refile-completing-read)
#+END_SRC
With kind regards,
Stefan
--
Stefan-W. Hahn It is easy to make things.
It is hard to make things simple.