Sync Org 7.9.2 from the commit tagged "release_7.9.2" in Org's Git repo.
[bpt/emacs.git] / lisp / org / org-src.el
CommitLineData
c8d0cf5c
CD
1;;; org-src.el --- Source code examples in Org
2;;
b73f1974 3;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
c8d0cf5c
CD
4;;
5;; Author: Carsten Dominik <carsten at orgmode dot org>
e66ba1df 6;; Bastien Guerry <bzg AT gnu DOT org>
8bfe682a 7;; Dan Davison <davison at stats dot ox dot ac dot uk>
c8d0cf5c
CD
8;; Keywords: outlines, hypermedia, calendar, wp
9;; Homepage: http://orgmode.org
c8d0cf5c
CD
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
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
23;; You should have received a copy of the GNU General Public License
24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
26;;
27;;; Commentary:
28
29;; This file contains the code dealing with source code examples in Org-mode.
30
31;;; Code:
32
33(require 'org-macs)
34(require 'org-compat)
afe98dfa
CD
35(require 'ob-keys)
36(require 'ob-comint)
8bfe682a
CD
37(eval-when-compile
38 (require 'cl))
c8d0cf5c
CD
39
40(declare-function org-do-remove-indentation "org" (&optional n))
ed21c5c8 41(declare-function org-at-table.el-p "org" ())
c8d0cf5c 42(declare-function org-get-indentation "org" (&optional line))
8bfe682a 43(declare-function org-switch-to-buffer-other-window "org" (&rest args))
8223b1d2 44(declare-function org-strip-protective-commas "org" (beg end))
14e1337f 45(declare-function org-pop-to-buffer-same-window
e66ba1df 46 "org-compat" (&optional buffer-or-name norecord label))
153ae947
BG
47(declare-function org-strip-protective-commas "org" (beg end))
48(declare-function org-base-buffer "org" (buffer))
c8d0cf5c
CD
49
50(defcustom org-edit-src-region-extra nil
51 "Additional regexps to identify regions for editing with `org-edit-src-code'.
52For examples see the function `org-edit-src-find-region-and-lang'.
53The regular expression identifying the begin marker should end with a newline,
54and the regexp marking the end line should start with a newline, to make sure
55there are kept outside the narrowed region."
56 :group 'org-edit-structure
57 :type '(repeat
58 (list
59 (regexp :tag "begin regexp")
60 (regexp :tag "end regexp")
61 (choice :tag "language"
62 (string :tag "specify")
63 (integer :tag "from match group")
64 (const :tag "from `lang' element")
65 (const :tag "from `style' element")))))
66
67(defcustom org-coderef-label-format "(ref:%s)"
68 "The default coderef format.
69This format string will be used to search for coderef labels in literal
70examples (EXAMPLE and SRC blocks). The format can be overwritten in
86fbb8ca 71an individual literal example with the -l option, like
c8d0cf5c
CD
72
73#+BEGIN_SRC pascal +n -r -l \"((%s))\"
74...
75#+END_SRC
76
77If you want to use this for HTML export, make sure that the format does
78not introduce special font-locking, and avoid the HTML special
79characters `<', `>', and `&'. The reason for this restriction is that
80the labels are searched for only after htmlize has done its job."
81 :group 'org-edit-structure ; FIXME this is not in the right group
82 :type 'string)
83
84(defcustom org-edit-fixed-width-region-mode 'artist-mode
85 "The mode that should be used to edit fixed-width regions.
86These are the regions where each line starts with a colon."
87 :group 'org-edit-structure
88 :type '(choice
89 (const artist-mode)
90 (const picture-mode)
91 (const fundamental-mode)
92 (function :tag "Other (specify)")))
93
8bfe682a 94(defcustom org-src-preserve-indentation nil
86fbb8ca
CD
95 "If non-nil preserve leading whitespace characters on export.
96If non-nil leading whitespace characters in source code blocks
97are preserved on export, and when switching between the org
98buffer and the language mode edit buffer. If this variable is nil
99then, after editing with \\[org-edit-src-code], the
8bfe682a
CD
100minimum (across-lines) number of leading whitespace characters
101are removed from all lines, and the code block is uniformly
102indented according to the value of `org-edit-src-content-indentation'."
103 :group 'org-edit-structure
104 :type 'boolean)
105
c8d0cf5c 106(defcustom org-edit-src-content-indentation 2
8bfe682a 107 "Indentation for the content of a source code block.
c8d0cf5c
CD
108This should be the number of spaces added to the indentation of the #+begin
109line in order to compute the indentation of the block content after
86fbb8ca 110editing it with \\[org-edit-src-code]. Has no effect if
8bfe682a 111`org-src-preserve-indentation' is non-nil."
c8d0cf5c
CD
112 :group 'org-edit-structure
113 :type 'integer)
114
afe98dfa 115(defvar org-src-strip-leading-and-trailing-blank-lines nil
8223b1d2 116 "If non-nil, blank lines are removed when exiting the code edit buffer.")
afe98dfa 117
c8d0cf5c
CD
118(defcustom org-edit-src-persistent-message t
119 "Non-nil means show persistent exit help message while editing src examples.
120The message is shown in the header-line, which will be created in the
3ab2c837 121first line of the window showing the editing buffer."
c8d0cf5c
CD
122 :group 'org-edit-structure
123 :type 'boolean)
124
8bfe682a
CD
125(defcustom org-src-window-setup 'reorganize-frame
126 "How the source code edit buffer should be displayed.
127Possible values for this option are:
128
129current-window Show edit buffer in the current window, keeping all other
130 windows.
131other-window Use `switch-to-buffer-other-window' to display edit buffer.
132reorganize-frame Show only two windows on the current frame, the current
8223b1d2 133 window and the edit buffer. When exiting the edit buffer,
8bfe682a
CD
134 return to one window.
135other-frame Use `switch-to-buffer-other-frame' to display edit buffer.
136 Also, when exiting the edit buffer, kill that frame."
137 :group 'org-edit-structure
138 :type '(choice
139 (const current-window)
140 (const other-frame)
141 (const other-window)
142 (const reorganize-frame)))
143
c8d0cf5c
CD
144(defvar org-src-mode-hook nil
145 "Hook run after Org switched a source code snippet to its Emacs mode.
146This hook will run
147
148- when editing a source code snippet with \"C-c '\".
149- When formatting a source code snippet for export with htmlize.
150
151You may want to use this hook for example to turn off `outline-minor-mode'
152or similar things which you want to have when editing a source code file,
153but which mess up the display of a snippet in Org exported files.")
154
54a0dee5 155(defcustom org-src-lang-modes
8d642074 156 '(("ocaml" . tuareg) ("elisp" . emacs-lisp) ("ditaa" . artist)
afe98dfa 157 ("asymptote" . asy) ("dot" . fundamental) ("sqlite" . sql)
153ae947
BG
158 ("calc" . fundamental) ("C" . c) ("cpp" . c++)
159 ("screen" . shell-script))
54a0dee5
CD
160 "Alist mapping languages to their major mode.
161The key is the language name, the value is the string that should
162be inserted as the name of the major mode. For many languages this is
163simple, but for language where this is not the case, this variable
164provides a way to simplify things on the user side.
165For example, there is no ocaml-mode in Emacs, but the mode to use is
166`tuareg-mode'."
167 :group 'org-edit-structure
168 :type '(repeat
169 (cons
170 (string "Language name")
171 (symbol "Major mode"))))
172
c8d0cf5c
CD
173;;; Editing source examples
174
3ab2c837
BG
175(defvar org-src-mode-map (make-sparse-keymap))
176(define-key org-src-mode-map "\C-c'" 'org-edit-src-exit)
8223b1d2 177(define-key org-src-mode-map "\C-x\C-s" 'org-edit-src-save)
afe98dfa 178
c8d0cf5c
CD
179(defvar org-edit-src-force-single-line nil)
180(defvar org-edit-src-from-org-mode nil)
86fbb8ca 181(defvar org-edit-src-allow-write-back-p t)
c8d0cf5c
CD
182(defvar org-edit-src-picture nil)
183(defvar org-edit-src-beg-marker nil)
184(defvar org-edit-src-end-marker nil)
185(defvar org-edit-src-overlay nil)
8bfe682a
CD
186(defvar org-edit-src-block-indentation nil)
187(defvar org-edit-src-saved-temp-window-config nil)
188
189(defvar org-src-ask-before-returning-to-edit-buffer t
190 "If nil, when org-edit-src code is used on a block that already
8223b1d2
BG
191has an active edit buffer, it will switch to that edit buffer
192immediately; otherwise it will ask whether you want to return to
193the existing edit buffer.")
c8d0cf5c 194
afe98dfa
CD
195(defvar org-src-babel-info nil)
196
c8d0cf5c
CD
197(define-minor-mode org-src-mode
198 "Minor mode for language major mode buffers generated by org.
199This minor mode is turned on in two situations:
200- when editing a source code snippet with \"C-c '\".
201- When formatting a source code snippet for export with htmlize.
202There is a mode hook, and keybindings for `org-edit-src-exit' and
203`org-edit-src-save'")
204
3ab2c837 205(defun org-edit-src-code (&optional context code edit-buffer-name)
8223b1d2 206 "Edit the source CODE example at point.
afe98dfa
CD
207The example is copied to a separate buffer, and that buffer is
208switched to the correct language mode. When done, exit with
209\\[org-edit-src-exit]. This will remove the original code in the
8223b1d2 210Org buffer, and replace it with the edited version. An optional
afe98dfa 211argument CONTEXT is used by \\[org-edit-src-save] when calling
8223b1d2 212this function. See `org-src-window-setup' to configure the
afe98dfa
CD
213display of windows containing the Org buffer and the code
214buffer."
c8d0cf5c 215 (interactive)
8bfe682a
CD
216 (unless (eq context 'save)
217 (setq org-edit-src-saved-temp-window-config (current-window-configuration)))
153ae947
BG
218 (let* ((mark (and (org-region-active-p) (mark)))
219 (case-fold-search t)
220 (info (org-edit-src-find-region-and-lang))
221 (full-info (org-babel-get-src-block-info 'light))
222 (org-mode-p (derived-mode-p 'org-mode)) ;; derived-mode-p is reflexive
223 (beg (make-marker))
224 (end (make-marker))
225 (allow-write-back-p (null code))
226 block-nindent total-nindent ovl lang lang-f single lfmt buffer msg
227 begline markline markcol line col transmitted-variables)
c8d0cf5c
CD
228 (if (not info)
229 nil
230 (setq beg (move-marker beg (nth 0 info))
231 end (move-marker end (nth 1 info))
86fbb8ca
CD
232 msg (if allow-write-back-p
233 (substitute-command-keys
234 "Edit, then exit with C-c ' (C-c and single quote)")
235 "Exit with C-c ' (C-c and single quote)")
236 code (or code (buffer-substring-no-properties beg end))
54a0dee5
CD
237 lang (or (cdr (assoc (nth 2 info) org-src-lang-modes))
238 (nth 2 info))
239 lang (if (symbolp lang) (symbol-name lang) lang)
c8d0cf5c 240 single (nth 3 info)
8bfe682a 241 block-nindent (nth 5 info)
c8d0cf5c 242 lang-f (intern (concat lang "-mode"))
3ab2c837
BG
243 begline (save-excursion (goto-char beg) (org-current-line))
244 transmitted-variables
245 `((org-edit-src-content-indentation
246 ,org-edit-src-content-indentation)
247 (org-edit-src-force-single-line ,single)
248 (org-edit-src-from-org-mode ,org-mode-p)
249 (org-edit-src-allow-write-back-p ,allow-write-back-p)
250 (org-src-preserve-indentation ,org-src-preserve-indentation)
251 (org-src-babel-info ,(org-babel-get-src-block-info 'light))
252 (org-coderef-label-format
253 ,(or (nth 4 info) org-coderef-label-format))
254 (org-edit-src-beg-marker ,beg)
255 (org-edit-src-end-marker ,end)
256 (org-edit-src-block-indentation ,block-nindent)))
acedf35c
CD
257 (if (and mark (>= mark beg) (<= mark (1+ end)))
258 (save-excursion (goto-char (min mark end))
afe98dfa
CD
259 (setq markline (org-current-line)
260 markcol (current-column))))
ed21c5c8
CD
261 (if (equal lang-f 'table.el-mode)
262 (setq lang-f (lambda ()
263 (text-mode)
264 (if (org-bound-and-true-p flyspell-mode)
265 (flyspell-mode -1))
266 (table-recognize)
267 (org-set-local 'org-edit-src-content-indentation 0))))
c8d0cf5c
CD
268 (unless (functionp lang-f)
269 (error "No such language mode: %s" lang-f))
afe98dfa
CD
270 (save-excursion
271 (if (> (point) end) (goto-char end))
272 (setq line (org-current-line)
273 col (current-column)))
c8d0cf5c 274 (if (and (setq buffer (org-edit-src-find-buffer beg end))
8223b1d2
BG
275 (or (eq context 'save)
276 (if org-src-ask-before-returning-to-edit-buffer
277 (y-or-n-p "Return to existing edit buffer ([n] will revert changes)? ") t)))
8bfe682a 278 (org-src-switch-to-buffer buffer 'return)
c8d0cf5c
CD
279 (when buffer
280 (with-current-buffer buffer
281 (if (boundp 'org-edit-src-overlay)
86fbb8ca 282 (delete-overlay org-edit-src-overlay)))
c8d0cf5c 283 (kill-buffer buffer))
54a0dee5 284 (setq buffer (generate-new-buffer
86fbb8ca
CD
285 (or edit-buffer-name
286 (org-src-construct-edit-buffer-name (buffer-name) lang))))
287 (setq ovl (make-overlay beg end))
288 (overlay-put ovl 'edit-buffer buffer)
289 (overlay-put ovl 'help-echo "Click with mouse-1 to switch to buffer editing this segment")
290 (overlay-put ovl 'face 'secondary-selection)
291 (overlay-put ovl
292 'keymap
293 (let ((map (make-sparse-keymap)))
294 (define-key map [mouse-1] 'org-edit-src-continue)
295 map))
296 (overlay-put ovl :read-only "Leave me alone")
3ab2c837
BG
297 (setq transmitted-variables
298 (append transmitted-variables `((org-edit-src-overlay ,ovl))))
8bfe682a
CD
299 (org-src-switch-to-buffer buffer 'edit)
300 (if (eq single 'macro-definition)
301 (setq code (replace-regexp-in-string "\\\\n" "\n" code t t)))
c8d0cf5c
CD
302 (insert code)
303 (remove-text-properties (point-min) (point-max)
304 '(display nil invisible nil intangible nil))
3ab2c837 305 (unless (cadr (assq 'org-src-preserve-indentation transmitted-variables))
8bfe682a 306 (setq total-nindent (or (org-do-remove-indentation) 0)))
c8d0cf5c 307 (let ((org-inhibit-startup t))
afe98dfa
CD
308 (condition-case e
309 (funcall lang-f)
310 (error
311 (error "Language mode `%s' fails with: %S" lang-f (nth 1 e)))))
3ab2c837
BG
312 (dolist (pair transmitted-variables)
313 (org-set-local (car pair) (cadr pair)))
8223b1d2 314 (if (derived-mode-p 'org-mode)
153ae947
BG
315 (progn
316 (goto-char (point-min))
317 (while (re-search-forward "^," nil t)
318 (if (eq (org-current-line) line) (setq total-nindent (1+ total-nindent)))
319 (replace-match "")))
320 (org-strip-protective-commas (point-min) (point-max)))
afe98dfa
CD
321 (when markline
322 (org-goto-line (1+ (- markline begline)))
323 (org-move-to-column
3ab2c837
BG
324 (if org-src-preserve-indentation markcol
325 (max 0 (- markcol total-nindent))))
afe98dfa
CD
326 (push-mark (point) 'no-message t)
327 (setq deactivate-mark nil))
54a0dee5 328 (org-goto-line (1+ (- line begline)))
8bfe682a 329 (org-move-to-column
3ab2c837 330 (if org-src-preserve-indentation col (max 0 (- col total-nindent))))
54a0dee5
CD
331 (org-src-mode)
332 (set-buffer-modified-p nil)
8223b1d2 333 (setq buffer-file-name nil)
c8d0cf5c 334 (and org-edit-src-persistent-message
3ab2c837
BG
335 (org-set-local 'header-line-format msg))
336 (let ((edit-prep-func (intern (concat "org-babel-edit-prep:" lang))))
337 (when (fboundp edit-prep-func)
338 (funcall edit-prep-func full-info))))
c8d0cf5c
CD
339 t)))
340
341(defun org-edit-src-continue (e)
8223b1d2 342 "Continue editing source blocks." ;; Fixme: be more accurate
c8d0cf5c
CD
343 (interactive "e")
344 (mouse-set-point e)
345 (let ((buf (get-char-property (point) 'edit-buffer)))
8bfe682a 346 (if buf (org-src-switch-to-buffer buf 'continue)
c8d0cf5c
CD
347 (error "Something is wrong here"))))
348
8bfe682a
CD
349(defun org-src-switch-to-buffer (buffer context)
350 (case org-src-window-setup
3ab2c837 351 ('current-window
e66ba1df 352 (org-pop-to-buffer-same-window buffer))
3ab2c837 353 ('other-window
8bfe682a 354 (switch-to-buffer-other-window buffer))
3ab2c837 355 ('other-frame
8bfe682a 356 (case context
3ab2c837 357 ('exit
8bfe682a
CD
358 (let ((frame (selected-frame)))
359 (switch-to-buffer-other-frame buffer)
360 (delete-frame frame)))
3ab2c837 361 ('save
8bfe682a 362 (kill-buffer (current-buffer))
e66ba1df 363 (org-pop-to-buffer-same-window buffer))
8bfe682a
CD
364 (t
365 (switch-to-buffer-other-frame buffer))))
3ab2c837 366 ('reorganize-frame
8bfe682a
CD
367 (if (eq context 'edit) (delete-other-windows))
368 (org-switch-to-buffer-other-window buffer)
369 (if (eq context 'exit) (delete-other-windows)))
3ab2c837 370 ('switch-invisibly
afe98dfa 371 (set-buffer buffer))
8bfe682a
CD
372 (t
373 (message "Invalid value %s for org-src-window-setup"
374 (symbol-name org-src-window-setup))
e66ba1df 375 (org-pop-to-buffer-same-window buffer))))
8bfe682a 376
8d642074 377(defun org-src-construct-edit-buffer-name (org-buffer-name lang)
86fbb8ca 378 "Construct the buffer name for a source editing buffer."
8d642074
CD
379 (concat "*Org Src " org-buffer-name "[ " lang " ]*"))
380
153ae947
BG
381(defun org-src-edit-buffer-p (&optional buffer)
382 "Test whether BUFFER (or the current buffer if BUFFER is nil)
383is a source block editing buffer."
384 (let ((buffer (org-base-buffer (or buffer (current-buffer)))))
385 (and (buffer-name buffer)
386 (string-match "\\`*Org Src " (buffer-name buffer))
387 (local-variable-p 'org-edit-src-beg-marker buffer)
388 (local-variable-p 'org-edit-src-end-marker buffer))))
389
c8d0cf5c
CD
390(defun org-edit-src-find-buffer (beg end)
391 "Find a source editing buffer that is already editing the region BEG to END."
392 (catch 'exit
393 (mapc
394 (lambda (b)
395 (with-current-buffer b
8d642074 396 (if (and (string-match "\\`*Org Src " (buffer-name))
c8d0cf5c
CD
397 (local-variable-p 'org-edit-src-beg-marker (current-buffer))
398 (local-variable-p 'org-edit-src-end-marker (current-buffer))
399 (equal beg org-edit-src-beg-marker)
400 (equal end org-edit-src-end-marker))
401 (throw 'exit (current-buffer)))))
402 (buffer-list))
403 nil))
404
405(defun org-edit-fixed-width-region ()
406 "Edit the fixed-width ascii drawing at point.
407This must be a region where each line starts with a colon followed by
408a space character.
409An new buffer is created and the fixed-width region is copied into it,
410and the buffer is switched into `artist-mode' for editing. When done,
411exit with \\[org-edit-src-exit]. The edited text will then replace
412the fragment in the Org-mode buffer."
413 (interactive)
414 (let ((line (org-current-line))
8bfe682a 415 (col (current-column))
c8d0cf5c
CD
416 (case-fold-search t)
417 (msg (substitute-command-keys
418 "Edit, then exit with C-c ' (C-c and single quote)"))
8223b1d2 419 (org-mode-p (derived-mode-p 'org-mode))
c8d0cf5c
CD
420 (beg (make-marker))
421 (end (make-marker))
8bfe682a
CD
422 (preserve-indentation org-src-preserve-indentation)
423 block-nindent ovl beg1 end1 code begline buffer)
c8d0cf5c
CD
424 (beginning-of-line 1)
425 (if (looking-at "[ \t]*[^:\n \t]")
426 nil
427 (if (looking-at "[ \t]*\\(\n\\|\\'\\)")
428 (setq beg1 (point) end1 beg1)
429 (save-excursion
430 (if (re-search-backward "^[ \t]*[^: \t]" nil 'move)
431 (setq beg1 (point-at-bol 2))
432 (setq beg1 (point))))
433 (save-excursion
434 (if (re-search-forward "^[ \t]*[^: \t]" nil 'move)
435 (setq end1 (1- (match-beginning 0)))
436 (setq end1 (point))))
54a0dee5 437 (org-goto-line line))
c8d0cf5c
CD
438 (setq beg (move-marker beg beg1)
439 end (move-marker end end1)
440 code (buffer-substring-no-properties beg end)
441 begline (save-excursion (goto-char beg) (org-current-line)))
442 (if (and (setq buffer (org-edit-src-find-buffer beg end))
8223b1d2 443 (y-or-n-p "Return to existing edit buffer ([n] will revert changes)? "))
e66ba1df 444 (org-pop-to-buffer-same-window buffer)
c8d0cf5c
CD
445 (when buffer
446 (with-current-buffer buffer
447 (if (boundp 'org-edit-src-overlay)
86fbb8ca 448 (delete-overlay org-edit-src-overlay)))
c8d0cf5c 449 (kill-buffer buffer))
8d642074
CD
450 (setq buffer (generate-new-buffer
451 (org-src-construct-edit-buffer-name
452 (buffer-name) "Fixed Width")))
86fbb8ca
CD
453 (setq ovl (make-overlay beg end))
454 (overlay-put ovl 'face 'secondary-selection)
455 (overlay-put ovl 'edit-buffer buffer)
456 (overlay-put ovl 'help-echo "Click with mouse-1 to switch to buffer editing this segment")
457 (overlay-put ovl 'face 'secondary-selection)
458 (overlay-put ovl
8223b1d2
BG
459 'keymap
460 (let ((map (make-sparse-keymap)))
461 (define-key map [mouse-1] 'org-edit-src-continue)
462 map))
86fbb8ca 463 (overlay-put ovl :read-only "Leave me alone")
e66ba1df 464 (org-pop-to-buffer-same-window buffer)
c8d0cf5c
CD
465 (insert code)
466 (remove-text-properties (point-min) (point-max)
467 '(display nil invisible nil intangible nil))
8bfe682a 468 (setq block-nindent (or (org-do-remove-indentation) 0))
c8d0cf5c
CD
469 (cond
470 ((eq org-edit-fixed-width-region-mode 'artist-mode)
471 (fundamental-mode)
472 (artist-mode 1))
86fbb8ca 473 (t (funcall org-edit-fixed-width-region-mode)))
c8d0cf5c
CD
474 (set (make-local-variable 'org-edit-src-force-single-line) nil)
475 (set (make-local-variable 'org-edit-src-from-org-mode) org-mode-p)
476 (set (make-local-variable 'org-edit-src-picture) t)
477 (goto-char (point-min))
478 (while (re-search-forward "^[ \t]*: ?" nil t)
479 (replace-match ""))
54a0dee5 480 (org-goto-line (1+ (- line begline)))
8bfe682a 481 (org-move-to-column (max 0 (- col block-nindent 2)))
c8d0cf5c
CD
482 (org-set-local 'org-edit-src-beg-marker beg)
483 (org-set-local 'org-edit-src-end-marker end)
484 (org-set-local 'org-edit-src-overlay ovl)
8bfe682a
CD
485 (org-set-local 'org-edit-src-block-indentation block-nindent)
486 (org-set-local 'org-edit-src-content-indentation 0)
487 (org-set-local 'org-src-preserve-indentation nil)
54a0dee5
CD
488 (org-src-mode)
489 (set-buffer-modified-p nil)
c8d0cf5c
CD
490 (and org-edit-src-persistent-message
491 (org-set-local 'header-line-format msg)))
492 (message "%s" msg)
493 t)))
494
495(defun org-edit-src-find-region-and-lang ()
496 "Find the region and language for a local edit.
497Return a list with beginning and end of the region, a string representing
8bfe682a 498the language, a switch telling if the content should be in a single line."
c8d0cf5c
CD
499 (let ((re-list
500 (append
501 org-edit-src-region-extra
502 '(
503 ("<src\\>[^<]*>[ \t]*\n?" "\n?[ \t]*</src>" lang)
504 ("<literal\\>[^<]*>[ \t]*\n?" "\n?[ \t]*</literal>" style)
505 ("<example>[ \t]*\n?" "\n?[ \t]*</example>" "fundamental")
506 ("<lisp>[ \t]*\n?" "\n?[ \t]*</lisp>" "emacs-lisp")
507 ("<perl>[ \t]*\n?" "\n?[ \t]*</perl>" "perl")
508 ("<python>[ \t]*\n?" "\n?[ \t]*</python>" "python")
509 ("<ruby>[ \t]*\n?" "\n?[ \t]*</ruby>" "ruby")
510 ("^[ \t]*#\\+begin_src\\( \\([^ \t\n]+\\)\\)?.*\n" "\n[ \t]*#\\+end_src" 2)
511 ("^[ \t]*#\\+begin_example.*\n" "\n[ \t]*#\\+end_example" "fundamental")
512 ("^[ \t]*#\\+html:" "\n" "html" single-line)
513 ("^[ \t]*#\\+begin_html.*\n" "\n[ \t]*#\\+end_html" "html")
514 ("^[ \t]*#\\+latex:" "\n" "latex" single-line)
515 ("^[ \t]*#\\+begin_latex.*\n" "\n[ \t]*#\\+end_latex" "latex")
516 ("^[ \t]*#\\+ascii:" "\n" "fundamental" single-line)
517 ("^[ \t]*#\\+begin_ascii.*\n" "\n[ \t]*#\\+end_ascii" "fundamental")
518 ("^[ \t]*#\\+docbook:" "\n" "xml" single-line)
8bfe682a
CD
519 ("^[ \t]*#\\+macro:[ \t]+\\S-+\\( \\|$\\)"
520 "\n" "fundamental" macro-definition)
c8d0cf5c
CD
521 ("^[ \t]*#\\+begin_docbook.*\n" "\n[ \t]*#\\+end_docbook" "xml")
522 )))
523 (pos (point))
524 re1 re2 single beg end lang lfmt match-re1 ind entry)
525 (catch 'exit
526 (while (setq entry (pop re-list))
527 (setq re1 (car entry) re2 (nth 1 entry) lang (nth 2 entry)
528 single (nth 3 entry))
529 (save-excursion
530 (if (or (looking-at re1)
531 (re-search-backward re1 nil t))
532 (progn
533 (setq match-re1 (match-string 0))
534 (setq beg (match-end 0)
535 lang (org-edit-src-get-lang lang)
536 lfmt (org-edit-src-get-label-format match-re1)
537 ind (org-edit-src-get-indentation (match-beginning 0)))
538 (if (and (re-search-forward re2 nil t)
539 (>= (match-end 0) pos))
540 (throw 'exit (list beg (match-beginning 0)
541 lang single lfmt ind))))
542 (if (or (looking-at re2)
543 (re-search-forward re2 nil t))
544 (progn
545 (setq end (match-beginning 0))
546 (if (and (re-search-backward re1 nil t)
547 (<= (match-beginning 0) pos))
548 (progn
549 (setq lfmt (org-edit-src-get-label-format
550 (match-string 0))
551 ind (org-edit-src-get-indentation
552 (match-beginning 0)))
553 (throw 'exit
554 (list (match-end 0) end
555 (org-edit-src-get-lang lang)
86fbb8ca
CD
556 single lfmt ind)))))))))
557 (when (org-at-table.el-p)
558 (re-search-backward "^[\t]*[^ \t|\\+]" nil t)
559 (setq beg (1+ (point-at-eol)))
560 (goto-char beg)
561 (or (re-search-forward "^[\t]*[^ \t|\\+]" nil t)
562 (progn (goto-char (point-max)) (newline)))
563 (setq end (point-at-bol))
564 (setq ind (org-edit-src-get-indentation beg))
565 (throw 'exit (list beg end 'table.el nil nil ind))))))
c8d0cf5c
CD
566
567(defun org-edit-src-get-lang (lang)
568 "Extract the src language."
569 (let ((m (match-string 0)))
570 (cond
571 ((stringp lang) lang)
572 ((integerp lang) (match-string lang))
573 ((and (eq lang 'lang)
574 (string-match "\\<lang=\"\\([^ \t\n\"]+\\)\"" m))
575 (match-string 1 m))
576 ((and (eq lang 'style)
577 (string-match "\\<style=\"\\([^ \t\n\"]+\\)\"" m))
578 (match-string 1 m))
579 (t "fundamental"))))
580
581(defun org-edit-src-get-label-format (s)
582 "Extract the label format."
583 (save-match-data
584 (if (string-match "-l[ \t]+\\\\?\"\\([^\t\r\n\"]+\\)\\\\?\"" s)
585 (match-string 1 s))))
586
587(defun org-edit-src-get-indentation (pos)
86fbb8ca 588 "Count leading whitespace characters on line."
c8d0cf5c
CD
589 (save-match-data
590 (goto-char pos)
591 (org-get-indentation)))
592
8223b1d2
BG
593(defun org-add-protective-commas (beg end &optional line)
594 "Add protective commas in region.
595Return the delta in size of the region."
596 (interactive "r")
597 (let ((org-re "^\\(.\\)")
598 (other-re "^\\([*]\\|[ \t]*#\\+\\)")
599 (delta 0))
600 (save-excursion
601 (goto-char beg)
602 (while (re-search-forward (if (derived-mode-p 'org-mode) org-re other-re)
603 end t)
604 (if (and line (eq (org-current-line) line)) (setq delta (1+ delta)))
605 (replace-match ",\\1")))
606 delta))
607
8bfe682a 608(defun org-edit-src-exit (&optional context)
c8d0cf5c
CD
609 "Exit special edit and protect problematic lines."
610 (interactive)
86fbb8ca
CD
611 (unless (org-bound-and-true-p org-edit-src-from-org-mode)
612 (error "This is not a sub-editing buffer, something is wrong"))
ed21c5c8 613 (widen)
8bfe682a
CD
614 (let* ((beg org-edit-src-beg-marker)
615 (end org-edit-src-end-marker)
616 (ovl org-edit-src-overlay)
8223b1d2 617 (bufstr (buffer-string))
8bfe682a
CD
618 (buffer (current-buffer))
619 (single (org-bound-and-true-p org-edit-src-force-single-line))
620 (macro (eq single 'macro-definition))
621 (total-nindent (+ (or org-edit-src-block-indentation 0)
622 org-edit-src-content-indentation))
623 (preserve-indentation org-src-preserve-indentation)
86fbb8ca 624 (allow-write-back-p (org-bound-and-true-p org-edit-src-allow-write-back-p))
8bfe682a 625 (delta 0) code line col indent)
86fbb8ca
CD
626 (when allow-write-back-p
627 (unless preserve-indentation (untabify (point-min) (point-max)))
afe98dfa
CD
628 (if org-src-strip-leading-and-trailing-blank-lines
629 (save-excursion
630 (goto-char (point-min))
631 (if (looking-at "[ \t\n]*\n") (replace-match ""))
632 (unless macro
633 (if (re-search-forward "\n[ \t\n]*\\'" nil t) (replace-match ""))))))
c8d0cf5c
CD
634 (setq line (if (org-bound-and-true-p org-edit-src-force-single-line)
635 1
8bfe682a
CD
636 (org-current-line))
637 col (current-column))
86fbb8ca
CD
638 (when allow-write-back-p
639 (when single
640 (goto-char (point-min))
641 (if (re-search-forward "\\s-+\\'" nil t) (replace-match ""))
642 (goto-char (point-min))
643 (let ((cnt 0))
644 (while (re-search-forward "\n" nil t)
645 (setq cnt (1+ cnt))
646 (replace-match (if macro "\\n" " ") t t))
647 (when (and macro (> cnt 0))
648 (goto-char (point-max)) (insert "\\n")))
649 (goto-char (point-min))
650 (if (looking-at "\\s-*") (replace-match " ")))
651 (when (org-bound-and-true-p org-edit-src-from-org-mode)
8223b1d2
BG
652 (setq delta (+ delta (org-add-protective-commas
653 (point-min) (point-max) line))))
86fbb8ca
CD
654 (when (org-bound-and-true-p org-edit-src-picture)
655 (setq preserve-indentation nil)
656 (untabify (point-min) (point-max))
657 (goto-char (point-min))
658 (while (re-search-forward "^" nil t)
659 (replace-match ": ")))
660 (unless (or single preserve-indentation (= total-nindent 0))
661 (setq indent (make-string total-nindent ?\ ))
662 (goto-char (point-min))
663 (while (re-search-forward "^" nil t)
664 (replace-match indent)))
665 (if (org-bound-and-true-p org-edit-src-picture)
666 (setq total-nindent (+ total-nindent 2)))
667 (setq code (buffer-string))
8223b1d2
BG
668 (when (eq context 'save)
669 (erase-buffer)
670 (insert bufstr))
86fbb8ca 671 (set-buffer-modified-p nil))
8bfe682a 672 (org-src-switch-to-buffer (marker-buffer beg) (or context 'exit))
8223b1d2
BG
673 (if (eq context 'save) (save-buffer)
674 (kill-buffer buffer))
c8d0cf5c 675 (goto-char beg)
86fbb8ca 676 (when allow-write-back-p
8223b1d2 677 (delete-region beg (1- end))
86fbb8ca 678 (insert code)
8223b1d2 679 (delete-char 1)
86fbb8ca
CD
680 (goto-char beg)
681 (if single (just-one-space)))
ed21c5c8 682 (if (memq t (mapcar (lambda (overlay)
86fbb8ca 683 (eq (overlay-get overlay 'invisible)
ed21c5c8 684 'org-hide-block))
86fbb8ca 685 (overlays-at (point))))
ed21c5c8
CD
686 ;; Block is hidden; put point at start of block
687 (beginning-of-line 0)
688 ;; Block is visible, put point where it was in the code buffer
689 (org-goto-line (1- (+ (org-current-line) line)))
690 (org-move-to-column (if preserve-indentation col (+ col total-nindent delta))))
8223b1d2
BG
691 (unless (eq context 'save)
692 (move-marker beg nil)
693 (move-marker end nil)))
8bfe682a
CD
694 (unless (eq context 'save)
695 (when org-edit-src-saved-temp-window-config
696 (set-window-configuration org-edit-src-saved-temp-window-config)
697 (setq org-edit-src-saved-temp-window-config nil))))
c8d0cf5c 698
8223b1d2
BG
699(defmacro org-src-in-org-buffer (&rest body)
700 `(let ((p (point)) (m (mark)) (ul buffer-undo-list) msg)
701 (save-window-excursion
702 (org-edit-src-exit 'save)
703 ,@body
704 (setq msg (current-message))
705 (if (eq org-src-window-setup 'other-frame)
706 (let ((org-src-window-setup 'current-window))
707 (org-edit-src-code 'save))
708 (org-edit-src-code 'save)))
709 (setq buffer-undo-list ul)
710 (push-mark m 'nomessage)
711 (goto-char (min p (point-max)))
712 (message (or msg ""))))
713(def-edebug-spec org-src-in-org-buffer (body))
714
c8d0cf5c
CD
715(defun org-edit-src-save ()
716 "Save parent buffer with current state source-code buffer."
717 (interactive)
8223b1d2
BG
718 (org-src-in-org-buffer (save-buffer)))
719
720(declare-function org-babel-tangle "ob-tangle" (&optional only-this-block target-file lang))
721
722(defun org-src-tangle (arg)
723 "Tangle the parent buffer."
724 (interactive)
725 (org-src-in-org-buffer (org-babel-tangle arg)))
c8d0cf5c 726
54a0dee5 727(defun org-src-mode-configure-edit-buffer ()
86fbb8ca 728 (when (org-bound-and-true-p org-edit-src-from-org-mode)
54a0dee5 729 (org-add-hook 'kill-buffer-hook
3ab2c837 730 #'(lambda () (delete-overlay org-edit-src-overlay)) nil 'local)
86fbb8ca
CD
731 (if (org-bound-and-true-p org-edit-src-allow-write-back-p)
732 (progn
733 (setq buffer-offer-save t)
734 (setq buffer-file-name
735 (concat (buffer-file-name (marker-buffer org-edit-src-beg-marker))
736 "[" (buffer-name) "]"))
737 (if (featurep 'xemacs)
738 (progn
739 (make-variable-buffer-local 'write-contents-hooks) ; needed only for 21.4
740 (setq write-contents-hooks '(org-edit-src-save)))
741 (setq write-contents-functions '(org-edit-src-save))))
742 (setq buffer-read-only t))))
54a0dee5
CD
743
744(org-add-hook 'org-src-mode-hook 'org-src-mode-configure-edit-buffer)
745
afe98dfa
CD
746
747(defun org-src-associate-babel-session (info)
748 "Associate edit buffer with comint session."
749 (interactive)
750 (let ((session (cdr (assoc :session (nth 2 info)))))
751 (and session (not (string= session "none"))
752 (org-babel-comint-buffer-livep session)
753 ((lambda (f) (and (fboundp f) (funcall f session)))
754 (intern (format "org-babel-%s-associate-session" (nth 0 info)))))))
755
756(defun org-src-babel-configure-edit-buffer ()
757 (when org-src-babel-info
758 (org-src-associate-babel-session org-src-babel-info)))
759
760(org-add-hook 'org-src-mode-hook 'org-src-babel-configure-edit-buffer)
761(defmacro org-src-do-at-code-block (&rest body)
762 "Execute a command from an edit buffer in the Org-mode buffer."
763 `(let ((beg-marker org-edit-src-beg-marker))
764 (if beg-marker
765 (with-current-buffer (marker-buffer beg-marker)
766 (goto-char (marker-position beg-marker))
767 ,@body))))
e66ba1df 768(def-edebug-spec org-src-do-at-code-block (body))
afe98dfa
CD
769
770(defun org-src-do-key-sequence-at-code-block (&optional key)
771 "Execute key sequence at code block in the source Org buffer.
772The command bound to KEY in the Org-babel key map is executed
773remotely with point temporarily at the start of the code block in
774the Org buffer.
775
776This command is not bound to a key by default, to avoid conflicts
8223b1d2 777with language major mode bindings. To bind it to C-c @ in all
afe98dfa
CD
778language major modes, you could use
779
780 (add-hook 'org-src-mode-hook
781 (lambda () (define-key org-src-mode-map \"\\C-c@\"
782 'org-src-do-key-sequence-at-code-block)))
783
784In that case, for example, C-c @ t issued in code edit buffers
785would tangle the current Org code block, C-c @ e would execute
786the block and C-c @ h would display the other available
787Org-babel commands."
788 (interactive "kOrg-babel key: ")
789 (if (equal key (kbd "C-g")) (keyboard-quit)
790 (org-edit-src-save)
791 (org-src-do-at-code-block
792 (call-interactively
793 (lookup-key org-babel-map key)))))
794
795(defcustom org-src-tab-acts-natively nil
796 "If non-nil, the effect of TAB in a code block is as if it were
797issued in the language major mode buffer."
798 :type 'boolean
372d7b21 799 :version "24.1"
afe98dfa
CD
800 :group 'org-babel)
801
802(defun org-src-native-tab-command-maybe ()
803 "Perform language-specific TAB action.
804Alter code block according to effect of TAB in the language major
805mode."
806 (and org-src-tab-acts-natively
807 (let ((org-src-strip-leading-and-trailing-blank-lines nil))
808 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB")))))
809
810(add-hook 'org-tab-first-hook 'org-src-native-tab-command-maybe)
811
812(defun org-src-font-lock-fontify-block (lang start end)
813 "Fontify code block.
814This function is called by emacs automatic fontification, as long
8223b1d2 815as `org-src-fontify-natively' is non-nil. For manual
afe98dfa
CD
816fontification of code blocks see `org-src-fontify-block' and
817`org-src-fontify-buffer'"
3ab2c837
BG
818 (let ((lang-mode (org-src-get-lang-mode lang)))
819 (if (fboundp lang-mode)
820 (let ((string (buffer-substring-no-properties start end))
821 (modified (buffer-modified-p))
822 (org-buffer (current-buffer)) pos next)
823 (remove-text-properties start end '(face nil))
824 (with-current-buffer
825 (get-buffer-create
826 (concat " org-src-fontification:" (symbol-name lang-mode)))
827 (delete-region (point-min) (point-max))
8223b1d2 828 (insert string " ") ;; so there's a final property change
3ab2c837
BG
829 (unless (eq major-mode lang-mode) (funcall lang-mode))
830 (font-lock-fontify-buffer)
831 (setq pos (point-min))
832 (while (setq next (next-single-property-change pos 'face))
833 (put-text-property
8223b1d2 834 (+ start (1- pos)) (1- (+ start next)) 'face
3ab2c837
BG
835 (get-text-property pos 'face) org-buffer)
836 (setq pos next)))
837 (add-text-properties
838 start end
839 '(font-lock-fontified t fontified t font-lock-multiline t))
840 (set-buffer-modified-p modified)))))
afe98dfa
CD
841
842(defun org-src-fontify-block ()
843 "Fontify code block at point."
844 (interactive)
845 (save-excursion
846 (let ((org-src-fontify-natively t)
847 (info (org-edit-src-find-region-and-lang)))
848 (font-lock-fontify-region (nth 0 info) (nth 1 info)))))
849
850(defun org-src-fontify-buffer ()
8223b1d2 851 "Fontify all code blocks in the current buffer."
afe98dfa
CD
852 (interactive)
853 (org-babel-map-src-blocks nil
854 (org-src-fontify-block)))
855
856(defun org-src-get-lang-mode (lang)
857 "Return major mode that should be used for LANG.
858LANG is a string, and the returned major mode is a symbol."
859 (intern
860 (concat
861 ((lambda (l) (if (symbolp l) (symbol-name l) l))
862 (or (cdr (assoc lang org-src-lang-modes)) lang)) "-mode")))
863
c8d0cf5c
CD
864(provide 'org-src)
865
c8d0cf5c 866;;; org-src.el ends here