Function: org-babel-goto-named-result
org-babel-goto-named-result is an autoloaded, interactive and
byte-compiled function defined in ob-core.el.gz.
Signature
(org-babel-goto-named-result NAME)
Documentation
Go to a result with NAME.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/ob-core.el.gz
;;;###autoload
(defun org-babel-goto-named-result (name)
"Go to a result with NAME."
(interactive
(let ((completion-ignore-case t))
(list (completing-read "Source-block name: "
(org-babel-result-names) nil t))))
(let ((point (org-babel-find-named-result name)))
(if point
;; taken from `org-open-at-point'
(progn (goto-char point) (org-fold-show-context))
(message "result `%s' not found in this buffer" name))))