From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: org-refile Date: Mon, 17 Dec 2007 17:42:58 +0100 Message-ID: <688EB6F7-3B5B-44B7-B60C-01D10922DE70@gmail.com> References: Mime-Version: 1.0 (Apple Message framework v915) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J4KMr-0002a0-Jz for emacs-orgmode@gnu.org; Mon, 17 Dec 2007 13:07:05 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J4KMn-0002Zc-LT for emacs-orgmode@gnu.org; Mon, 17 Dec 2007 13:07:04 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J4KMn-0002ZZ-G4 for emacs-orgmode@gnu.org; Mon, 17 Dec 2007 13:07:01 -0500 Received: from mu-out-0910.google.com ([209.85.134.189]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J4KMm-0004Fm-5t for emacs-orgmode@gnu.org; Mon, 17 Dec 2007 13:07:01 -0500 Received: by mu-out-0910.google.com with SMTP id i2so4044217mue.2 for ; Mon, 17 Dec 2007 10:06:58 -0800 (PST) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: "Jose A. Ortega Ruiz" Cc: emacs-orgmode@gnu.org Hi Jose, On Dec 2, 2007, at 9:19 PM, Jose A. Ortega Ruiz wrote: > > Hi. > > I'm very happy with the new org-refile, but the current way of > specifying the target node is, IMHO, not as convenient as it could be. > For instance, if i specify levels up to, say, 2 as targets, and have > duplicated headlines at said level: > > * Project A > ** Tasks > ** Resources > * Project B > ** Tasks > ** Resources > > the completion shows only the first occurrence of 'Tasks' and > 'Resources'. What i do now is giving them different names, but it's a > bit artificial: > > * Project A > ** Project A tasks > ** Project A resources > * Project B > ** Project B tasks > ** Project B resources > > For situations like this one, it would help a lot having the option of > interactively selecting the target node in the same way as one selects > it after invoking org-remember. A second option would be to have > completion for all headlines in a hierarchical way, navigating the > outline tree at the mini-buffer prompt as if one where navigating a > file tree after C-xC-f. Finally, a (quick?) workaround would be to > show the target names as 'full-paths', e.g. Project A/Tasks, Project > B/Tasks in the first example above. In 5.17, you will be able to do this: (setq org-refile-use-outline-path t) The refile targets will then be represented by "/"-separated paths just like you suggested. Thanks. - Carsten