From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: headline navigation and refiling. Date: Wed, 5 Oct 2011 16:31:52 +0200 Message-ID: <01F8350A-FF5A-4273-8BE2-3AD58AD0DB45@gmail.com> References: Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:38671) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RBSVr-00047B-9o for emacs-orgmode@gnu.org; Wed, 05 Oct 2011 10:32:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RBSVq-0006wM-3D for emacs-orgmode@gnu.org; Wed, 05 Oct 2011 10:31:59 -0400 Received: from mail-ey0-f169.google.com ([209.85.215.169]:49723) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RBSVp-0006w2-RR for emacs-orgmode@gnu.org; Wed, 05 Oct 2011 10:31:58 -0400 Received: by eye13 with SMTP id 13so1931469eye.0 for ; Wed, 05 Oct 2011 07:31:56 -0700 (PDT) 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: Le Wang Cc: Orgmode Mailing List On 5.10.2011, at 12:05, Le Wang wrote: > Hi all, >=20 > I like using the org-refile interface to navigate. It's very > intuitive to me. But I want to navigate to headlines deeper than my > org-refile-target :max-level. Is there anything to do other than > rolling my own? I can see wouldn't be hard. You can write a little wrapper and set a special value for the refile = targets: (defun my-goto-with-refile () (interactive) (let ((org-refile-targets '((nil . (:maxlevel . 10))))) (org-refile t))) >=20 > It feels headline navigation was just bolted onto org-refile. THis is how this happened, historically. > Should they really be the same command? Why not? - Carsten >=20 > --=20 > Le >=20