Function: org-refile-copy
org-refile-copy is an autoloaded, interactive and byte-compiled
function defined in org-refile.el.gz.
Signature
(org-refile-copy)
Documentation
Like org-refile, but preserve the refiled subtree.
Key Bindings
Aliases
org-copy (obsolete since 9.4)
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-refile.el.gz
;;;###autoload
(defun org-refile-copy ()
"Like `org-refile', but preserve the refiled subtree."
(interactive)
(let ((org-refile-keep t))
(org-refile nil nil nil "Copy")))