Function: org-refile-reverse
org-refile-reverse is an autoloaded, interactive and byte-compiled
function defined in org-refile.el.gz.
Signature
(org-refile-reverse &optional ARG DEFAULT-BUFFER RFLOC MSG)
Documentation
Refile while temporarily toggling org-reverse-note-order.
So if org-refile would append the entry as the last entry under
the target heading, org-refile-reverse will prepend it as the
first entry, and vice-versa.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-refile.el.gz
;;;###autoload
(defun org-refile-reverse (&optional arg default-buffer rfloc msg)
"Refile while temporarily toggling `org-reverse-note-order'.
So if `org-refile' would append the entry as the last entry under
the target heading, `org-refile-reverse' will prepend it as the
first entry, and vice-versa."
(interactive "P")
(let ((org-reverse-note-order (not (org-notes-order-reversed-p))))
(org-refile arg default-buffer rfloc msg)))