emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] Re: Org refile within current buffer?


From: Bernt Hansen
Subject: [Orgmode] Re: Org refile within current buffer?
Date: Thu, 11 Mar 2010 19:36:22 -0500
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux)

Ryan Thompson <address@hidden> writes:

> Is there an org-mode command to refile only within the current buffer?

Not natively unless you want to make that a global change.  You could
easily create a function that does that though I think.  Just bind that
to your favourite key sequence or use M-x my-refile

(defun my-refile ()
  (interactive)
  (let ((org-refile-targets '((nil :maxlevel . 5))))
    (org-refile)))

HTH,
Bernt




reply via email to

[Prev in Thread] Current Thread [Next in Thread]