Improvements to source code snippet editing.
This commit is contained in:
parent
174cc21d08
commit
f9fa54fcf4
|
@ -10,6 +10,39 @@
|
||||||
#+LINK_UP: index.html
|
#+LINK_UP: index.html
|
||||||
#+LINK_HOME: http://orgmode.org
|
#+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 (<src>
|
||||||
|
or <example> tags, even <literal> and <lisp>) 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
|
* Version 6.04
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
:VISIBILITY: content
|
:VISIBILITY: content
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
2008-05-26 Carsten Dominik <dominik@science.uva.nl>
|
||||||
|
|
||||||
|
* org.el (org-find-src-example-start): Function removed.
|
||||||
|
(org-edit-src-find-region-and-lang): New function.
|
||||||
|
|
||||||
2008-05-25 Carsten Dominik <dominik@science.uva.nl>
|
2008-05-25 Carsten Dominik <dominik@science.uva.nl>
|
||||||
|
|
||||||
* org.el (org-edit-src-exit): New function.
|
* org.el (org-edit-src-exit): New function.
|
||||||
|
|
130
lisp/org.el
130
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
|
(define-minor-mode org-exit-edit-mode
|
||||||
"Minor mode installing a single key binding, \"C-c '\" to exit special edit.")
|
"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.
|
"Edit the source code example at point.
|
||||||
An indirect buffer is created, and that buffer is then narrowed to the
|
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,
|
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
|
exit by killing the buffer with \\[org-edit-src-exit]."
|
||||||
in this way because some Org quoting of the example will take place."
|
|
||||||
(interactive)
|
(interactive)
|
||||||
(let ((line (org-current-line))
|
(let ((line (org-current-line))
|
||||||
(case-fold-search t)
|
(case-fold-search t)
|
||||||
(msg (substitute-command-keys
|
(msg (substitute-command-keys
|
||||||
"Edit, then kill this indirect buffer with C-c ' (C-c and single quote)"))
|
"Edit, then exit with C-c ' (C-c and single quote)"))
|
||||||
beg end)
|
(info (org-edit-src-find-region-and-lang))
|
||||||
(if (not (org-find-src-example-start))
|
(org-mode-p (eq major-mode 'org-mode))
|
||||||
;; not at an example
|
beg end lang single)
|
||||||
|
(if (not info)
|
||||||
nil
|
nil
|
||||||
(if (not (save-excursion
|
(setq beg (nth 0 info)
|
||||||
(goto-char (point-at-bol))
|
end (nth 1 info)
|
||||||
(or (looking-at "#\\+begin_src[ \t]+\\([^ \t\n]+\\)")
|
lang (nth 2 info)
|
||||||
(looking-at "[ \t]*<src .*?lang=\"\\(.*?\\)\""))))
|
single (nth 3 info)
|
||||||
(error "This should not happen"))
|
|
||||||
(setq beg (point-at-bol 2)
|
|
||||||
lang (match-string 1)
|
|
||||||
lang-f (intern (concat lang "-mode")))
|
lang-f (intern (concat lang "-mode")))
|
||||||
(unless (functionp lang-f)
|
(unless (functionp lang-f)
|
||||||
"No such language mode: %s" lang-f)
|
(error "No such language mode: %s" lang-f))
|
||||||
(unless (re-search-forward "^\\(#\\+end_src\\|[ \t]*</src>\\)" nil t)
|
|
||||||
(error "Cannot find end of src"))
|
|
||||||
(setq end (match-beginning 0))
|
|
||||||
(goto-line line)
|
(goto-line line)
|
||||||
(if (get-buffer "*Org Edit Src Example*")
|
(if (get-buffer "*Org Edit Src Example*")
|
||||||
(kill-buffer "*Org Edit Src Example*"))
|
(kill-buffer "*Org Edit Src Example*"))
|
||||||
(switch-to-buffer (make-indirect-buffer (current-buffer)
|
(switch-to-buffer (make-indirect-buffer (current-buffer)
|
||||||
"*Org Edit Src Example*"))
|
"*Org Edit Src Example*"))
|
||||||
(narrow-to-region beg end)
|
(narrow-to-region beg end)
|
||||||
|
(remove-text-properties beg end '(display nil invisible nil
|
||||||
|
intangible nil))
|
||||||
(let ((org-inhibit-startup t))
|
(let ((org-inhibit-startup t))
|
||||||
(funcall lang-f))
|
(funcall lang-f))
|
||||||
|
(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))
|
(goto-char (point-min))
|
||||||
(while (re-search-forward "^," nil t)
|
(while (re-search-forward "^," nil t)
|
||||||
(replace-match ""))
|
(replace-match "")))
|
||||||
(goto-char (point-min))
|
|
||||||
(goto-line line)
|
(goto-line line)
|
||||||
(org-exit-edit-mode)
|
(org-exit-edit-mode)
|
||||||
(org-set-local 'header-line-format msg)
|
(org-set-local 'header-line-format msg)
|
||||||
(message "%s" msg)
|
(message "%s" msg)
|
||||||
t)))
|
t)))
|
||||||
|
|
||||||
(defun org-find-src-example-start ()
|
(defun org-edit-src-find-region-and-lang ()
|
||||||
"If point is in a src example, move to the beginning of it.
|
"Find the region and language for a local edit.
|
||||||
If not, just return nil."
|
Return a list with beginning and end of the region, a string representing
|
||||||
(let ((re "^\\(#\\+begin_src\\|[ \t]*<src\\)")
|
the language, a switch telling of the content should be in a single line."
|
||||||
|
(let ((re-list
|
||||||
|
'(
|
||||||
|
("<src\\>[^<]*>[ \t]*\n?" "\n?[ \t]*</src>" lang)
|
||||||
|
("<literal\\>[^<]*>[ \t]*\n?" "\n?[ \t]*</literal>" style)
|
||||||
|
("<example>[ \t]*\n?" "\n?[ \t]*</example>" "fundamental")
|
||||||
|
("<lisp>[ \t]*\n?" "\n?[ \t]*</lisp>" "emacs-lisp")
|
||||||
|
("<perl>[ \t]*\n?" "\n?[ \t]*</perl>" "perl")
|
||||||
|
("<python>[ \t]*\n?" "\n?[ \t]*</python>" "python")
|
||||||
|
("<ruby>[ \t]*\n?" "\n?[ \t]*</ruby>" "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))
|
(pos (point))
|
||||||
p1)
|
re beg end lang)
|
||||||
(beginning-of-line 1)
|
(catch 'exit
|
||||||
(if (looking-at re)
|
(while (setq entry (pop re-list))
|
||||||
(point)
|
(setq re1 (car entry) re2 (nth 1 entry) lang (nth 2 entry)
|
||||||
(if (and (setq p1 (re-search-backward re nil t))
|
single (nth 3 entry))
|
||||||
(re-search-forward "^\\(#\\+end_src\\|[ \t]*</src\\)" nil t)
|
(save-excursion
|
||||||
(>= (point-at-eol) pos))
|
(if (or (looking-at re1)
|
||||||
(goto-char p1)
|
(re-search-backward re1 nil t))
|
||||||
(goto-char pos)
|
(progn
|
||||||
nil))))
|
(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 "\\<lang=\"\\([^ \t\n\"]+\\)\"" m))
|
||||||
|
(match-string 1 m))
|
||||||
|
((and (eq lang lang)
|
||||||
|
(string-match "\\<style=\"\\([^ \t\n\"]+\\)\"" m))
|
||||||
|
(match-string 1 m))
|
||||||
|
(t "fundamental"))))
|
||||||
|
|
||||||
(defun org-edit-src-exit ()
|
(defun org-edit-src-exit ()
|
||||||
"Exit special edit and protect problematic lines."
|
"Exit special edit and protect problematic lines."
|
||||||
(interactive)
|
(interactive)
|
||||||
|
(unless (buffer-base-buffer (current-buffer))
|
||||||
|
(error "This is not an indirect buffer, something is wrong..."))
|
||||||
(unless (> (point-min) 1)
|
(unless (> (point-min) 1)
|
||||||
(error "This buffer is not narrowed, something is wrong..."))
|
(error "This buffer is not narrowed, something is wrong..."))
|
||||||
(goto-char (point-min))
|
(goto-char (point-min))
|
||||||
|
(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)
|
(while (re-search-forward (if (org-mode-p) "^\\(.\\)" "^\\([*#]\\)") nil t)
|
||||||
(replace-match ",\\1"))
|
(replace-match ",\\1"))
|
||||||
(when font-lock-mode
|
(when font-lock-mode
|
||||||
(font-lock-unfontify-region (point-min) (point-max)))
|
(font-lock-unfontify-region (point-min) (point-max)))
|
||||||
(put-text-property (point-min) (point-max) 'font-lock-fontified t)
|
(put-text-property (point-min) (point-max) 'font-lock-fontified t))
|
||||||
(kill-buffer (current-buffer)))
|
(kill-buffer (current-buffer)))
|
||||||
|
|
||||||
;;;; Plain list items, including checkboxes
|
;;;; Plain list items, including checkboxes
|
||||||
|
@ -12654,11 +12710,11 @@ See the individual commands for more information."
|
||||||
(defun org-edit-special ()
|
(defun org-edit-special ()
|
||||||
"Call a special editor for the stuff at point.
|
"Call a special editor for the stuff at point.
|
||||||
When at a table, call the formula editor with `org-table-edit-formulas'.
|
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)
|
(interactive)
|
||||||
(if (org-at-table-p)
|
(if (org-at-table-p)
|
||||||
(call-interactively 'org-table-edit-formulas)
|
(call-interactively 'org-table-edit-formulas)
|
||||||
(or (org-edit-src-example)
|
(or (org-edit-src-code)
|
||||||
(error "%s"
|
(error "%s"
|
||||||
(substitute-command-keys
|
(substitute-command-keys
|
||||||
"\\[org-edit-special] can do nothing useful here.")))))
|
"\\[org-edit-special] can do nothing useful here.")))))
|
||||||
|
|
Loading…
Reference in New Issue