Function: org-edit-src-continue

org-edit-src-continue is an interactive and byte-compiled function defined in org-src.el.gz.

Signature

(org-edit-src-continue EVENT)

Documentation

Unconditionally return to buffer editing area under point.

Throw an error if there is no such buffer. EVENT is passed to mouse-set-point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-src.el.gz
(defun org-edit-src-continue (event)
  "Unconditionally return to buffer editing area under point.
Throw an error if there is no such buffer.
EVENT is passed to `mouse-set-point'."
  (interactive "e")
  (mouse-set-point event)
  (let ((buf (get-char-property (point) 'edit-buffer)))
    (if buf (org-src-switch-to-buffer buf 'continue)
      (user-error "No sub-editing buffer for area at point"))))