org-src.el 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  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.27trans
  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. (defcustom org-edit-src-region-extra nil
  33. "Additional regexps to identify regions for editing with `org-edit-src-code'.
  34. For examples see the function `org-edit-src-find-region-and-lang'.
  35. The regular expression identifying the begin marker should end with a newline,
  36. and the regexp marking the end line should start with a newline, to make sure
  37. there are kept outside the narrowed region."
  38. :group 'org-edit-structure
  39. :type '(repeat
  40. (list
  41. (regexp :tag "begin regexp")
  42. (regexp :tag "end regexp")
  43. (choice :tag "language"
  44. (string :tag "specify")
  45. (integer :tag "from match group")
  46. (const :tag "from `lang' element")
  47. (const :tag "from `style' element")))))
  48. (defcustom org-coderef-label-format "(ref:%s)"
  49. "The default coderef format.
  50. This format string will be used to search for coderef labels in literal
  51. examples (EXAMPLE and SRC blocks). The format can be overwritten
  52. an individual literal example with the -f option, like
  53. #+BEGIN_SRC pascal +n -r -l \"((%s))\"
  54. ...
  55. #+END_SRC
  56. If you want to use this for HTML export, make sure that the format does
  57. not introduce special font-locking, and avoid the HTML special
  58. characters `<', `>', and `&'. The reason for this restriction is that
  59. the labels are searched for only after htmlize has done its job."
  60. :group 'org-edit-structure ; FIXME this is not in the right group
  61. :type 'string)
  62. (defcustom org-edit-fixed-width-region-mode 'artist-mode
  63. "The mode that should be used to edit fixed-width regions.
  64. These are the regions where each line starts with a colon."
  65. :group 'org-edit-structure
  66. :type '(choice
  67. (const artist-mode)
  68. (const picture-mode)
  69. (const fundamental-mode)
  70. (function :tag "Other (specify)")))
  71. (defcustom org-edit-src-persistent-message t
  72. "Non-nil means show persistent exit help message while editing src examples.
  73. The message is shown in the header-line, which will be created in the
  74. first line of the window showing the editing buffer.
  75. When nil, the message will only be shown intermittently in the echo area."
  76. :group 'org-edit-structure
  77. :type 'boolean)
  78. (defvar org-src-mode-hook nil
  79. "Hook run after Org switched a source code snippet to its Emacs mode.
  80. This hook will run
  81. - when editing a source code snippet with \"C-c '\".
  82. - When formatting a source code snippet for export with htmlize.
  83. You may want to use this hook for example to turn off `outline-minor-mode'
  84. or similar things which you want to have when editing a source code file,
  85. but which mess up the display of a snippet in Org exported files.")
  86. (defvar org-protecting-blocks
  87. '("src" "example" "latex" "ascii" "html" "docbook")
  88. "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
  89. This is needed for font-lock setup.")
  90. ;;; Editing source examples
  91. (defvar org-exit-edit-mode-map (make-sparse-keymap))
  92. (define-key org-exit-edit-mode-map "\C-c'" 'org-edit-src-exit)
  93. (define-key org-exit-edit-mode-map "\C-x\C-s" 'org-edit-src-save)
  94. (defvar org-edit-src-force-single-line nil)
  95. (defvar org-edit-src-from-org-mode nil)
  96. (defvar org-edit-src-picture nil)
  97. (defvar org-edit-src-beg-marker nil)
  98. (defvar org-edit-src-end-marker nil)
  99. (defvar org-edit-src-overlay nil)
  100. (defvar org-edit-src-nindent nil)
  101. (define-minor-mode org-exit-edit-mode
  102. "Minor mode installing a single key binding, \"C-c '\" to exit special edit.")
  103. (defun org-edit-src-code ()
  104. "Edit the source code example at point.
  105. The example is copied to a separate buffer, and that buffer is switched
  106. to the correct language mode. When done, exit with \\[org-edit-src-exit].
  107. This will remove the original code in the Org buffer, and replace it with
  108. the edited version."
  109. (interactive)
  110. (let ((line (org-current-line))
  111. (case-fold-search t)
  112. (msg (substitute-command-keys
  113. "Edit, then exit with C-c ' (C-c and single quote)"))
  114. (info (org-edit-src-find-region-and-lang))
  115. (org-mode-p (eq major-mode 'org-mode))
  116. (beg (make-marker))
  117. (end (make-marker))
  118. nindent ovl lang lang-f single lfmt code begline buffer)
  119. (if (not info)
  120. nil
  121. (setq beg (move-marker beg (nth 0 info))
  122. end (move-marker end (nth 1 info))
  123. code (buffer-substring-no-properties beg end)
  124. lang (nth 2 info)
  125. single (nth 3 info)
  126. lfmt (nth 4 info)
  127. nindent (nth 5 info)
  128. lang-f (intern (concat lang "-mode"))
  129. begline (save-excursion (goto-char beg) (org-current-line)))
  130. (unless (functionp lang-f)
  131. (error "No such language mode: %s" lang-f))
  132. (goto-line line)
  133. (if (and (setq buffer (org-edit-src-find-buffer beg end))
  134. (y-or-n-p "Return to existing edit buffer? [n] will revert changes: "))
  135. (switch-to-buffer buffer)
  136. (when buffer
  137. (with-current-buffer buffer
  138. (if (boundp 'org-edit-src-overlay)
  139. (org-delete-overlay org-edit-src-overlay)))
  140. (kill-buffer buffer))
  141. (setq buffer (generate-new-buffer "*Org Edit Src Example*"))
  142. (setq ovl (org-make-overlay beg end))
  143. (org-overlay-put ovl 'face 'secondary-selection)
  144. (org-overlay-put ovl 'edit-buffer buffer)
  145. (org-overlay-put ovl 'help-echo "Click with mouse-1 to switch to buffer editing this segment")
  146. (org-overlay-put ovl 'face 'secondary-selection)
  147. (org-overlay-put ovl
  148. 'keymap
  149. (let ((map (make-sparse-keymap)))
  150. (define-key map [mouse-1] 'org-edit-src-continue)
  151. map))
  152. (org-overlay-put ovl :read-only "Leave me alone")
  153. (switch-to-buffer buffer)
  154. (insert code)
  155. (remove-text-properties (point-min) (point-max)
  156. '(display nil invisible nil intangible nil))
  157. (org-do-remove-indentation)
  158. (let ((org-inhibit-startup t))
  159. (funcall lang-f)
  160. (run-hooks 'org-src-mode-hook))
  161. (set (make-local-variable 'org-edit-src-force-single-line) single)
  162. (set (make-local-variable 'org-edit-src-from-org-mode) org-mode-p)
  163. (when lfmt
  164. (set (make-local-variable 'org-coderef-label-format) lfmt))
  165. (when org-mode-p
  166. (goto-char (point-min))
  167. (while (re-search-forward "^," nil t)
  168. (replace-match "")))
  169. (goto-line (1+ (- line begline)))
  170. (org-exit-edit-mode)
  171. (org-set-local 'org-edit-src-beg-marker beg)
  172. (org-set-local 'org-edit-src-end-marker end)
  173. (org-set-local 'org-edit-src-overlay ovl)
  174. (org-set-local 'org-edit-src-nindent nindent)
  175. (and org-edit-src-persistent-message
  176. (org-set-local 'header-line-format msg)))
  177. (message "%s" msg)
  178. t)))
  179. (defun org-edit-src-continue (e)
  180. (interactive "e")
  181. (mouse-set-point e)
  182. (let ((buf (get-char-property (point) 'edit-buffer)))
  183. (if buf (switch-to-buffer buf)
  184. (error "Something is wrong here"))))
  185. (defun org-edit-src-find-buffer (beg end)
  186. "Find a source editing buffer that is already editing the region BEG to END."
  187. (catch 'exit
  188. (mapc
  189. (lambda (b)
  190. (with-current-buffer b
  191. (if (and (string-match "\\`*Org Edit " (buffer-name))
  192. (local-variable-p 'org-edit-src-beg-marker (current-buffer))
  193. (local-variable-p 'org-edit-src-end-marker (current-buffer))
  194. (equal beg org-edit-src-beg-marker)
  195. (equal end org-edit-src-end-marker))
  196. (throw 'exit (current-buffer)))))
  197. (buffer-list))
  198. nil))
  199. (defun org-edit-fixed-width-region ()
  200. "Edit the fixed-width ascii drawing at point.
  201. This must be a region where each line starts with a colon followed by
  202. a space character.
  203. An new buffer is created and the fixed-width region is copied into it,
  204. and the buffer is switched into `artist-mode' for editing. When done,
  205. exit with \\[org-edit-src-exit]. The edited text will then replace
  206. the fragment in the Org-mode buffer."
  207. (interactive)
  208. (let ((line (org-current-line))
  209. (case-fold-search t)
  210. (msg (substitute-command-keys
  211. "Edit, then exit with C-c ' (C-c and single quote)"))
  212. (org-mode-p (eq major-mode 'org-mode))
  213. (beg (make-marker))
  214. (end (make-marker))
  215. nindent ovl beg1 end1 code begline buffer)
  216. (beginning-of-line 1)
  217. (if (looking-at "[ \t]*[^:\n \t]")
  218. nil
  219. (if (looking-at "[ \t]*\\(\n\\|\\'\\)")
  220. (setq beg1 (point) end1 beg1)
  221. (save-excursion
  222. (if (re-search-backward "^[ \t]*[^: \t]" nil 'move)
  223. (setq beg1 (point-at-bol 2))
  224. (setq beg1 (point))))
  225. (save-excursion
  226. (if (re-search-forward "^[ \t]*[^: \t]" nil 'move)
  227. (setq end1 (1- (match-beginning 0)))
  228. (setq end1 (point))))
  229. (goto-line line))
  230. (setq beg (move-marker beg beg1)
  231. end (move-marker end end1)
  232. code (buffer-substring-no-properties beg end)
  233. begline (save-excursion (goto-char beg) (org-current-line)))
  234. (if (and (setq buffer (org-edit-src-find-buffer beg end))
  235. (y-or-n-p "Return to existing edit buffer? [n] will revert changes: "))
  236. (switch-to-buffer buffer)
  237. (when buffer
  238. (with-current-buffer buffer
  239. (if (boundp 'org-edit-src-overlay)
  240. (org-delete-overlay org-edit-src-overlay)))
  241. (kill-buffer buffer))
  242. (setq buffer (generate-new-buffer "*Org Edit Src Example*"))
  243. (setq ovl (org-make-overlay beg end))
  244. (org-overlay-put ovl 'face 'secondary-selection)
  245. (org-overlay-put ovl 'edit-buffer buffer)
  246. (org-overlay-put ovl 'help-echo "Click with mouse-1 to switch to buffer editing this segment")
  247. (org-overlay-put ovl 'face 'secondary-selection)
  248. (org-overlay-put ovl
  249. 'keymap
  250. (let ((map (make-sparse-keymap)))
  251. (define-key map [mouse-1] 'org-edit-src-continue)
  252. map))
  253. (org-overlay-put ovl :read-only "Leave me alone")
  254. (switch-to-buffer buffer)
  255. (insert code)
  256. (remove-text-properties (point-min) (point-max)
  257. '(display nil invisible nil intangible nil))
  258. (setq nindent (org-do-remove-indentation))
  259. (cond
  260. ((eq org-edit-fixed-width-region-mode 'artist-mode)
  261. (fundamental-mode)
  262. (artist-mode 1))
  263. (t (funcall org-edit-fixed-width-region-mode)))
  264. (set (make-local-variable 'org-edit-src-force-single-line) nil)
  265. (set (make-local-variable 'org-edit-src-from-org-mode) org-mode-p)
  266. (set (make-local-variable 'org-edit-src-picture) t)
  267. (goto-char (point-min))
  268. (while (re-search-forward "^[ \t]*: ?" nil t)
  269. (replace-match ""))
  270. (goto-line (1+ (- line begline)))
  271. (org-exit-edit-mode)
  272. (org-set-local 'org-edit-src-beg-marker beg)
  273. (org-set-local 'org-edit-src-end-marker end)
  274. (org-set-local 'org-edit-src-overlay ovl)
  275. (org-set-local 'org-edit-src-nindent nindent)
  276. (and org-edit-src-persistent-message
  277. (org-set-local 'header-line-format msg)))
  278. (message "%s" msg)
  279. t)))
  280. (defun org-edit-src-find-region-and-lang ()
  281. "Find the region and language for a local edit.
  282. Return a list with beginning and end of the region, a string representing
  283. the language, a switch telling of the content should be in a single line."
  284. (let ((re-list
  285. (append
  286. org-edit-src-region-extra
  287. '(
  288. ("<src\\>[^<]*>[ \t]*\n?" "\n?[ \t]*</src>" lang)
  289. ("<literal\\>[^<]*>[ \t]*\n?" "\n?[ \t]*</literal>" style)
  290. ("<example>[ \t]*\n?" "\n?[ \t]*</example>" "fundamental")
  291. ("<lisp>[ \t]*\n?" "\n?[ \t]*</lisp>" "emacs-lisp")
  292. ("<perl>[ \t]*\n?" "\n?[ \t]*</perl>" "perl")
  293. ("<python>[ \t]*\n?" "\n?[ \t]*</python>" "python")
  294. ("<ruby>[ \t]*\n?" "\n?[ \t]*</ruby>" "ruby")
  295. ("^[ \t]*#\\+begin_src\\( \\([^ \t\n]+\\)\\)?.*\n" "\n[ \t]*#\\+end_src" 2)
  296. ("^[ \t]*#\\+begin_example.*\n" "\n[ \t]*#\\+end_example" "fundamental")
  297. ("^[ \t]*#\\+html:" "\n" "html" single-line)
  298. ("^[ \t]*#\\+begin_html.*\n" "\n[ \t]*#\\+end_html" "html")
  299. ("^[ \t]*#\\+latex:" "\n" "latex" single-line)
  300. ("^[ \t]*#\\+begin_latex.*\n" "\n[ \t]*#\\+end_latex" "latex")
  301. ("^[ \t]*#\\+ascii:" "\n" "fundamental" single-line)
  302. ("^[ \t]*#\\+begin_ascii.*\n" "\n[ \t]*#\\+end_ascii" "fundamental")
  303. ("^[ \t]*#\\+docbook:" "\n" "xml" single-line)
  304. ("^[ \t]*#\\+begin_docbook.*\n" "\n[ \t]*#\\+end_docbook" "xml")
  305. )))
  306. (pos (point))
  307. re1 re2 single beg end lang lfmt match-re1 ind entry)
  308. (catch 'exit
  309. (while (setq entry (pop re-list))
  310. (setq re1 (car entry) re2 (nth 1 entry) lang (nth 2 entry)
  311. single (nth 3 entry))
  312. (save-excursion
  313. (if (or (looking-at re1)
  314. (re-search-backward re1 nil t))
  315. (progn
  316. (setq match-re1 (match-string 0))
  317. (setq beg (match-end 0)
  318. lang (org-edit-src-get-lang lang)
  319. lfmt (org-edit-src-get-label-format match-re1)
  320. ind (org-edit-src-get-indentation (match-beginning 0)))
  321. (if (and (re-search-forward re2 nil t)
  322. (>= (match-end 0) pos))
  323. (throw 'exit (list beg (match-beginning 0)
  324. lang single lfmt ind))))
  325. (if (or (looking-at re2)
  326. (re-search-forward re2 nil t))
  327. (progn
  328. (setq end (match-beginning 0))
  329. (if (and (re-search-backward re1 nil t)
  330. (<= (match-beginning 0) pos))
  331. (progn
  332. (setq lfmt (org-edit-src-get-label-format
  333. (match-string 0))
  334. ind (org-edit-src-get-indentation
  335. (match-beginning 0)))
  336. (throw 'exit
  337. (list (match-end 0) end
  338. (org-edit-src-get-lang lang)
  339. single lfmt ind))))))))))))
  340. (defun org-edit-src-get-lang (lang)
  341. "Extract the src language."
  342. (let ((m (match-string 0)))
  343. (cond
  344. ((stringp lang) lang)
  345. ((integerp lang) (match-string lang))
  346. ((and (eq lang 'lang)
  347. (string-match "\\<lang=\"\\([^ \t\n\"]+\\)\"" m))
  348. (match-string 1 m))
  349. ((and (eq lang 'style)
  350. (string-match "\\<style=\"\\([^ \t\n\"]+\\)\"" m))
  351. (match-string 1 m))
  352. (t "fundamental"))))
  353. (defun org-edit-src-get-label-format (s)
  354. "Extract the label format."
  355. (save-match-data
  356. (if (string-match "-l[ \t]+\\\\?\"\\([^\t\r\n\"]+\\)\\\\?\"" s)
  357. (match-string 1 s))))
  358. (defun org-edit-src-get-indentation (pos)
  359. "Extract the label format."
  360. (save-match-data
  361. (goto-char pos)
  362. (org-get-indentation)))
  363. (defun org-edit-src-exit ()
  364. "Exit special edit and protect problematic lines."
  365. (interactive)
  366. (unless (string-match "\\`*Org Edit " (buffer-name (current-buffer)))
  367. (error "This is not an sub-editing buffer, something is wrong..."))
  368. (let ((line (if (org-bound-and-true-p org-edit-src-force-single-line)
  369. 1
  370. (org-current-line)))
  371. (beg org-edit-src-beg-marker)
  372. (end org-edit-src-end-marker)
  373. (ovl org-edit-src-overlay)
  374. (buffer (current-buffer))
  375. (nindent org-edit-src-nindent)
  376. code)
  377. (goto-char (point-min))
  378. (if (looking-at "[ \t\n]*\n") (replace-match ""))
  379. (if (re-search-forward "\n[ \t\n]*\\'" nil t) (replace-match ""))
  380. (when (org-bound-and-true-p org-edit-src-force-single-line)
  381. (goto-char (point-min))
  382. (while (re-search-forward "\n" nil t)
  383. (replace-match " "))
  384. (goto-char (point-min))
  385. (if (looking-at "\\s-*") (replace-match " "))
  386. (if (re-search-forward "\\s-+\\'" nil t)
  387. (replace-match "")))
  388. (when (org-bound-and-true-p org-edit-src-from-org-mode)
  389. (goto-char (point-min))
  390. (while (re-search-forward
  391. (if (org-mode-p) "^\\(.\\)" "^\\([*]\\|[ \t]*#\\+\\)") nil t)
  392. (replace-match ",\\1")))
  393. (when (org-bound-and-true-p org-edit-src-picture)
  394. (untabify (point-min) (point-max))
  395. (goto-char (point-min))
  396. (while (re-search-forward "^" nil t)
  397. (replace-match ": ")))
  398. (when nindent
  399. (setq nindent (make-string nindent ?\ ))
  400. (goto-char (point-min))
  401. (while (re-search-forward "^" nil t)
  402. (replace-match nindent)))
  403. (setq code (buffer-string))
  404. (switch-to-buffer (marker-buffer beg))
  405. (kill-buffer buffer)
  406. (goto-char beg)
  407. (org-delete-overlay ovl)
  408. (delete-region beg end)
  409. (insert code)
  410. (goto-char beg)
  411. (goto-line (1- (+ (org-current-line) line)))
  412. (move-marker beg nil)
  413. (move-marker end nil)))
  414. (defun org-edit-src-save ()
  415. "Save parent buffer with current state source-code buffer."
  416. (interactive)
  417. (let ((p (point)) (m (mark)) msg)
  418. (org-edit-src-exit)
  419. (save-buffer)
  420. (setq msg (current-message))
  421. (org-edit-src-code)
  422. (push-mark m 'nomessage)
  423. (goto-char (min p (point-max)))
  424. (message (or msg ""))))
  425. (provide 'org-src)
  426. ;; arch-tag: 6a1fc84f-dec7-47be-a416-64be56bea5d8
  427. ;;; org-src.el ends here