Function: org-babel-goto-src-block-head

org-babel-goto-src-block-head is an autoloaded, interactive and byte-compiled function defined in ob-core.el.gz.

Signature

(org-babel-goto-src-block-head)

Documentation

Go to the beginning of the current code block.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/ob-core.el.gz
;;;###autoload
(defun org-babel-goto-src-block-head ()
  "Go to the beginning of the current code block."
  (interactive)
  (let ((head (org-babel-where-is-src-block-head)))
    (if head (goto-char head) (error "Not currently in a code block"))))