org-src.el 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559
  1. ;;; org-src.el --- Source code examples in Org
  2. ;;
  3. ;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009
  4. ;; Free Software Foundation, Inc.
  5. ;;
  6. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  7. ;; Bastien Guerry <bzg AT altern DOT org>
  8. ;; Keywords: outlines, hypermedia, calendar, wp
  9. ;; Homepage: http://orgmode.org
  10. ;; Version: 6.32trans
  11. ;;
  12. ;; This file is part of GNU Emacs.
  13. ;;
  14. ;; GNU Emacs is free software: you can redistribute it and/or modify
  15. ;; it under the terms of the GNU General Public License as published by
  16. ;; the Free Software Foundation, either version 3 of the License, or
  17. ;; (at your option) any later version.
  18. ;; GNU Emacs is distributed in the hope that it will be useful,
  19. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. ;; GNU General Public License for more details.
  22. ;; You should have received a copy of the GNU General Public License
  23. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  24. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  25. ;;
  26. ;;; Commentary:
  27. ;; This file contains the code dealing with source code examples in Org-mode.
  28. ;;; Code:
  29. (require 'org-macs)
  30. (require 'org-compat)
  31. (declare-function org-do-remove-indentation "org" (&optional n))
  32. (declare-function org-get-indentation "org" (&optional line))
  33. (defcustom org-edit-src-region-extra nil
  34. "Additional regexps to identify regions for editing with `org-edit-src-code'.
  35. For examples see the function `org-edit-src-find-region-and-lang'.
  36. The regular expression identifying the begin marker should end with a newline,
  37. and the regexp marking the end line should start with a newline, to make sure
  38. there are kept outside the narrowed region."
  39. :group 'org-edit-structure
  40. :type '(repeat
  41. (list
  42. (regexp :tag "begin regexp")
  43. (regexp :tag "end regexp")
  44. (choice :tag "language"
  45. (string :tag "specify")
  46. (integer :tag "from match group")
  47. (const :tag "from `lang' element")
  48. (const :tag "from `style' element")))))
  49. (defcustom org-coderef-label-format "(ref:%s)"
  50. "The default coderef format.
  51. This format string will be used to search for coderef labels in literal
  52. examples (EXAMPLE and SRC blocks). The format can be overwritten in
  53. an individual literal example with the -f option, like
  54. #+BEGIN_SRC pascal +n -r -l \"((%s))\"
  55. ...
  56. #+END_SRC
  57. If you want to use this for HTML export, make sure that the format does
  58. not introduce special font-locking, and avoid the HTML special
  59. characters `<', `>', and `&'. The reason for this restriction is that
  60. the labels are searched for only after htmlize has done its job."
  61. :group 'org-edit-structure ; FIXME this is not in the right group
  62. :type 'string)
  63. (defcustom org-edit-fixed-width-region-mode 'artist-mode
  64. "The mode that should be used to edit fixed-width regions.
  65. These are the regions where each line starts with a colon."
  66. :group 'org-edit-structure
  67. :type '(choice
  68. (const artist-mode)
  69. (const picture-mode)
  70. (const fundamental-mode)
  71. (function :tag "Other (specify)")))
  72. (defcustom org-src-preserve-indentation nil
  73. "If non-nil, leading whitespace characters in source code
  74. blocks are preserved. Otherwise, after editing with
  75. \\[org-edit-src-code], the minimum (across-lines) number of
  76. leading whitespace characters are removed from all lines, and
  77. the code block is then uniformly indented according to the
  78. value of `org-edit-src-content-indentation'."
  79. :group 'org-edit-structure
  80. :type 'boolean)
  81. (defcustom org-edit-src-content-indentation 2
  82. "Indentation for the content of a source code block.
  83. This should be the number of spaces added to the indentation of the #+begin
  84. line in order to compute the indentation of the block content after
  85. editing it with \\[org-edit-src-code]. Has no effect if
  86. `org-src-preserve-indentation' is non-nil."
  87. :group 'org-edit-structure
  88. :type 'integer)
  89. (defcustom org-edit-src-persistent-message t
  90. "Non-nil means show persistent exit help message while editing src examples.
  91. The message is shown in the header-line, which will be created in the
  92. first line of the window showing the editing buffer.
  93. When nil, the message will only be shown intermittently in the echo area."
  94. :group 'org-edit-structure
  95. :type 'boolean)
  96. (defvar org-src-mode-hook nil
  97. "Hook run after Org switched a source code snippet to its Emacs mode.
  98. This hook will run
  99. - when editing a source code snippet with \"C-c '\".
  100. - When formatting a source code snippet for export with htmlize.
  101. You may want to use this hook for example to turn off `outline-minor-mode'
  102. or similar things which you want to have when editing a source code file,
  103. but which mess up the display of a snippet in Org exported files.")
  104. (defcustom org-src-lang-modes
  105. '(("ocaml" . tuareg) ("elisp" . emacs-lisp) ("ditaa" . artist)
  106. ("asymptote" . asy) ("dot" . fundamental))
  107. "Alist mapping languages to their major mode.
  108. The key is the language name, the value is the string that should
  109. be inserted as the name of the major mode. For many languages this is
  110. simple, but for language where this is not the case, this variable
  111. provides a way to simplify things on the user side.
  112. For example, there is no ocaml-mode in Emacs, but the mode to use is
  113. `tuareg-mode'."
  114. :group 'org-edit-structure
  115. :type '(repeat
  116. (cons
  117. (string "Language name")
  118. (symbol "Major mode"))))
  119. ;;; Editing source examples
  120. (defvar org-src-mode-map (make-sparse-keymap))
  121. (define-key org-src-mode-map "\C-c'" 'org-edit-src-exit)
  122. (defvar org-edit-src-force-single-line nil)
  123. (defvar org-edit-src-from-org-mode nil)
  124. (defvar org-edit-src-picture nil)
  125. (defvar org-edit-src-beg-marker nil)
  126. (defvar org-edit-src-end-marker nil)
  127. (defvar org-edit-src-overlay nil)
  128. (defvar org-edit-src-block-indentation nil)
  129. (defvar org-src-ask-before-returning-to-edit-buffer t
  130. "If nil, when org-edit-src code is used on a block that already
  131. has an active edit buffer, it will switch to that edit buffer
  132. immediately; otherwise it will ask whether you want to return
  133. to the existing edit buffer.")
  134. (define-minor-mode org-src-mode
  135. "Minor mode for language major mode buffers generated by org.
  136. This minor mode is turned on in two situations:
  137. - when editing a source code snippet with \"C-c '\".
  138. - When formatting a source code snippet for export with htmlize.
  139. There is a mode hook, and keybindings for `org-edit-src-exit' and
  140. `org-edit-src-save'")
  141. (defun org-edit-src-code ()
  142. "Edit the source code example at point.
  143. The example is copied to a separate buffer, and that buffer is switched
  144. to the correct language mode. When done, exit with \\[org-edit-src-exit].
  145. This will remove the original code in the Org buffer, and replace it with
  146. the edited version."
  147. (interactive)
  148. (let ((line (org-current-line))
  149. (col (current-column))
  150. (case-fold-search t)
  151. (msg (substitute-command-keys
  152. "Edit, then exit with C-c ' (C-c and single quote)"))
  153. (info (org-edit-src-find-region-and-lang))
  154. (org-mode-p (eq major-mode 'org-mode))
  155. (beg (make-marker))
  156. (end (make-marker))
  157. (preserve-indentation org-src-preserve-indentation)
  158. block-nindent total-nindent ovl lang lang-f single lfmt code begline buffer)
  159. (if (not info)
  160. nil
  161. (setq beg (move-marker beg (nth 0 info))
  162. end (move-marker end (nth 1 info))
  163. code (buffer-substring-no-properties beg end)
  164. lang (or (cdr (assoc (nth 2 info) org-src-lang-modes))
  165. (nth 2 info))
  166. lang (if (symbolp lang) (symbol-name lang) lang)
  167. single (nth 3 info)
  168. lfmt (nth 4 info)
  169. block-nindent (nth 5 info)
  170. lang-f (intern (concat lang "-mode"))
  171. begline (save-excursion (goto-char beg) (org-current-line)))
  172. (unless (functionp lang-f)
  173. (error "No such language mode: %s" lang-f))
  174. (org-goto-line line)
  175. (if (and (setq buffer (org-edit-src-find-buffer beg end))
  176. (if org-src-ask-before-returning-to-edit-buffer
  177. (y-or-n-p "Return to existing edit buffer? [n] will revert changes: ") t))
  178. (switch-to-buffer buffer)
  179. (when buffer
  180. (with-current-buffer buffer
  181. (if (boundp 'org-edit-src-overlay)
  182. (org-delete-overlay org-edit-src-overlay)))
  183. (kill-buffer buffer))
  184. (setq buffer (generate-new-buffer
  185. (org-src-construct-edit-buffer-name (buffer-name) lang)))
  186. (setq ovl (org-make-overlay beg end))
  187. (org-overlay-put ovl 'face 'secondary-selection)
  188. (org-overlay-put ovl 'edit-buffer buffer)
  189. (org-overlay-put ovl 'help-echo "Click with mouse-1 to switch to buffer editing this segment")
  190. (org-overlay-put ovl 'face 'secondary-selection)
  191. (org-overlay-put ovl
  192. 'keymap
  193. (let ((map (make-sparse-keymap)))
  194. (define-key map [mouse-1] 'org-edit-src-continue)
  195. map))
  196. (org-overlay-put ovl :read-only "Leave me alone")
  197. (switch-to-buffer buffer)
  198. (if (eq single 'macro-definition)
  199. (setq code (replace-regexp-in-string "\\\\n" "\n" code t t)))
  200. (insert code)
  201. (remove-text-properties (point-min) (point-max)
  202. '(display nil invisible nil intangible nil))
  203. (unless preserve-indentation
  204. (setq total-nindent (or (org-do-remove-indentation) 0)))
  205. (let ((org-inhibit-startup t))
  206. (funcall lang-f))
  207. (set (make-local-variable 'org-edit-src-force-single-line) single)
  208. (set (make-local-variable 'org-edit-src-from-org-mode) org-mode-p)
  209. (set (make-local-variable 'org-src-preserve-indentation) preserve-indentation)
  210. (when lfmt
  211. (set (make-local-variable 'org-coderef-label-format) lfmt))
  212. (when org-mode-p
  213. (goto-char (point-min))
  214. (while (re-search-forward "^," nil t)
  215. (if (eq (org-current-line) line) (setq total-nindent (1+ total-nindent)))
  216. (replace-match "")))
  217. (org-goto-line (1+ (- line begline)))
  218. (org-move-to-column
  219. (if preserve-indentation col (max 0 (- col total-nindent))))
  220. (org-set-local 'org-edit-src-beg-marker beg)
  221. (org-set-local 'org-edit-src-end-marker end)
  222. (org-set-local 'org-edit-src-overlay ovl)
  223. (org-set-local 'org-edit-src-block-indentation block-nindent)
  224. (org-src-mode)
  225. (set-buffer-modified-p nil)
  226. (and org-edit-src-persistent-message
  227. (org-set-local 'header-line-format msg)))
  228. (message "%s" msg)
  229. t)))
  230. (defun org-edit-src-continue (e)
  231. (interactive "e")
  232. (mouse-set-point e)
  233. (let ((buf (get-char-property (point) 'edit-buffer)))
  234. (if buf (switch-to-buffer buf)
  235. (error "Something is wrong here"))))
  236. (defun org-src-construct-edit-buffer-name (org-buffer-name lang)
  237. "Construct the buffer name for a source editing buffer"
  238. (concat "*Org Src " org-buffer-name "[ " lang " ]*"))
  239. (defun org-edit-src-find-buffer (beg end)
  240. "Find a source editing buffer that is already editing the region BEG to END."
  241. (catch 'exit
  242. (mapc
  243. (lambda (b)
  244. (with-current-buffer b
  245. (if (and (string-match "\\`*Org Src " (buffer-name))
  246. (local-variable-p 'org-edit-src-beg-marker (current-buffer))
  247. (local-variable-p 'org-edit-src-end-marker (current-buffer))
  248. (equal beg org-edit-src-beg-marker)
  249. (equal end org-edit-src-end-marker))
  250. (throw 'exit (current-buffer)))))
  251. (buffer-list))
  252. nil))
  253. (defun org-edit-fixed-width-region ()
  254. "Edit the fixed-width ascii drawing at point.
  255. This must be a region where each line starts with a colon followed by
  256. a space character.
  257. An new buffer is created and the fixed-width region is copied into it,
  258. and the buffer is switched into `artist-mode' for editing. When done,
  259. exit with \\[org-edit-src-exit]. The edited text will then replace
  260. the fragment in the Org-mode buffer."
  261. (interactive)
  262. (let ((line (org-current-line))
  263. (col (current-column))
  264. (case-fold-search t)
  265. (msg (substitute-command-keys
  266. "Edit, then exit with C-c ' (C-c and single quote)"))
  267. (org-mode-p (eq major-mode 'org-mode))
  268. (beg (make-marker))
  269. (end (make-marker))
  270. (preserve-indentation org-src-preserve-indentation)
  271. block-nindent ovl beg1 end1 code begline buffer)
  272. (beginning-of-line 1)
  273. (if (looking-at "[ \t]*[^:\n \t]")
  274. nil
  275. (if (looking-at "[ \t]*\\(\n\\|\\'\\)")
  276. (setq beg1 (point) end1 beg1)
  277. (save-excursion
  278. (if (re-search-backward "^[ \t]*[^: \t]" nil 'move)
  279. (setq beg1 (point-at-bol 2))
  280. (setq beg1 (point))))
  281. (save-excursion
  282. (if (re-search-forward "^[ \t]*[^: \t]" nil 'move)
  283. (setq end1 (1- (match-beginning 0)))
  284. (setq end1 (point))))
  285. (org-goto-line line))
  286. (setq beg (move-marker beg beg1)
  287. end (move-marker end end1)
  288. code (buffer-substring-no-properties beg end)
  289. begline (save-excursion (goto-char beg) (org-current-line)))
  290. (if (and (setq buffer (org-edit-src-find-buffer beg end))
  291. (y-or-n-p "Return to existing edit buffer? [n] will revert changes: "))
  292. (switch-to-buffer buffer)
  293. (when buffer
  294. (with-current-buffer buffer
  295. (if (boundp 'org-edit-src-overlay)
  296. (org-delete-overlay org-edit-src-overlay)))
  297. (kill-buffer buffer))
  298. (setq buffer (generate-new-buffer
  299. (org-src-construct-edit-buffer-name
  300. (buffer-name) "Fixed Width")))
  301. (setq ovl (org-make-overlay beg end))
  302. (org-overlay-put ovl 'face 'secondary-selection)
  303. (org-overlay-put ovl 'edit-buffer buffer)
  304. (org-overlay-put ovl 'help-echo "Click with mouse-1 to switch to buffer editing this segment")
  305. (org-overlay-put ovl 'face 'secondary-selection)
  306. (org-overlay-put ovl
  307. 'keymap
  308. (let ((map (make-sparse-keymap)))
  309. (define-key map [mouse-1] 'org-edit-src-continue)
  310. map))
  311. (org-overlay-put ovl :read-only "Leave me alone")
  312. (switch-to-buffer buffer)
  313. (insert code)
  314. (remove-text-properties (point-min) (point-max)
  315. '(display nil invisible nil intangible nil))
  316. (setq block-nindent (or (org-do-remove-indentation) 0))
  317. (cond
  318. ((eq org-edit-fixed-width-region-mode 'artist-mode)
  319. (fundamental-mode)
  320. (artist-mode 1))
  321. (t (funcall org-edit-fixed-width-region-mode)))
  322. (set (make-local-variable 'org-edit-src-force-single-line) nil)
  323. (set (make-local-variable 'org-edit-src-from-org-mode) org-mode-p)
  324. (set (make-local-variable 'org-edit-src-picture) t)
  325. (goto-char (point-min))
  326. (while (re-search-forward "^[ \t]*: ?" nil t)
  327. (replace-match ""))
  328. (org-goto-line (1+ (- line begline)))
  329. (org-move-to-column (max 0 (- col block-nindent 2)))
  330. (org-set-local 'org-edit-src-beg-marker beg)
  331. (org-set-local 'org-edit-src-end-marker end)
  332. (org-set-local 'org-edit-src-overlay ovl)
  333. (org-set-local 'org-edit-src-block-indentation block-nindent)
  334. (org-set-local 'org-edit-src-content-indentation 0)
  335. (org-set-local 'org-src-preserve-indentation nil)
  336. (org-src-mode)
  337. (set-buffer-modified-p nil)
  338. (and org-edit-src-persistent-message
  339. (org-set-local 'header-line-format msg)))
  340. (message "%s" msg)
  341. t)))
  342. (defun org-edit-src-find-region-and-lang ()
  343. "Find the region and language for a local edit.
  344. Return a list with beginning and end of the region, a string representing
  345. the language, a switch telling if the content should be in a single line."
  346. (let ((re-list
  347. (append
  348. org-edit-src-region-extra
  349. '(
  350. ("<src\\>[^<]*>[ \t]*\n?" "\n?[ \t]*</src>" lang)
  351. ("<literal\\>[^<]*>[ \t]*\n?" "\n?[ \t]*</literal>" style)
  352. ("<example>[ \t]*\n?" "\n?[ \t]*</example>" "fundamental")
  353. ("<lisp>[ \t]*\n?" "\n?[ \t]*</lisp>" "emacs-lisp")
  354. ("<perl>[ \t]*\n?" "\n?[ \t]*</perl>" "perl")
  355. ("<python>[ \t]*\n?" "\n?[ \t]*</python>" "python")
  356. ("<ruby>[ \t]*\n?" "\n?[ \t]*</ruby>" "ruby")
  357. ("^[ \t]*#\\+begin_src\\( \\([^ \t\n]+\\)\\)?.*\n" "\n[ \t]*#\\+end_src" 2)
  358. ("^[ \t]*#\\+begin_example.*\n" "\n[ \t]*#\\+end_example" "fundamental")
  359. ("^[ \t]*#\\+html:" "\n" "html" single-line)
  360. ("^[ \t]*#\\+begin_html.*\n" "\n[ \t]*#\\+end_html" "html")
  361. ("^[ \t]*#\\+latex:" "\n" "latex" single-line)
  362. ("^[ \t]*#\\+begin_latex.*\n" "\n[ \t]*#\\+end_latex" "latex")
  363. ("^[ \t]*#\\+ascii:" "\n" "fundamental" single-line)
  364. ("^[ \t]*#\\+begin_ascii.*\n" "\n[ \t]*#\\+end_ascii" "fundamental")
  365. ("^[ \t]*#\\+docbook:" "\n" "xml" single-line)
  366. ("^[ \t]*#\\+macro:[ \t]+\\S-+\\( \\|$\\)"
  367. "\n" "fundamental" macro-definition)
  368. ("^[ \t]*#\\+begin_docbook.*\n" "\n[ \t]*#\\+end_docbook" "xml")
  369. )))
  370. (pos (point))
  371. re1 re2 single beg end lang lfmt match-re1 ind entry)
  372. (catch 'exit
  373. (while (setq entry (pop re-list))
  374. (setq re1 (car entry) re2 (nth 1 entry) lang (nth 2 entry)
  375. single (nth 3 entry))
  376. (save-excursion
  377. (if (or (looking-at re1)
  378. (re-search-backward re1 nil t))
  379. (progn
  380. (setq match-re1 (match-string 0))
  381. (setq beg (match-end 0)
  382. lang (org-edit-src-get-lang lang)
  383. lfmt (org-edit-src-get-label-format match-re1)
  384. ind (org-edit-src-get-indentation (match-beginning 0)))
  385. (if (and (re-search-forward re2 nil t)
  386. (>= (match-end 0) pos))
  387. (throw 'exit (list beg (match-beginning 0)
  388. lang single lfmt ind))))
  389. (if (or (looking-at re2)
  390. (re-search-forward re2 nil t))
  391. (progn
  392. (setq end (match-beginning 0))
  393. (if (and (re-search-backward re1 nil t)
  394. (<= (match-beginning 0) pos))
  395. (progn
  396. (setq lfmt (org-edit-src-get-label-format
  397. (match-string 0))
  398. ind (org-edit-src-get-indentation
  399. (match-beginning 0)))
  400. (throw 'exit
  401. (list (match-end 0) end
  402. (org-edit-src-get-lang lang)
  403. single lfmt ind))))))))))))
  404. (defun org-edit-src-get-lang (lang)
  405. "Extract the src language."
  406. (let ((m (match-string 0)))
  407. (cond
  408. ((stringp lang) lang)
  409. ((integerp lang) (match-string lang))
  410. ((and (eq lang 'lang)
  411. (string-match "\\<lang=\"\\([^ \t\n\"]+\\)\"" m))
  412. (match-string 1 m))
  413. ((and (eq lang 'style)
  414. (string-match "\\<style=\"\\([^ \t\n\"]+\\)\"" m))
  415. (match-string 1 m))
  416. (t "fundamental"))))
  417. (defun org-edit-src-get-label-format (s)
  418. "Extract the label format."
  419. (save-match-data
  420. (if (string-match "-l[ \t]+\\\\?\"\\([^\t\r\n\"]+\\)\\\\?\"" s)
  421. (match-string 1 s))))
  422. (defun org-edit-src-get-indentation (pos)
  423. "Count leading whitespace characters on line"
  424. (save-match-data
  425. (goto-char pos)
  426. (org-get-indentation)))
  427. (defun org-edit-src-exit ()
  428. "Exit special edit and protect problematic lines."
  429. (interactive)
  430. (unless org-edit-src-from-org-mode
  431. (error "This is not a sub-editing buffer, something is wrong..."))
  432. (let* ((beg org-edit-src-beg-marker)
  433. (end org-edit-src-end-marker)
  434. (ovl org-edit-src-overlay)
  435. (buffer (current-buffer))
  436. (single (org-bound-and-true-p org-edit-src-force-single-line))
  437. (macro (eq single 'macro-definition))
  438. (total-nindent (+ (or org-edit-src-block-indentation 0)
  439. org-edit-src-content-indentation))
  440. (preserve-indentation org-src-preserve-indentation)
  441. (delta 0) code line col indent)
  442. (untabify (point-min) (point-max))
  443. (save-excursion
  444. (goto-char (point-min))
  445. (if (looking-at "[ \t\n]*\n") (replace-match ""))
  446. (unless macro
  447. (if (re-search-forward "\n[ \t\n]*\\'" nil t) (replace-match ""))))
  448. (setq line (if (org-bound-and-true-p org-edit-src-force-single-line)
  449. 1
  450. (org-current-line))
  451. col (current-column))
  452. (when single
  453. (goto-char (point-min))
  454. (if (re-search-forward "\\s-+\\'" nil t) (replace-match ""))
  455. (goto-char (point-min))
  456. (let ((cnt 0))
  457. (while (re-search-forward "\n" nil t)
  458. (setq cnt (1+ cnt))
  459. (replace-match (if macro "\\n" " ") t t))
  460. (when (and macro (> cnt 0))
  461. (goto-char (point-max)) (insert "\\n")))
  462. (goto-char (point-min))
  463. (if (looking-at "\\s-*") (replace-match " ")))
  464. (when (org-bound-and-true-p org-edit-src-from-org-mode)
  465. (goto-char (point-min))
  466. (while (re-search-forward
  467. (if (org-mode-p) "^\\(.\\)" "^\\([*]\\|[ \t]*#\\+\\)") nil t)
  468. (if (eq (org-current-line) line) (setq delta (1+ delta)))
  469. (replace-match ",\\1")))
  470. (when (org-bound-and-true-p org-edit-src-picture)
  471. (setq preserve-indentation nil)
  472. (untabify (point-min) (point-max))
  473. (goto-char (point-min))
  474. (while (re-search-forward "^" nil t)
  475. (replace-match ": ")))
  476. (unless (or single preserve-indentation (= total-nindent 0))
  477. (setq indent (make-string total-nindent ?\ ))
  478. (goto-char (point-min))
  479. (while (re-search-forward "^" nil t)
  480. (replace-match indent)))
  481. (if (org-bound-and-true-p org-edit-src-picture)
  482. (setq total-nindent (+ total-nindent 2)))
  483. (setq code (buffer-string))
  484. (set-buffer-modified-p nil)
  485. (switch-to-buffer (marker-buffer beg))
  486. (kill-buffer buffer)
  487. (goto-char beg)
  488. (delete-region beg end)
  489. (insert code)
  490. (goto-char beg)
  491. (if single (just-one-space))
  492. (org-goto-line (1- (+ (org-current-line) line)))
  493. (org-move-to-column (if preserve-indentation col (+ col total-nindent delta)))
  494. (move-marker beg nil)
  495. (move-marker end nil)))
  496. (defun org-edit-src-save ()
  497. "Save parent buffer with current state source-code buffer."
  498. (interactive)
  499. (let ((p (point)) (m (mark)) msg)
  500. (save-window-excursion
  501. (org-edit-src-exit)
  502. (save-buffer)
  503. (setq msg (current-message))
  504. (org-edit-src-code))
  505. (push-mark m 'nomessage)
  506. (goto-char (min p (point-max)))
  507. (message (or msg ""))))
  508. (defun org-src-mode-configure-edit-buffer ()
  509. (when org-edit-src-from-org-mode
  510. (setq buffer-offer-save t)
  511. (setq buffer-file-name
  512. (concat (buffer-file-name (marker-buffer org-edit-src-beg-marker))
  513. "[" (buffer-name) "]"))
  514. (set (if (featurep 'xemacs) 'write-contents-hooks 'write-contents-functions)
  515. '(org-edit-src-save))
  516. (org-add-hook 'kill-buffer-hook
  517. '(lambda () (org-delete-overlay org-edit-src-overlay)) nil 'local)))
  518. (org-add-hook 'org-src-mode-hook 'org-src-mode-configure-edit-buffer)
  519. (provide 'org-src)
  520. ;; arch-tag: 6a1fc84f-dec7-47be-a416-64be56bea5d8
  521. ;;; org-src.el ends here