org-src.el 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842
  1. ;;; org-src.el --- Source code examples in Org
  2. ;;
  3. ;; Copyright (C) 2004-2014 Free Software Foundation, Inc.
  4. ;;
  5. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  6. ;; Bastien Guerry <bzg@gnu.org>
  7. ;; Dan Davison <davison at stats dot ox dot ac dot uk>
  8. ;; Keywords: outlines, hypermedia, calendar, wp
  9. ;; Homepage: http://orgmode.org
  10. ;;
  11. ;; This file is part of GNU Emacs.
  12. ;;
  13. ;; GNU Emacs is free software: you can redistribute it and/or modify
  14. ;; it under the terms of the GNU General Public License as published by
  15. ;; the Free Software Foundation, either version 3 of the License, or
  16. ;; (at your option) any later version.
  17. ;; GNU Emacs is distributed in the hope that it will be useful,
  18. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. ;; GNU General Public License for more details.
  21. ;; You should have received a copy of the GNU General Public License
  22. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  23. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  24. ;;
  25. ;;; Commentary:
  26. ;; This file contains the code dealing with source code examples in Org-mode.
  27. ;;; Code:
  28. (require 'org-macs)
  29. (require 'org-compat)
  30. (require 'ob-keys)
  31. (require 'ob-comint)
  32. (eval-when-compile
  33. (require 'cl))
  34. (declare-function org-do-remove-indentation "org" (&optional n))
  35. (declare-function org-get-indentation "org" (&optional line))
  36. (declare-function org-switch-to-buffer-other-window "org" (&rest args))
  37. (declare-function org-pop-to-buffer-same-window
  38. "org-compat" (&optional buffer-or-name norecord label))
  39. (declare-function org-base-buffer "org" (buffer))
  40. (defcustom org-edit-src-turn-on-auto-save nil
  41. "Non-nil means turn `auto-save-mode' on when editing a source block.
  42. This will save the content of the source code editing buffer into
  43. a newly created file, not the base buffer for this source block.
  44. If you want to regularly save the base buffer instead of the source
  45. code editing buffer, see `org-edit-src-auto-save-idle-delay' instead."
  46. :group 'org-edit-structure
  47. :version "24.4"
  48. :package-version '(Org . "8.0")
  49. :type 'boolean)
  50. (defcustom org-edit-src-auto-save-idle-delay 0
  51. "Delay before saving a source code buffer back into its base buffer.
  52. When a positive integer N, save after N seconds of idle time.
  53. When 0 (the default), don't auto-save.
  54. If you want to save the source code buffer itself, don't use this.
  55. Check `org-edit-src-turn-on-auto-save' instead."
  56. :group 'org-edit-structure
  57. :version "24.4"
  58. :package-version '(Org . "8.0")
  59. :type 'integer)
  60. (defcustom org-coderef-label-format "(ref:%s)"
  61. "The default coderef format.
  62. This format string will be used to search for coderef labels in literal
  63. examples (EXAMPLE and SRC blocks). The format can be overwritten in
  64. an individual literal example with the -l option, like
  65. #+BEGIN_SRC pascal +n -r -l \"((%s))\"
  66. ...
  67. #+END_SRC
  68. If you want to use this for HTML export, make sure that the format does
  69. not introduce special font-locking, and avoid the HTML special
  70. characters `<', `>', and `&'. The reason for this restriction is that
  71. the labels are searched for only after htmlize has done its job."
  72. :group 'org-edit-structure ; FIXME this is not in the right group
  73. :type 'string)
  74. (defcustom org-edit-fixed-width-region-mode 'artist-mode
  75. "The mode that should be used to edit fixed-width regions.
  76. These are the regions where each line starts with a colon."
  77. :group 'org-edit-structure
  78. :type '(choice
  79. (const artist-mode)
  80. (const picture-mode)
  81. (const fundamental-mode)
  82. (function :tag "Other (specify)")))
  83. (defcustom org-src-preserve-indentation nil
  84. "If non-nil preserve leading whitespace characters on export.
  85. If non-nil leading whitespace characters in source code blocks
  86. are preserved on export, and when switching between the org
  87. buffer and the language mode edit buffer.
  88. When this variable is nil, after editing with \\[org-edit-src-code],
  89. the minimum (across-lines) number of leading whitespace characters
  90. are removed from all lines, and the code block is uniformly indented
  91. according to the value of `org-edit-src-content-indentation'."
  92. :group 'org-edit-structure
  93. :type 'boolean)
  94. (defcustom org-edit-src-content-indentation 2
  95. "Indentation for the content of a source code block.
  96. This should be the number of spaces added to the indentation of the #+begin
  97. line in order to compute the indentation of the block content after
  98. editing it with \\[org-edit-src-code]. Has no effect if
  99. `org-src-preserve-indentation' is non-nil."
  100. :group 'org-edit-structure
  101. :type 'integer)
  102. (defcustom org-edit-src-persistent-message t
  103. "Non-nil means show persistent exit help message while editing src examples.
  104. The message is shown in the header-line, which will be created in the
  105. first line of the window showing the editing buffer."
  106. :group 'org-edit-structure
  107. :type 'boolean)
  108. (defcustom org-src-ask-before-returning-to-edit-buffer t
  109. "Non-nil means ask before switching to an existing edit buffer.
  110. If nil, when `org-edit-src-code' is used on a block that already
  111. has an active edit buffer, it will switch to that edit buffer
  112. immediately; otherwise it will ask whether you want to return to
  113. the existing edit buffer."
  114. :group 'org-edit-structure
  115. :version "24.4"
  116. :package-version '(Org . "8.0")
  117. :type 'boolean)
  118. (defcustom org-src-window-setup 'reorganize-frame
  119. "How the source code edit buffer should be displayed.
  120. Possible values for this option are:
  121. current-window Show edit buffer in the current window, keeping all other
  122. windows.
  123. other-window Use `switch-to-buffer-other-window' to display edit buffer.
  124. reorganize-frame Show only two windows on the current frame, the current
  125. window and the edit buffer. When exiting the edit buffer,
  126. return to one window.
  127. other-frame Use `switch-to-buffer-other-frame' to display edit buffer.
  128. Also, when exiting the edit buffer, kill that frame."
  129. :group 'org-edit-structure
  130. :type '(choice
  131. (const current-window)
  132. (const other-frame)
  133. (const other-window)
  134. (const reorganize-frame)))
  135. (defvar org-src-mode-hook nil
  136. "Hook run after Org switched a source code snippet to its Emacs mode.
  137. This hook will run
  138. - when editing a source code snippet with \"C-c '\".
  139. - When formatting a source code snippet for export with htmlize.
  140. You may want to use this hook for example to turn off `outline-minor-mode'
  141. or similar things which you want to have when editing a source code file,
  142. but which mess up the display of a snippet in Org exported files.")
  143. (defcustom org-src-lang-modes
  144. '(("ocaml" . tuareg) ("elisp" . emacs-lisp) ("ditaa" . artist)
  145. ("asymptote" . asy) ("dot" . fundamental) ("sqlite" . sql)
  146. ("calc" . fundamental) ("C" . c) ("cpp" . c++) ("C++" . c++)
  147. ("screen" . shell-script) ("shell" . sh) ("bash" . sh))
  148. "Alist mapping languages to their major mode.
  149. The key is the language name, the value is the string that should
  150. be inserted as the name of the major mode. For many languages this is
  151. simple, but for language where this is not the case, this variable
  152. provides a way to simplify things on the user side.
  153. For example, there is no ocaml-mode in Emacs, but the mode to use is
  154. `tuareg-mode'."
  155. :group 'org-edit-structure
  156. :type '(repeat
  157. (cons
  158. (string "Language name")
  159. (symbol "Major mode"))))
  160. (defcustom org-src-tab-acts-natively nil
  161. "If non-nil, the effect of TAB in a code block is as if it were
  162. issued in the language major mode buffer."
  163. :type 'boolean
  164. :version "24.1"
  165. :group 'org-babel)
  166. ;;; Internal functions and variables
  167. (defvar org-src--allow-write-back-p t)
  168. (defvar org-src--beg-marker nil)
  169. (defvar org-src--block-indentation nil)
  170. (defvar org-src--code-timer nil)
  171. (defvar org-src--end-marker nil)
  172. (defvar org-src--from-org-mode nil)
  173. (defvar org-src--overlay nil)
  174. (defvar org-src--saved-temp-window-config nil)
  175. (defvar org-src--type nil)
  176. (defvar org-src--babel-info nil)
  177. (defun org-src--construct-edit-buffer-name (org-buffer-name lang)
  178. "Construct the buffer name for a source editing buffer."
  179. (concat "*Org Src " org-buffer-name "[ " lang " ]*"))
  180. (defun org-src--edit-buffer (beg end)
  181. "Return buffer editing area between BEG and END.
  182. Return nil if there is no such buffer."
  183. (catch 'exit
  184. (dolist (b (buffer-list))
  185. (with-current-buffer b
  186. (and (org-src-edit-buffer-p)
  187. (= beg org-src--beg-marker)
  188. (eq (marker-buffer beg) (marker-buffer org-src--beg-marker))
  189. (= end org-src--end-marker)
  190. (eq (marker-buffer end) (marker-buffer org-src--end-marker))
  191. (throw 'exit b))))))
  192. (defun org-src--source-buffer ()
  193. "Return source buffer edited by current buffer."
  194. (unless (org-src-edit-buffer-p) (error "Not in a source buffer"))
  195. (or (marker-buffer org-src--beg-marker)
  196. (error "No source buffer available for current editing session")))
  197. (defun org-src--get-lang-mode (lang)
  198. "Return major mode that should be used for LANG.
  199. LANG is a string, and the returned major mode is a symbol."
  200. (intern
  201. (concat
  202. (let ((l (or (cdr (assoc lang org-src-lang-modes)) lang)))
  203. (if (symbolp l) (symbol-name l) l))
  204. "-mode")))
  205. (defun org-src--coordinates (pos beg end)
  206. "Return coordinates of POS relatively to BEG and END.
  207. POS, BEG and END are buffer positions. Return value is either
  208. a cons cell (LINE . COLUMN) or symbol `end'. See also
  209. `org-src--goto-coordinates'."
  210. (if (>= pos end) 'end
  211. (org-with-wide-buffer
  212. (goto-char (max beg pos))
  213. (cons (count-lines beg (line-beginning-position))
  214. ;; Column is relative to the end of line to avoid problems of
  215. ;; comma escaping or colons appended in front of the line.
  216. (- (current-column)
  217. (progn (end-of-line) (current-column)))))))
  218. (defun org-src--goto-coordinates (coord beg end)
  219. "Move to coordinates COORD relatively to BEG and END.
  220. COORD are coordinates, as returned by `org-src--coordinates',
  221. which see. BEG and END are buffer positions."
  222. (goto-char
  223. (if (eq coord 'end) (max (1- end) beg)
  224. ;; If BEG happens to be located outside of the narrowed part of
  225. ;; the buffer, widen it first.
  226. (org-with-wide-buffer
  227. (goto-char beg)
  228. (forward-line (car coord))
  229. (end-of-line)
  230. (org-move-to-column (max (+ (current-column) (cdr coord)) 0))
  231. (point)))))
  232. (defun org-src--element-contents-area (element)
  233. "Return contents boundaries of ELEMENT.
  234. Return value is a pair (BEG . END) where BEG and END are buffer
  235. positions."
  236. (let ((blockp (memq (org-element-type element)
  237. '(example-block export-block src-block))))
  238. (cons (org-with-wide-buffer
  239. (goto-char (org-element-property :post-affiliated element))
  240. (if blockp (line-beginning-position 2) (point)))
  241. (org-with-wide-buffer
  242. (goto-char (org-element-property :end element))
  243. (skip-chars-backward " \r\t\n")
  244. (line-beginning-position (if blockp 1 2))))))
  245. (defun org-src--make-source-overlay (beg end edit-buffer)
  246. "Create overlay between BEG and END positions and return it.
  247. EDIT-BUFFER is the buffer currently editing area between BEG and
  248. END."
  249. (let ((overlay (make-overlay beg end)))
  250. (overlay-put overlay 'face 'secondary-selection)
  251. (overlay-put overlay 'edit-buffer edit-buffer)
  252. (overlay-put overlay 'help-echo
  253. "Click with mouse-1 to switch to buffer editing this segment")
  254. (overlay-put overlay 'face 'secondary-selection)
  255. (overlay-put overlay 'keymap
  256. (let ((map (make-sparse-keymap)))
  257. (define-key map [mouse-1] 'org-edit-src-continue)
  258. map))
  259. ;; TODO: The below line doesn't work for two reasons:
  260. ;; - It should be 'read-only
  261. ;; - 'read-only apparently doesn't work on overlays (also empirically tested):
  262. ;; <https://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01598.html>
  263. ;; If this feature is to be kept, it should be implemented via text
  264. ;; properties, which will require fiddling around in more places
  265. ;; (such as when the contents are copied back into the buffer after
  266. ;; editing is complete.)
  267. (overlay-put overlay :read-only "Leave me alone")
  268. overlay))
  269. (defun org-src--on-element-p (element)
  270. "Non-nil when point is on ELEMENT."
  271. (and (>= (point) (org-element-property :begin element))
  272. (<= (point)
  273. (org-with-wide-buffer
  274. (goto-char (org-element-property :end element))
  275. (skip-chars-backward " \r\t\n")
  276. (line-end-position)))))
  277. (defun org-src--contents-for-write-back ()
  278. "Return buffer contents in a format appropriate for write back.
  279. Assume point is in the corresponding edit buffer."
  280. (let ((indentation (+ (or org-src--block-indentation 0)
  281. (if (memq org-src--type '(example-block src-block))
  282. org-edit-src-content-indentation
  283. 0)))
  284. (preserve-indentation org-src-preserve-indentation)
  285. (contents (org-with-wide-buffer (buffer-string)))
  286. (fixed-width-p (eq org-src--type 'fixed-width)))
  287. (with-temp-buffer
  288. (insert contents)
  289. (goto-char (point-min))
  290. (if fixed-width-p
  291. (progn
  292. (untabify (point-min) (point-max))
  293. (let ((prefix (concat (and (not preserve-indentation)
  294. (make-string indentation ?\s))
  295. ": ")))
  296. (while (not (eobp)) (insert prefix) (forward-line))))
  297. (unless preserve-indentation (untabify (point-min) (point-max)))
  298. (org-escape-code-in-region (point-min) (point-max))
  299. (unless (or preserve-indentation (zerop indentation))
  300. (let ((ind (make-string indentation ?\s)))
  301. (while (not (eobp))
  302. (when (org-looking-at-p "[ \t]*\\S-") (insert ind))
  303. (forward-line)))))
  304. (buffer-string))))
  305. (defun org-src--edit-element (element name &optional major write-back contents)
  306. "Edit ELEMENT contents in a dedicated buffer.
  307. MAJOR is the major mode used in the edit buffer. A nil value is
  308. equivalent to `fundamental-mode'. When WRITE-BACK is non-nil,
  309. assume contents will replace original region. When CONTENTS is
  310. non-nil, display them in the edit buffer. Otherwise, assume they
  311. are located in property `:value'.
  312. Leave point in edit buffer."
  313. (setq org-src--saved-temp-window-config (current-window-configuration))
  314. (let* ((area (org-src--element-contents-area element))
  315. (beg (copy-marker (car area)))
  316. (end (copy-marker (cdr area) t))
  317. (old-edit-buffer (org-src--edit-buffer beg end)))
  318. (if (and old-edit-buffer
  319. (or (not org-src-ask-before-returning-to-edit-buffer)
  320. (y-or-n-p "Return to existing edit buffer ([n] will revert changes)? ")))
  321. ;; Move to existing buffer.
  322. (org-src-switch-to-buffer old-edit-buffer 'return)
  323. ;; Discard old edit buffer.
  324. (when old-edit-buffer
  325. (with-current-buffer old-edit-buffer
  326. (when (boundp 'org-src--overlay)
  327. (delete-overlay org-src--overlay)))
  328. (kill-buffer old-edit-buffer))
  329. (let* ((org-mode-p (derived-mode-p 'org-mode))
  330. (type (org-element-type element))
  331. (ind (org-with-wide-buffer
  332. (goto-char (org-element-property :begin element))
  333. (org-get-indentation)))
  334. (preserve-ind
  335. (and (memq type '(example-block src-block))
  336. (or (org-element-property :preserve-indent element)
  337. org-src-preserve-indentation)))
  338. ;; Store relative positions of mark (if any) and point
  339. ;; within the edited area.
  340. (point-coordinates (org-src--coordinates (point) beg end))
  341. (mark-coordinates (and (org-region-active-p)
  342. (let ((m (mark)))
  343. (and (>= m beg) (>= end m)
  344. (org-src--coordinates m beg end)))))
  345. ;; Generate a new edit buffer.
  346. (buffer (generate-new-buffer name))
  347. ;; Add an overlay on top of source.
  348. (overlay (org-src--make-source-overlay beg end buffer)))
  349. ;; Switch to edit buffer.
  350. (org-src-switch-to-buffer buffer 'edit)
  351. ;; Insert contents.
  352. (insert (or contents (org-element-property :value element)))
  353. (remove-text-properties (point-min) (point-max)
  354. '(display nil invisible nil intangible nil))
  355. (unless preserve-ind (org-do-remove-indentation))
  356. (set-buffer-modified-p nil)
  357. (setq buffer-file-name nil)
  358. ;; Start major mode.
  359. (if (not major) (fundamental-mode)
  360. (let ((org-inhibit-startup t))
  361. (condition-case e (funcall major)
  362. (error (message "Language mode `%s' fails with: %S"
  363. major (nth 1 e))))))
  364. ;; Transmit buffer-local variables for exit function. It must
  365. ;; be done after initializing major mode, as this operation
  366. ;; may reset them otherwise.
  367. (org-set-local 'org-src--from-org-mode org-mode-p)
  368. (org-set-local 'org-src--beg-marker beg)
  369. (org-set-local 'org-src--end-marker end)
  370. (org-set-local 'org-src--type type)
  371. (org-set-local 'org-src--block-indentation ind)
  372. (org-set-local 'org-src-preserve-indentation preserve-ind)
  373. (org-set-local 'org-src--overlay overlay)
  374. (org-set-local 'org-src--allow-write-back-p write-back)
  375. ;; Start minor mode.
  376. (org-src-mode)
  377. (when org-edit-src-persistent-message
  378. (org-set-local
  379. 'header-line-format
  380. (substitute-command-keys
  381. (if write-back
  382. "Edit, then exit with \\[org-edit-src-exit] or abort with \
  383. \\[org-edit-src-abort]"
  384. "Exit with \\[org-edit-src-exit] or abort with \
  385. \\[org-edit-src-abort]"))))
  386. ;; Possibly start `auto-save-mode'.
  387. (when org-edit-src-turn-on-auto-save
  388. (setq buffer-auto-save-file-name
  389. (concat (make-temp-name "org-src-")
  390. (format-time-string "-%Y-%d-%m")
  391. ".txt")))
  392. ;; Move mark and point in edit buffer to the corresponding
  393. ;; location.
  394. (when mark-coordinates
  395. (org-src--goto-coordinates mark-coordinates (point-min) (point-max))
  396. (push-mark (point) 'no-message t)
  397. (setq deactivate-mark nil))
  398. (org-src--goto-coordinates point-coordinates (point-min) (point-max)))
  399. ;; Install idle auto save feature, if necessary.
  400. (or org-src--code-timer
  401. (zerop org-edit-src-auto-save-idle-delay)
  402. (setq org-src--code-timer
  403. (run-with-idle-timer
  404. org-edit-src-auto-save-idle-delay t
  405. (lambda ()
  406. (cond
  407. ((org-src-edit-buffer-p)
  408. (when (buffer-modified-p) (org-edit-src-save)))
  409. ((not (org-some (lambda (b) (org-src-edit-buffer-p b))
  410. (buffer-list)))
  411. (cancel-timer org-src--code-timer)
  412. (setq org-src--code-timer nil))))))))))
  413. ;;; Fontification of source blocks
  414. (defun org-src-font-lock-fontify-block (lang start end)
  415. "Fontify code block.
  416. This function is called by emacs automatic fontification, as long
  417. as `org-src-fontify-natively' is non-nil."
  418. (let ((lang-mode (org-src--get-lang-mode lang)))
  419. (when (fboundp lang-mode)
  420. (let ((string (buffer-substring-no-properties start end))
  421. (modified (buffer-modified-p))
  422. (org-buffer (current-buffer)) pos next)
  423. (remove-text-properties start end '(face nil))
  424. (with-current-buffer
  425. (get-buffer-create
  426. (concat " org-src-fontification:" (symbol-name lang-mode)))
  427. (delete-region (point-min) (point-max))
  428. (insert string " ") ;; so there's a final property change
  429. (unless (eq major-mode lang-mode) (funcall lang-mode))
  430. (font-lock-fontify-buffer)
  431. (setq pos (point-min))
  432. (while (setq next (next-single-property-change pos 'face))
  433. (put-text-property
  434. (+ start (1- pos)) (1- (+ start next)) 'face
  435. (get-text-property pos 'face) org-buffer)
  436. (setq pos next)))
  437. (add-text-properties
  438. start end
  439. '(font-lock-fontified t fontified t font-lock-multiline t))
  440. (set-buffer-modified-p modified)))))
  441. ;;; Escape contents
  442. (defun org-escape-code-in-region (beg end)
  443. "Escape lines between BEG and END.
  444. Escaping happens when a line starts with \"*\", \"#+\", \",*\" or
  445. \",#+\" by appending a comma to it."
  446. (interactive "r")
  447. (save-excursion
  448. (goto-char beg)
  449. (while (re-search-forward "^[ \t]*,?\\(\\*\\|#\\+\\)" end t)
  450. (replace-match ",\\1" nil nil nil 1))))
  451. (defun org-escape-code-in-string (s)
  452. "Escape lines in string S.
  453. Escaping happens when a line starts with \"*\", \"#+\", \",*\" or
  454. \",#+\" by appending a comma to it."
  455. (replace-regexp-in-string "^[ \t]*,?\\(\\*\\|#\\+\\)" ",\\1" s nil nil 1))
  456. (defun org-unescape-code-in-region (beg end)
  457. "Un-escape lines between BEG and END.
  458. Un-escaping happens by removing the first comma on lines starting
  459. with \",*\", \",#+\", \",,*\" and \",,#+\"."
  460. (interactive "r")
  461. (save-excursion
  462. (goto-char beg)
  463. (while (re-search-forward "^[ \t]*,?\\(,\\)\\(?:\\*\\|#\\+\\)" end t)
  464. (replace-match "" nil nil nil 1))))
  465. (defun org-unescape-code-in-string (s)
  466. "Un-escape lines in string S.
  467. Un-escaping happens by removing the first comma on lines starting
  468. with \",*\", \",#+\", \",,*\" and \",,#+\"."
  469. (replace-regexp-in-string
  470. "^[ \t]*,?\\(,\\)\\(?:\\*\\|#\\+\\)" "" s nil nil 1))
  471. ;;; Org src minor mode
  472. (defvar org-src-mode-map (make-sparse-keymap))
  473. (define-key org-src-mode-map "\C-c'" 'org-edit-src-exit)
  474. (define-key org-src-mode-map "\C-c\C-k" 'org-edit-src-abort)
  475. (define-key org-src-mode-map "\C-x\C-s" 'org-edit-src-save)
  476. (define-minor-mode org-src-mode
  477. "Minor mode for language major mode buffers generated by org.
  478. This minor mode is turned on in two situations:
  479. - when editing a source code snippet with \"C-c '\".
  480. - When formatting a source code snippet for export with htmlize.
  481. There is a mode hook, and keybindings for `org-edit-src-exit' and
  482. `org-edit-src-save'")
  483. (defun org-src-mode-configure-edit-buffer ()
  484. (when (org-bound-and-true-p org-src--from-org-mode)
  485. (org-add-hook 'kill-buffer-hook
  486. (lambda () (delete-overlay org-src--overlay)) nil 'local)
  487. (if (org-bound-and-true-p org-src--allow-write-back-p)
  488. (progn
  489. (setq buffer-offer-save t)
  490. (setq buffer-file-name
  491. (concat (buffer-file-name (marker-buffer org-src--beg-marker))
  492. "[" (buffer-name) "]"))
  493. (if (featurep 'xemacs)
  494. (progn
  495. (make-variable-buffer-local 'write-contents-hooks) ; needed only for 21.4
  496. (setq write-contents-hooks '(org-edit-src-save)))
  497. (setq write-contents-functions '(org-edit-src-save))))
  498. (setq buffer-read-only t))))
  499. (org-add-hook 'org-src-mode-hook #'org-src-mode-configure-edit-buffer)
  500. ;;; Babel related functions
  501. (defun org-src-associate-babel-session (info)
  502. "Associate edit buffer with comint session."
  503. (interactive)
  504. (let ((session (cdr (assoc :session (nth 2 info)))))
  505. (and session (not (string= session "none"))
  506. (org-babel-comint-buffer-livep session)
  507. (let ((f (intern (format "org-babel-%s-associate-session"
  508. (nth 0 info)))))
  509. (and (fboundp f) (funcall f session))))))
  510. (defun org-src-babel-configure-edit-buffer ()
  511. (when org-src--babel-info
  512. (org-src-associate-babel-session org-src--babel-info)))
  513. (org-add-hook 'org-src-mode-hook #'org-src-babel-configure-edit-buffer)
  514. (defmacro org-src-do-at-code-block (&rest body)
  515. "Execute a command from an edit buffer in the Org mode buffer."
  516. `(let ((beg-marker org-src--beg-marker))
  517. (when beg-marker
  518. (with-current-buffer (marker-buffer beg-marker)
  519. (goto-char beg-marker)
  520. ,@body))))
  521. (def-edebug-spec org-src-do-at-code-block (body))
  522. (defun org-src-do-key-sequence-at-code-block (&optional key)
  523. "Execute key sequence at code block in the source Org buffer.
  524. The command bound to KEY in the Org-babel key map is executed
  525. remotely with point temporarily at the start of the code block in
  526. the Org buffer.
  527. This command is not bound to a key by default, to avoid conflicts
  528. with language major mode bindings. To bind it to C-c @ in all
  529. language major modes, you could use
  530. (add-hook 'org-src-mode-hook
  531. (lambda () (define-key org-src-mode-map \"\\C-c@\"
  532. 'org-src-do-key-sequence-at-code-block)))
  533. In that case, for example, C-c @ t issued in code edit buffers
  534. would tangle the current Org code block, C-c @ e would execute
  535. the block and C-c @ h would display the other available
  536. Org-babel commands."
  537. (interactive "kOrg-babel key: ")
  538. (if (equal key (kbd "C-g")) (keyboard-quit)
  539. (org-edit-src-save)
  540. (org-src-do-at-code-block
  541. (call-interactively (lookup-key org-babel-map key)))))
  542. ;;; Public functions
  543. (defun org-src-edit-buffer-p (&optional buffer)
  544. "Non-nil when current buffer is a source editing buffer.
  545. If BUFFER is non-nil, test it instead."
  546. (let ((buffer (org-base-buffer (or buffer (current-buffer)))))
  547. (and (buffer-live-p buffer)
  548. (local-variable-p 'org-src--beg-marker buffer)
  549. (local-variable-p 'org-src--end-marker buffer))))
  550. (defun org-src-switch-to-buffer (buffer context)
  551. (case org-src-window-setup
  552. (current-window (org-pop-to-buffer-same-window buffer))
  553. (other-window
  554. (switch-to-buffer-other-window buffer))
  555. (other-frame
  556. (case context
  557. (exit
  558. (let ((frame (selected-frame)))
  559. (switch-to-buffer-other-frame buffer)
  560. (delete-frame frame)))
  561. (save
  562. (kill-buffer (current-buffer))
  563. (org-pop-to-buffer-same-window buffer))
  564. (t (switch-to-buffer-other-frame buffer))))
  565. (reorganize-frame
  566. (when (eq context 'edit) (delete-other-windows))
  567. (org-switch-to-buffer-other-window buffer)
  568. (when (eq context 'exit) (delete-other-windows)))
  569. (switch-invisibly (set-buffer buffer))
  570. (t
  571. (message "Invalid value %s for `org-src-window-setup'"
  572. org-src-window-setup)
  573. (org-pop-to-buffer-same-window buffer))))
  574. (defun org-edit-table.el ()
  575. "Edit \"table.el\" table at point.
  576. A new buffer is created and the table is copied into it. Then
  577. the table is recognized with `table-recognize'. When done
  578. editing, exit with \\[org-edit-src-exit]. The edited text will
  579. then replace the area in the Org mode buffer.
  580. Throw an error when not at such a table."
  581. (interactive)
  582. (let ((element (org-element-at-point)))
  583. (unless (and (eq (org-element-type element) 'table)
  584. (eq (org-element-property :type element) 'table.el)
  585. (org-src--on-element-p element))
  586. (user-error "Not in a table.el table"))
  587. (org-src--edit-element
  588. element
  589. (org-src--construct-edit-buffer-name (buffer-name) "Table")
  590. #'text-mode t)
  591. (when (org-bound-and-true-p flyspell-mode) (flyspell-mode -1))
  592. (table-recognize)
  593. t))
  594. (defun org-edit-export-block ()
  595. "Edit export block at point.
  596. A new buffer is created and the block is copied into it, and the
  597. buffer is switched into an appropriate major mode. See also
  598. `org-src-lang-modes'. When done, exit with
  599. \\[org-edit-src-exit]. The edited text will then replace the
  600. area in the Org mode buffer.
  601. Throw an error when not at an export block."
  602. (interactive)
  603. (let ((element (org-element-at-point)))
  604. (unless (and (eq (org-element-type element) 'export-block)
  605. (org-src--on-element-p element))
  606. (user-error "Not in an export block"))
  607. (let* ((type (downcase (org-element-property :type element)))
  608. (mode (org-src--get-lang-mode type)))
  609. (unless (functionp mode) (error "No such language mode: %s" mode))
  610. (org-src--edit-element
  611. element (org-src--construct-edit-buffer-name (buffer-name) type) mode t))
  612. t))
  613. (defun org-edit-src-code (&optional code edit-buffer-name)
  614. "Edit the source or example block at point.
  615. The code is copied to a separate buffer and the appropriate mode
  616. is turned on. When done, exit with \\[org-edit-src-exit]. This
  617. will remove the original code in the Org buffer, and replace it
  618. with the edited version. See `org-src-window-setup' to configure
  619. the display of windows containing the Org buffer and the code
  620. buffer.
  621. When optional argument CODE is a string, edit it in a dedicated
  622. buffer instead.
  623. When optional argument EDIT-BUFFER-NAME is non-nil, use it as the
  624. name of the sub-editing buffer."
  625. (interactive)
  626. (let* ((element (org-element-at-point))
  627. (type (org-element-type element)))
  628. (unless (and (memq type '(example-block src-block))
  629. (org-src--on-element-p element))
  630. (user-error "Not in a source or example block"))
  631. (let* ((lang
  632. (if (eq type 'src-block) (org-element-property :language element)
  633. "example"))
  634. (lang-f (and (eq type 'src-block) (org-src--get-lang-mode lang)))
  635. (babel-info (and (eq type 'src-block)
  636. (org-babel-get-src-block-info 'light)))
  637. deactivate-mark)
  638. (when (and (eq type 'src-block) (not (functionp lang-f)))
  639. (error "No such language mode: %s" lang-f))
  640. (org-src--edit-element
  641. element
  642. (or edit-buffer-name
  643. (org-src--construct-edit-buffer-name (buffer-name) lang))
  644. lang-f (null code) (and code (org-unescape-code-in-string code)))
  645. ;; Finalize buffer.
  646. (org-set-local 'org-coderef-label-format
  647. (or (org-element-property :label-fmt element)
  648. org-coderef-label-format))
  649. (when (eq type 'src-block)
  650. (org-set-local 'org-src--babel-info babel-info)
  651. (let ((edit-prep-func (intern (concat "org-babel-edit-prep:" lang))))
  652. (when (fboundp edit-prep-func)
  653. (funcall edit-prep-func babel-info))))
  654. t)))
  655. (defun org-edit-fixed-width-region ()
  656. "Edit the fixed-width ASCII drawing at point.
  657. This must be a region where each line starts with a colon
  658. followed by a space or a newline character.
  659. A new buffer is created and the fixed-width region is copied into
  660. it, and the buffer is switched into the major mode defined in
  661. `org-edit-fixed-width-region-mode', which see. When done, exit
  662. with \\[org-edit-src-exit]. The edited text will then replace
  663. the area in the Org mode buffer."
  664. (interactive)
  665. (let ((element (org-element-at-point)))
  666. (unless (and (eq (org-element-type element) 'fixed-width)
  667. (org-src--on-element-p element))
  668. (user-error "Not in a fixed-width area"))
  669. (org-src--edit-element
  670. element
  671. (org-src--construct-edit-buffer-name (buffer-name) "Fixed Width")
  672. org-edit-fixed-width-region-mode
  673. t)
  674. ;; Return success.
  675. t))
  676. (defun org-edit-src-abort ()
  677. "Abort editing of the src code and return to the Org buffer."
  678. (interactive)
  679. (let (org-src--allow-write-back-p) (org-edit-src-exit)))
  680. (defun org-edit-src-continue (e)
  681. "Unconditionally return to buffer editing area under point.
  682. Throw an error if there is no such buffer."
  683. (interactive "e")
  684. (mouse-set-point e)
  685. (let ((buf (get-char-property (point) 'edit-buffer)))
  686. (if buf (org-src-switch-to-buffer buf 'continue)
  687. (user-error "No sub-editing buffer for area at point"))))
  688. (defun org-edit-src-save ()
  689. "Save parent buffer with current state source-code buffer."
  690. (interactive)
  691. (unless (org-src-edit-buffer-p) (user-error "Not in a sub-editing buffer"))
  692. (set-buffer-modified-p nil)
  693. (let ((edited-code (org-src--contents-for-write-back))
  694. (beg org-src--beg-marker)
  695. (end org-src--end-marker)
  696. (overlay org-src--overlay))
  697. (with-current-buffer (org-src--source-buffer)
  698. (undo-boundary)
  699. (goto-char beg)
  700. (delete-region beg end)
  701. (when (org-string-nw-p edited-code) (insert edited-code))
  702. (unless (bolp) (insert "\n"))
  703. (move-overlay overlay beg (point))
  704. (save-buffer))))
  705. (defun org-edit-src-exit ()
  706. "Kill current sub-editing buffer and return to source buffer."
  707. (interactive)
  708. (unless (org-src-edit-buffer-p) (error "Not in a sub-editing buffer"))
  709. (let* ((allow-write-back-p org-src--allow-write-back-p)
  710. (beg org-src--beg-marker)
  711. (end org-src--end-marker)
  712. (coordinates (org-src--coordinates (point) 1 (point-max)))
  713. (code (and allow-write-back-p (org-src--contents-for-write-back))))
  714. (set-buffer-modified-p nil)
  715. ;; Switch to source buffer. Kill sub-editing buffer.
  716. (let ((edit-buffer (current-buffer)))
  717. (org-src-switch-to-buffer (marker-buffer beg) 'exit)
  718. (kill-buffer edit-buffer))
  719. ;; Insert modified code. Ensure it ends with a newline character.
  720. (when (and allow-write-back-p
  721. (not (equal (buffer-substring-no-properties beg end) code)))
  722. (undo-boundary)
  723. (goto-char beg)
  724. (delete-region beg end)
  725. (when (org-string-nw-p code)
  726. (insert code)
  727. (unless (bolp) (insert "\n"))))
  728. ;; If we are to return to source buffer, put point at an
  729. ;; appropriate location. In particular, if block is hidden, move
  730. ;; to the beginning of the block opening line.
  731. (goto-char beg)
  732. (cond
  733. ;; Block is hidden; move at start of block.
  734. ((org-some (lambda (o) (eq (overlay-get o 'invisible) 'org-hide-block))
  735. (overlays-at (point)))
  736. (beginning-of-line 0))
  737. (allow-write-back-p (org-src--goto-coordinates coordinates beg end)))
  738. ;; Clean up left-over markers and restore window configuration.
  739. (set-marker beg nil)
  740. (set-marker end nil)
  741. (when org-src--saved-temp-window-config
  742. (set-window-configuration org-src--saved-temp-window-config)
  743. (setq org-src--saved-temp-window-config nil))))
  744. (provide 'org-src)
  745. ;;; org-src.el ends here