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