On Jan 27, 2010, at 12:22 AM, David A. Gershman wrote:


When I refile a heading, there is a variable that can be set to send the
refiled headings to the front or back of the destination list.

Is there a way to do that "on demand", i.e. without setting a variable?

No. But you could make you own command which uses `let' to bind the variable and then call org-refile

(defun my-refile-reversed ()
"Call `org-refile', temporary changing the value of `org-reverse- note-order'."
   (interactive)
   (let ((org-reverse-note-order (not org-reverse-note-order)))
      (call-interactively 'org-refile)))

- Carsten


Thanks!

----------------------------------------
David A. Gershman
gersh...@dagertech.net
http://dagertech.net/gershman/
"It's all about the path!" --d. gershman


_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

- Carsten





_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to