From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Stefan-W. Hahn" Subject: Re: refiling with helm Date: Sun, 1 Mar 2015 09:13:26 +0100 Message-ID: <20150301081326.GD22486@pille.home> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47012) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRz0I-0004yI-7x for emacs-orgmode@gnu.org; Sun, 01 Mar 2015 03:13:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YRz0D-0004bK-4w for emacs-orgmode@gnu.org; Sun, 01 Mar 2015 03:13:34 -0500 Received: from mout.kundenserver.de ([212.227.17.24]:62655) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRz0C-0004bA-TF for emacs-orgmode@gnu.org; Sun, 01 Mar 2015 03:13:29 -0500 Content-Disposition: inline In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Xebar Saram Cc: org mode 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.