diff --git a/ORGWEBPAGE/Changes.org b/ORGWEBPAGE/Changes.org index fe5f75c81..49cf8523b 100644 --- a/ORGWEBPAGE/Changes.org +++ b/ORGWEBPAGE/Changes.org @@ -10,6 +10,39 @@ #+LINK_UP: index.html #+LINK_HOME: http://orgmode.org +* Version 6.05 + +** Details +*** Source code example editing expanded. + +The editing of source code in the proper major mode has been +expanded. It works now inside all kinds of constructs, for +example + +#+begin_src org +,#+HTML: this code can be edited in html-mode + +,#+BEGIN_HTML +,Same here +,#+BEGIN_HTML + +,#+LaTeX: this code can be edited in latex-mode + +,#+BEGIN_LaTeX +,Same here +,#+BEGIN_LaTeX + +,#+BEGIN_SRC fortran +,Here we can edit in fortran-mode +,#+END_SRC +#+end_src + +In addition to that, the syntax that is used by Emacs Muse ( +or tags, even and ) works as well - in +fact, I think you can call `org-edit-src-code' directly from +Muse. Hey, if you guys bind it to "C-c '" in Muse mode as well, +this could be a nice convergence. + * Version 6.04 :PROPERTIES: :VISIBILITY: content diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c969548fd..5b409b6be 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2008-05-26 Carsten Dominik + + * org.el (org-find-src-example-start): Function removed. + (org-edit-src-find-region-and-lang): New function. + 2008-05-25 Carsten Dominik * org.el (org-edit-src-exit): New function. diff --git a/lisp/org.el b/lisp/org.el index 2b7a61e5e..0edfebe84 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -5339,79 +5339,135 @@ If WITH-CASE is non-nil, the sorting will be case-sensitive." (define-minor-mode org-exit-edit-mode "Minor mode installing a single key binding, \"C-c '\" to exit special edit.") -(defun org-edit-src-example () +(defun org-edit-src-code () "Edit the source code example at point. An indirect buffer is created, and that buffer is then narrowed to the example at point and switched to the correct language mode. When done, -exit by killing the buffer with \\[kill-buffer]. It is important to exit -in this way because some Org quoting of the example will take place." +exit by killing the buffer with \\[org-edit-src-exit]." (interactive) (let ((line (org-current-line)) (case-fold-search t) (msg (substitute-command-keys - "Edit, then kill this indirect buffer with C-c ' (C-c and single quote)")) - beg end) - (if (not (org-find-src-example-start)) - ;; not at an example + "Edit, then exit with C-c ' (C-c and single quote)")) + (info (org-edit-src-find-region-and-lang)) + (org-mode-p (eq major-mode 'org-mode)) + beg end lang single) + (if (not info) nil - (if (not (save-excursion - (goto-char (point-at-bol)) - (or (looking-at "#\\+begin_src[ \t]+\\([^ \t\n]+\\)") - (looking-at "[ \t]*\\)" nil t) - (error "Cannot find end of src")) - (setq end (match-beginning 0)) + (error "No such language mode: %s" lang-f)) (goto-line line) (if (get-buffer "*Org Edit Src Example*") (kill-buffer "*Org Edit Src Example*")) (switch-to-buffer (make-indirect-buffer (current-buffer) "*Org Edit Src Example*")) (narrow-to-region beg end) + (remove-text-properties beg end '(display nil invisible nil + intangible nil)) (let ((org-inhibit-startup t)) (funcall lang-f)) - (goto-char (point-min)) - (while (re-search-forward "^," nil t) - (replace-match "")) - (goto-char (point-min)) + (set (make-local-variable 'org-edit-src-force-single-line) single) + (set (make-local-variable 'org-edit-src-from-org-mode) org-mode-p) + (when org-mode-p + (goto-char (point-min)) + (while (re-search-forward "^," nil t) + (replace-match ""))) (goto-line line) (org-exit-edit-mode) (org-set-local 'header-line-format msg) (message "%s" msg) t))) -(defun org-find-src-example-start () - "If point is in a src example, move to the beginning of it. -If not, just return nil." - (let ((re "^\\(#\\+begin_src\\|[ \t]*[^<]*>[ \t]*\n?" "\n?[ \t]*" lang) + ("[^<]*>[ \t]*\n?" "\n?[ \t]*" style) + ("[ \t]*\n?" "\n?[ \t]*" "fundamental") + ("[ \t]*\n?" "\n?[ \t]*" "emacs-lisp") + ("[ \t]*\n?" "\n?[ \t]*" "perl") + ("[ \t]*\n?" "\n?[ \t]*" "python") + ("[ \t]*\n?" "\n?[ \t]*" "ruby") + ("^#\\+begin_src\\( \\([^ \t\n]+\\)\\)?.*\n" "\n#\\+end_src" 2) + ("^#\\+begin_example.*\n" "^#\\+end_example" "fundamental") + ("^#\\+html:" "\n" "html" single-line) + ("^#\\+begin_html.*\n" "\n#\\+end_html" "html") + ("^#\\+begin_latex.*\n" "\n#\\+end_latex" "latex") + ("^#\\+latex:" "\n" "latex" single-line) + ("^#\\+begin_ascii.*\n" "\n#\\+end_ascii" "fundamental") + ("^#\\+ascii:" "\n" "ascii" single-line) + )) (pos (point)) - p1) - (beginning-of-line 1) - (if (looking-at re) - (point) - (if (and (setq p1 (re-search-backward re nil t)) - (re-search-forward "^\\(#\\+end_src\\|[ \t]*= (point-at-eol) pos)) - (goto-char p1) - (goto-char pos) - nil)))) + re beg end lang) + (catch 'exit + (while (setq entry (pop re-list)) + (setq re1 (car entry) re2 (nth 1 entry) lang (nth 2 entry) + single (nth 3 entry)) + (save-excursion + (if (or (looking-at re1) + (re-search-backward re1 nil t)) + (progn + (setq beg (match-end 0) lang (org-edit-src-get-lang lang)) + (if (and (re-search-forward re2 nil t) + (>= (match-end 0) pos)) + (throw 'exit (list beg (match-beginning 0) lang single)))) + (if (or (looking-at re2) + (re-search-forward re2 nil t)) + (progn + (setq end (match-beginning 0)) + (if (and (re-search-backward re1 nil t) + (<= (match-beginning 0) pos)) + (throw 'exit + (list (match-end 0) end + (org-edit-src-get-lang lang) single))))))))))) +(defun org-edit-src-get-lang (lang) + "Extract the src language." + (let ((m (match-string 0))) + (cond + ((stringp lang) lang) + ((integerp lang) (match-string lang)) + ((and (eq lang lang) + (string-match "\\ (point-min) 1) (error "This buffer is not narrowed, something is wrong...")) (goto-char (point-min)) - (while (re-search-forward (if (org-mode-p) "^\\(.\\)" "^\\([*#]\\)") nil t) - (replace-match ",\\1")) - (when font-lock-mode - (font-lock-unfontify-region (point-min) (point-max))) - (put-text-property (point-min) (point-max) 'font-lock-fontified t) + (if (looking-at "[ \t\n]*\n") (replace-match "")) + (if (re-search-forward "\n[ \t\n]*\\'" nil t) (replace-match "")) + (when (org-bound-and-true-p org-edit-src-force-single-line) + (goto-char (point-min)) + (while (re-search-forward "\n" nil t) + (replace-match " ")) + (goto-char (point-min)) + (if (looking-at "\\s-*") (replace-match " ")) + (if (re-search-forward "\\s-+\\'" nil t) + (replace-match ""))) + (when (org-bound-and-true-p org-edit-src-from-org-mode) + (goto-char (point-min)) + (while (re-search-forward (if (org-mode-p) "^\\(.\\)" "^\\([*#]\\)") nil t) + (replace-match ",\\1")) + (when font-lock-mode + (font-lock-unfontify-region (point-min) (point-max))) + (put-text-property (point-min) (point-max) 'font-lock-fontified t)) (kill-buffer (current-buffer))) ;;;; Plain list items, including checkboxes @@ -12654,11 +12710,11 @@ See the individual commands for more information." (defun org-edit-special () "Call a special editor for the stuff at point. When at a table, call the formula editor with `org-table-edit-formulas'. -When at the first line of an src example, call `org-edit-src-example'." +When at the first line of an src example, call `org-edit-src-code'." (interactive) (if (org-at-table-p) (call-interactively 'org-table-edit-formulas) - (or (org-edit-src-example) + (or (org-edit-src-code) (error "%s" (substitute-command-keys "\\[org-edit-special] can do nothing useful here.")))))