Function: org-refile-goto-last-stored
org-refile-goto-last-stored is an interactive and byte-compiled
function defined in org-refile.el.gz.
Signature
(org-refile-goto-last-stored)
Documentation
Go to the location where the last refile was stored.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-refile.el.gz
(defun org-refile-goto-last-stored ()
"Go to the location where the last refile was stored."
(interactive)
(bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
(message "This is the location of the last refile"))