On 5.10.2011, at 12:05, Le Wang wrote:

> Hi all,
> 
> 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)))


> 
> 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



> 
> -- 
> Le
> 


Reply via email to