Function: org-babel-hash-at-point
org-babel-hash-at-point is an interactive and byte-compiled function
defined in ob-core.el.gz.
Signature
(org-babel-hash-at-point &optional POINT)
Documentation
Return the value of the hash at POINT.
The hash is also added as the last element of the kill ring.
This can be called with C-c C-c (org-ctrl-c-ctrl-c).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/ob-core.el.gz
(defun org-babel-hash-at-point (&optional point)
"Return the value of the hash at POINT.
\\<org-mode-map>\
The hash is also added as the last element of the kill ring.
This can be called with `\\[org-ctrl-c-ctrl-c]'."
(interactive)
(let ((hash (car (delq nil (mapcar
(lambda (ol) (overlay-get ol 'babel-hash))
(overlays-at (or point (point))))))))
(when hash (kill-new hash) (message hash))))