Mercurial > emacs
annotate lisp/nxml/nxml-mode.el @ 99503:9d16e131644e
2008-11-12 Carsten Dominik <dominik@science.uva.nl>
* org.texi (Clocking work time): Document the :formula property of
clock tables.
(Structure editing, Refiling notes): Document refiling regions.
(Agenda commands): Document the double-prefix version
of the `l' command in the agenda.
(Handling links): Explain the effect of a double prefix
arg to `C-c C-o'.
(TODO basics): Add documentation for tag triggers.
author | Carsten Dominik <dominik@science.uva.nl> |
---|---|
date | Wed, 12 Nov 2008 08:06:54 +0000 |
parents | e374c747704b |
children | d72f163ce147 |
rev | line source |
---|---|
86361 | 1 ;;; nxml-mode.el --- a new XML mode |
2 | |
87665 | 3 ;; Copyright (C) 2003, 2004, 2007, 2008 Free Software Foundation, Inc. |
86361 | 4 |
5 ;; Author: James Clark | |
6 ;; Keywords: XML | |
7 | |
86538 | 8 ;; This file is part of GNU Emacs. |
9 | |
94666
d495d4d5452f
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93917
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
86538 | 11 ;; it under the terms of the GNU General Public License as published by |
94666
d495d4d5452f
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93917
diff
changeset
|
12 ;; the Free Software Foundation, either version 3 of the License, or |
d495d4d5452f
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93917
diff
changeset
|
13 ;; (at your option) any later version. |
86361 | 14 |
86538 | 15 ;; GNU Emacs is distributed in the hope that it will be useful, |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
86361 | 19 |
86538 | 20 ;; You should have received a copy of the GNU General Public License |
94666
d495d4d5452f
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93917
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
86361 | 22 |
23 ;;; Commentary: | |
24 | |
25 ;; See nxml-rap.el for description of parsing strategy. | |
26 | |
27 ;;; Code: | |
28 | |
29 (when (featurep 'mucs) | |
30 (error "nxml-mode is not compatible with Mule-UCS")) | |
31 | |
96182 | 32 (eval-when-compile (require 'cl)) ; for assert |
33 | |
86361 | 34 (require 'xmltok) |
35 (require 'nxml-enc) | |
36 (require 'nxml-glyph) | |
37 (require 'nxml-util) | |
38 (require 'nxml-rap) | |
39 (require 'nxml-outln) | |
40 | |
87719
a38e332c61af
(nxml-enable-unicode-char-name-sets, rng-nxml-mode-init): Declare.
Jason Rumney <jasonr@gnu.org>
parents:
87715
diff
changeset
|
41 (declare-function rng-nxml-mode-init "rng-nxml") |
a38e332c61af
(nxml-enable-unicode-char-name-sets, rng-nxml-mode-init): Declare.
Jason Rumney <jasonr@gnu.org>
parents:
87715
diff
changeset
|
42 (declare-function nxml-enable-unicode-char-name-sets "nxml-uchnm") |
a38e332c61af
(nxml-enable-unicode-char-name-sets, rng-nxml-mode-init): Declare.
Jason Rumney <jasonr@gnu.org>
parents:
87715
diff
changeset
|
43 |
86361 | 44 ;;; Customization |
45 | |
46 (defgroup nxml nil | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
47 "New XML editing mode." |
86361 | 48 :group 'languages |
49 :group 'wp) | |
50 | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
51 (defgroup nxml-faces nil |
86361 | 52 "Faces for XML syntax highlighting." |
53 :group 'nxml | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
54 :group 'font-lock-faces) |
86361 | 55 |
56 (defcustom nxml-char-ref-display-glyph-flag t | |
57 "*Non-nil means display glyph following character reference. | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
58 The glyph is displayed in face `nxml-glyph'. The hook |
86361 | 59 `nxml-glyph-set-hook' can be used to customize for which characters |
60 glyphs are displayed." | |
61 :group 'nxml | |
62 :type 'boolean) | |
63 | |
64 (defcustom nxml-mode-hook nil | |
65 "Hook run by command `nxml-mode'." | |
66 :group 'nxml | |
67 :type 'hook) | |
68 | |
69 (defcustom nxml-sexp-element-flag nil | |
70 "*Non-nil means sexp commands treat an element as a single expression." | |
71 :group 'nxml | |
72 :type 'boolean) | |
73 | |
74 (defcustom nxml-slash-auto-complete-flag nil | |
75 "*Non-nil means typing a slash automatically completes the end-tag. | |
76 This is used by `nxml-electric-slash'." | |
77 :group 'nxml | |
78 :type 'boolean) | |
79 | |
80 (defcustom nxml-child-indent 2 | |
81 "*Indentation for the children of an element relative to the start-tag. | |
82 This only applies when the line or lines containing the start-tag contains | |
83 nothing else other than that start-tag." | |
84 :group 'nxml | |
85 :type 'integer) | |
86 | |
87 (defcustom nxml-attribute-indent 4 | |
88 "*Indentation for the attributes of an element relative to the start-tag. | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
89 This only applies when the first attribute of a tag starts a line. |
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
90 In other cases, the first attribute on one line is indented the same |
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
91 as the first attribute on the previous line." |
86361 | 92 :group 'nxml |
93 :type 'integer) | |
94 | |
95 (defcustom nxml-bind-meta-tab-to-complete-flag (not window-system) | |
96 "*Non-nil means bind M-TAB in `nxml-mode-map' to `nxml-complete'. | |
97 C-return will be bound to `nxml-complete' in any case. | |
98 M-TAB gets swallowed by many window systems/managers, and | |
99 `documentation' will show M-TAB rather than C-return as the | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
100 binding for `nxml-complete' when both are bound. So it's better |
86361 | 101 to bind M-TAB only when it will work." |
102 :group 'nxml | |
103 :set (lambda (sym flag) | |
104 (set-default sym flag) | |
105 (when (and (boundp 'nxml-mode-map) nxml-mode-map) | |
106 (define-key nxml-mode-map "\M-\t" (and flag 'nxml-complete)))) | |
107 :type 'boolean) | |
108 | |
109 (defcustom nxml-prefer-utf-16-to-utf-8-flag nil | |
110 "*Non-nil means prefer UTF-16 to UTF-8 when saving a buffer. | |
111 This is used only when a buffer does not contain an encoding declaration | |
112 and when its current `buffer-file-coding-system' specifies neither UTF-16 | |
113 nor UTF-8." | |
114 :group 'nxml | |
115 :type 'boolean) | |
116 | |
117 (defcustom nxml-prefer-utf-16-little-to-big-endian-flag (eq system-type | |
118 'windows-nt) | |
119 "*Non-nil means prefer little-endian to big-endian byte-order for UTF-16. | |
120 This is used only for saving a buffer; when reading the byte-order is | |
121 auto-detected. It may be relevant both when there is no encoding declaration | |
122 and when the encoding declaration specifies `UTF-16'." | |
123 :group 'nxml | |
124 :type 'boolean) | |
125 | |
126 (defcustom nxml-default-buffer-file-coding-system nil | |
127 "*Default value for `buffer-file-coding-system' for a buffer for a new file. | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
128 A value of nil means use the default value of `buffer-file-coding-system' as normal. |
86361 | 129 A buffer's `buffer-file-coding-system' affects what \\[nxml-insert-xml-declaration] inserts." |
130 :group 'nxml | |
131 :type 'coding-system) | |
132 | |
133 (defcustom nxml-auto-insert-xml-declaration-flag nil | |
134 "*Non-nil means automatically insert an XML declaration in a new file. | |
135 The XML declaration is inserted using `nxml-insert-xml-declaration'." | |
136 :group 'nxml | |
137 :type 'boolean) | |
138 | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
139 (defface nxml-delimited-data |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
140 '((t (:inherit font-lock-doc-face))) |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
141 "Face used to highlight data enclosed between delimiters. |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
142 This is not used directly, but only via inheritance by other faces." |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
143 :group 'nxml-faces) |
86361 | 144 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
145 (defface nxml-name |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
146 '((t (:inherit font-lock-builtin-face))) |
86361 | 147 "Face used to highlight various names. |
148 This includes element and attribute names, processing | |
149 instruction targets and the CDATA keyword in a CDATA section. | |
150 This is not used directly, but only via inheritance by other faces." | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
151 :group 'nxml-faces) |
86361 | 152 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
153 (defface nxml-ref |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
154 '((t (:inherit font-lock-constant-face))) |
86361 | 155 "Face used to highlight character and entity references. |
156 This is not used directly, but only via inheritance by other faces." | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
157 :group 'nxml-faces) |
86361 | 158 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
159 (defface nxml-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
160 nil |
86361 | 161 "Face used to highlight delimiters. |
162 This is not used directly, but only via inheritance by other faces." | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
163 :group 'nxml-faces) |
86361 | 164 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
165 (defface nxml-text |
86361 | 166 nil |
167 "Face used to highlight text." | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
168 :group 'nxml-faces) |
86361 | 169 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
170 (defface nxml-comment-content |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
171 '((t (:inherit font-lock-comment-face))) |
86361 | 172 "Face used to highlight the content of comments." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
173 :group 'nxml-faces) |
86361 | 174 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
175 (defface nxml-comment-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
176 '((t (:inherit font-lock-comment-delimiter-face))) |
86361 | 177 "Face used for the delimiters of comments, i.e <!-- and -->." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
178 :group 'nxml-faces) |
86361 | 179 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
180 (defface nxml-processing-instruction-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
181 '((t (:inherit nxml-delimiter))) |
86361 | 182 "Face used for the delimiters of processing instructions, i.e <? and ?>." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
183 :group 'nxml-faces) |
86361 | 184 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
185 (defface nxml-processing-instruction-target |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
186 '((t (:inherit font-lock-keyword-face))) |
86361 | 187 "Face used for the target of processing instructions." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
188 :group 'nxml-faces) |
86361 | 189 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
190 (defface nxml-processing-instruction-content |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
191 '((t (:inherit nxml-delimited-data))) |
86361 | 192 "Face used for the content of processing instructions." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
193 :group 'nxml-faces) |
86361 | 194 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
195 (defface nxml-cdata-section-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
196 '((t (:inherit nxml-delimiter))) |
86361 | 197 "Face used for the delimiters of CDATA sections, i.e <![, [, and ]]>." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
198 :group 'nxml-faces) |
86361 | 199 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
200 (defface nxml-cdata-section-CDATA |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
201 '((t (:inherit nxml-name))) |
86361 | 202 "Face used for the CDATA keyword in CDATA sections." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
203 :group 'nxml-faces) |
86361 | 204 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
205 (defface nxml-cdata-section-content |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
206 '((t (:inherit nxml-text))) |
86361 | 207 "Face used for the content of CDATA sections." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
208 :group 'nxml-faces) |
86361 | 209 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
210 (defface nxml-char-ref-number |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
211 '((t (:inherit nxml-ref))) |
86361 | 212 "Face used for the number in character references. |
213 This includes ths `x' in hex references." | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
214 :group 'nxml-faces) |
86361 | 215 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
216 (defface nxml-char-ref-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
217 '((t (:inherit nxml-ref))) |
86361 | 218 "Face used for the delimiters of character references, i.e &# and ;." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
219 :group 'nxml-faces) |
86361 | 220 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
221 (defface nxml-entity-ref-name |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
222 '((t (:inherit nxml-ref))) |
86361 | 223 "Face used for the entity name in general entity references." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
224 :group 'nxml-faces) |
86361 | 225 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
226 (defface nxml-entity-ref-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
227 '((t (:inherit nxml-ref))) |
86361 | 228 "Face used for the delimiters of entity references, i.e & and ;." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
229 :group 'nxml-faces) |
86361 | 230 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
231 (defface nxml-tag-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
232 '((t (:inherit nxml-delimiter))) |
86361 | 233 "Face used for the angle brackets delimiting tags. |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
234 `nxml-tag-slash' is used for slashes." |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
235 :group 'nxml-faces) |
86361 | 236 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
237 (defface nxml-tag-slash |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
238 '((t (:inherit nxml-tag-delimiter))) |
86361 | 239 "Face used for slashes in tags, both in end-tags and empty-elements." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
240 :group 'nxml-faces) |
86361 | 241 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
242 (defface nxml-element-prefix |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
243 '((t (:inherit nxml-name))) |
86361 | 244 "Face used for the prefix of elements." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
245 :group 'nxml-faces) |
86361 | 246 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
247 (defface nxml-element-colon |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
248 nil |
86361 | 249 "Face used for the colon in element names." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
250 :group 'nxml-faces) |
86361 | 251 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
252 (defface nxml-element-local-name |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
253 '((t (:inherit font-lock-function-name-face))) |
86361 | 254 "Face used for the local name of elements." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
255 :group 'nxml-faces) |
86361 | 256 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
257 (defface nxml-attribute-prefix |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
258 '((t (:inherit nxml-name))) |
86361 | 259 "Face used for the prefix of attributes." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
260 :group 'nxml-faces) |
86361 | 261 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
262 (defface nxml-attribute-colon |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
263 '((t (:inherit nxml-delimiter))) |
86361 | 264 "Face used for the colon in attribute names." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
265 :group 'nxml-faces) |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
266 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
267 (defface nxml-attribute-local-name |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
268 '((t (:inherit font-lock-variable-name-face))) |
86361 | 269 "Face used for the local name of attributes." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
270 :group 'nxml-faces) |
86361 | 271 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
272 (defface nxml-namespace-attribute-xmlns |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
273 '((t (:inherit nxml-attribute-prefix))) |
86361 | 274 "Face used for `xmlns' in namespace attributes." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
275 :group 'nxml-faces) |
86361 | 276 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
277 (defface nxml-namespace-attribute-colon |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
278 '((t (:inherit nxml-attribute-colon))) |
86361 | 279 "Face used for the colon in namespace attributes." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
280 :group 'nxml-faces) |
86361 | 281 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
282 (defface nxml-namespace-attribute-prefix |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
283 '((t (:inherit nxml-attribute-local-name))) |
86361 | 284 "Face used for the prefix declared in namespace attributes." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
285 :group 'nxml-faces) |
86361 | 286 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
287 (defface nxml-attribute-value |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
288 '((t (:inherit font-lock-string-face))) |
86361 | 289 "Face used for the value of attributes." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
290 :group 'nxml-faces) |
86361 | 291 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
292 (defface nxml-attribute-value-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
293 '((t (:inherit nxml-attribute-value))) |
86361 | 294 "Face used for the delimiters of attribute values." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
295 :group 'nxml-faces) |
86361 | 296 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
297 (defface nxml-namespace-attribute-value |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
298 '((t (:inherit nxml-attribute-value))) |
86361 | 299 "Face used for the value of namespace attributes." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
300 :group 'nxml-faces) |
86361 | 301 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
302 (defface nxml-namespace-attribute-value-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
303 '((t (:inherit nxml-attribute-value-delimiter))) |
86361 | 304 "Face used for the delimiters of namespace attribute values." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
305 :group 'nxml-faces) |
86361 | 306 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
307 (defface nxml-prolog-literal-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
308 '((t (:inherit nxml-delimited-data))) |
86361 | 309 "Face used for the delimiters of literals in the prolog." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
310 :group 'nxml-faces) |
86361 | 311 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
312 (defface nxml-prolog-literal-content |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
313 '((t (:inherit nxml-delimited-data))) |
86361 | 314 "Face used for the content of literals in the prolog." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
315 :group 'nxml-faces) |
86361 | 316 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
317 (defface nxml-prolog-keyword |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
318 '((t (:inherit font-lock-keyword-face))) |
86361 | 319 "Face used for keywords in the prolog." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
320 :group 'nxml-faces) |
86361 | 321 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
322 (defface nxml-markup-declaration-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
323 '((t (:inherit nxml-delimiter))) |
86361 | 324 "Face used for the delimiters of markup declarations in the prolog. |
325 The delimiters are <! and >." | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
326 :group 'nxml-faces) |
86361 | 327 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
328 (defface nxml-hash |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
329 '((t (:inherit nxml-name))) |
86361 | 330 "Face used for # before a name in the prolog." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
331 :group 'nxml-faces) |
86361 | 332 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
333 (defface nxml-glyph |
86361 | 334 '((((type x)) |
335 (:family | |
336 "misc-fixed" | |
337 :background | |
338 "light grey" | |
339 :foreground | |
340 "black" | |
341 :weight | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
342 normal |
86361 | 343 :slant |
344 normal)) | |
345 (t | |
346 (:background | |
347 "light grey" | |
348 :foreground | |
349 "black" | |
350 :weight | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
351 normal |
86361 | 352 :slant |
353 normal))) | |
354 "Face used for glyph for char references." | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
355 :group 'nxml-faces) |
86361 | 356 |
357 ;;; Global variables | |
358 | |
359 (defvar nxml-prolog-regions nil | |
360 "List of regions in the prolog to be fontified. | |
361 See the function `xmltok-forward-prolog' for more information.") | |
362 (make-variable-buffer-local 'nxml-prolog-regions) | |
363 | |
364 (defvar nxml-last-fontify-end nil | |
365 "Position where fontification last ended. | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
366 It is nil if the buffer changed since the last fontification.") |
86361 | 367 (make-variable-buffer-local 'nxml-last-fontify-end) |
368 | |
369 (defvar nxml-degraded nil | |
370 "Non-nil if currently operating in degraded mode. | |
371 Degraded mode is enabled when an internal error is encountered in the | |
372 fontification or after-change functions.") | |
373 (make-variable-buffer-local 'nxml-degraded) | |
374 | |
375 (defvar nxml-completion-hook nil | |
376 "Hook run by `nxml-complete'. | |
377 This hook is run until success.") | |
378 | |
379 (defvar nxml-in-mixed-content-hook nil | |
380 "Hook to determine whether point is in mixed content. | |
381 The hook is called without arguments. It should return nil if it is | |
382 definitely not mixed; non-nil otherwise. The hook will be run until | |
383 one of the functions returns nil.") | |
384 | |
385 (defvar nxml-mixed-scan-distance 4000 | |
386 "Maximum distance from point to scan when checking for mixed content.") | |
387 | |
388 (defvar nxml-end-tag-indent-scan-distance 4000 | |
389 "Maximum distance from point to scan backwards when indenting end-tag.") | |
390 | |
391 (defvar nxml-char-ref-extra-display t | |
392 "Non-nil means display extra information for character references. | |
393 The extra information consists of a tooltip with the character name | |
394 and, if `nxml-char-ref-display-glyph-flag' is non-nil, a glyph | |
395 corresponding to the referenced character following the character | |
396 reference.") | |
397 (make-variable-buffer-local 'nxml-char-ref-extra-display) | |
398 | |
399 (defvar nxml-mode-map | |
400 (let ((map (make-sparse-keymap))) | |
401 (define-key map "\M-\C-u" 'nxml-backward-up-element) | |
402 (define-key map "\M-\C-d" 'nxml-down-element) | |
403 (define-key map "\M-\C-n" 'nxml-forward-element) | |
404 (define-key map "\M-\C-p" 'nxml-backward-element) | |
405 (define-key map "\M-{" 'nxml-backward-paragraph) | |
406 (define-key map "\M-}" 'nxml-forward-paragraph) | |
407 (define-key map "\M-h" 'nxml-mark-paragraph) | |
408 (define-key map "\C-c\C-f" 'nxml-finish-element) | |
409 (define-key map "\C-c\C-m" 'nxml-split-element) | |
410 (define-key map "\C-c\C-b" 'nxml-balanced-close-start-tag-block) | |
411 (define-key map "\C-c\C-i" 'nxml-balanced-close-start-tag-inline) | |
412 (define-key map "\C-c\C-x" 'nxml-insert-xml-declaration) | |
413 (define-key map "\C-c\C-d" 'nxml-dynamic-markup-word) | |
414 ;; u is for Unicode | |
415 (define-key map "\C-c\C-u" 'nxml-insert-named-char) | |
416 (define-key map "\C-c\C-o" nxml-outline-prefix-map) | |
417 (define-key map [S-mouse-2] 'nxml-mouse-hide-direct-text-content) | |
418 (define-key map "/" 'nxml-electric-slash) | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
419 (define-key map [C-return] 'nxml-complete) |
86361 | 420 (when nxml-bind-meta-tab-to-complete-flag |
421 (define-key map "\M-\t" 'nxml-complete)) | |
422 map) | |
423 "Keymap for nxml-mode.") | |
424 | |
95598 | 425 (defvar nxml-font-lock-keywords |
426 '(nxml-fontify-matcher) | |
427 "Default font lock keywords for nxml-mode.") | |
428 | |
86361 | 429 (defsubst nxml-set-face (start end face) |
430 (when (and face (< start end)) | |
95598 | 431 (font-lock-append-text-property start end 'face face))) |
86361 | 432 |
433 ;;;###autoload | |
434 (defun nxml-mode () | |
435 ;; We use C-c C-i instead of \\[nxml-balanced-close-start-tag-inline] | |
436 ;; because Emacs turns C-c C-i into C-c TAB which is hard to type and | |
437 ;; not mnemonic. | |
438 "Major mode for editing XML. | |
439 | |
440 \\[nxml-finish-element] finishes the current element by inserting an end-tag. | |
441 C-c C-i closes a start-tag with `>' and then inserts a balancing end-tag | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
442 leaving point between the start-tag and end-tag. |
86361 | 443 \\[nxml-balanced-close-start-tag-block] is similar but for block rather than inline elements: |
444 the start-tag, point, and end-tag are all left on separate lines. | |
445 If `nxml-slash-auto-complete-flag' is non-nil, then inserting a `</' | |
446 automatically inserts the rest of the end-tag. | |
447 | |
448 \\[nxml-complete] performs completion on the symbol preceding point. | |
449 | |
450 \\[nxml-dynamic-markup-word] uses the contents of the current buffer | |
451 to choose a tag to put around the word preceding point. | |
452 | |
453 Sections of the document can be displayed in outline form. The | |
454 variable `nxml-section-element-name-regexp' controls when an element | |
455 is recognized as a section. The same key sequences that change | |
456 visibility in outline mode are used except that they start with C-c C-o | |
457 instead of C-c. | |
458 | |
459 Validation is provided by the related minor-mode `rng-validate-mode'. | |
460 This also makes completion schema- and context- sensitive. Element | |
461 names, attribute names, attribute values and namespace URIs can all be | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
462 completed. By default, `rng-validate-mode' is automatically enabled. |
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
463 You can toggle it using \\[rng-validate-mode] or change the default by |
87712
a9f53375739a
(nxml-mode): Call rng-nxml-mode-init directly.
Jason Rumney <jasonr@gnu.org>
parents:
87665
diff
changeset
|
464 customizing `rng-nxml-auto-validate-flag'. |
86361 | 465 |
466 \\[indent-for-tab-command] indents the current line appropriately. | |
467 This can be customized using the variable `nxml-child-indent' | |
468 and the variable `nxml-attribute-indent'. | |
469 | |
470 \\[nxml-insert-named-char] inserts a character reference using | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
471 the character's name (by default, the Unicode name). |
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
472 \\[universal-argument] \\[nxml-insert-named-char] inserts the character directly. |
86361 | 473 |
474 The Emacs commands that normally operate on balanced expressions will | |
475 operate on XML markup items. Thus \\[forward-sexp] will move forward | |
476 across one markup item; \\[backward-sexp] will move backward across | |
477 one markup item; \\[kill-sexp] will kill the following markup item; | |
478 \\[mark-sexp] will mark the following markup item. By default, each | |
479 tag each treated as a single markup item; to make the complete element | |
480 be treated as a single markup item, set the variable | |
481 `nxml-sexp-element-flag' to t. For more details, see the function | |
482 `nxml-forward-balanced-item'. | |
483 | |
484 \\[nxml-backward-up-element] and \\[nxml-down-element] move up and down the element structure. | |
485 | |
486 Many aspects this mode can be customized using | |
487 \\[customize-group] nxml RET." | |
488 (interactive) | |
489 (kill-all-local-variables) | |
490 (setq major-mode 'nxml-mode) | |
491 (setq mode-name "nXML") | |
87793
b0683497550c
(nxml-mode): Use mode-line-process to indicate the use of degraded mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87719
diff
changeset
|
492 (set (make-local-variable 'mode-line-process) '((nxml-degraded "/degraded"))) |
86361 | 493 ;; We'll determine the fill prefix ourselves |
494 (make-local-variable 'adaptive-fill-mode) | |
495 (setq adaptive-fill-mode nil) | |
496 (make-local-variable 'forward-sexp-function) | |
497 (setq forward-sexp-function 'nxml-forward-balanced-item) | |
498 (make-local-variable 'indent-line-function) | |
499 (setq indent-line-function 'nxml-indent-line) | |
500 (make-local-variable 'fill-paragraph-function) | |
501 (setq fill-paragraph-function 'nxml-do-fill-paragraph) | |
502 ;; Comment support | |
503 ;; This doesn't seem to work too well; | |
504 ;; I think we should probably roll our own nxml-comment-dwim function. | |
505 (make-local-variable 'comment-indent-function) | |
506 (setq comment-indent-function 'nxml-indent-line) | |
507 (make-local-variable 'comment-start) | |
508 (setq comment-start "<!--") | |
509 (make-local-variable 'comment-start-skip) | |
510 (setq comment-start-skip "<!--[ \t\r\n]*") | |
511 (make-local-variable 'comment-end) | |
512 (setq comment-end "-->") | |
513 (make-local-variable 'comment-end-skip) | |
514 (setq comment-end-skip "[ \t\r\n]*-->") | |
515 (make-local-variable 'comment-line-break-function) | |
516 (setq comment-line-break-function 'nxml-newline-and-indent) | |
517 (use-local-map nxml-mode-map) | |
518 (save-excursion | |
519 (save-restriction | |
520 (widen) | |
521 (nxml-clear-dependent-regions (point-min) (point-max)) | |
522 (setq nxml-scan-end (copy-marker (point-min) nil)) | |
523 (nxml-with-unmodifying-text-property-changes | |
95598 | 524 (nxml-clear-inside (point-min) (point-max)) |
86361 | 525 (nxml-with-invisible-motion |
526 (nxml-scan-prolog))))) | |
527 (add-hook 'after-change-functions 'nxml-after-change nil t) | |
93917
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
528 (add-hook 'change-major-mode-hook 'nxml-cleanup nil t) |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
529 |
91924
b6c62ca6da76
(nxml-mode): Don't add a write-contents-hook.
Jason Rumney <jasonr@gnu.org>
parents:
87793
diff
changeset
|
530 ;; Emacs 23 handles the encoding attribute on the xml declaration |
b6c62ca6da76
(nxml-mode): Don't add a write-contents-hook.
Jason Rumney <jasonr@gnu.org>
parents:
87793
diff
changeset
|
531 ;; transparently to nxml-mode, so there is no longer a need for the below |
b6c62ca6da76
(nxml-mode): Don't add a write-contents-hook.
Jason Rumney <jasonr@gnu.org>
parents:
87793
diff
changeset
|
532 ;; hook. The hook also had the drawback of overriding explicit user |
b6c62ca6da76
(nxml-mode): Don't add a write-contents-hook.
Jason Rumney <jasonr@gnu.org>
parents:
87793
diff
changeset
|
533 ;; instruction to save as some encoding other than utf-8. |
b6c62ca6da76
(nxml-mode): Don't add a write-contents-hook.
Jason Rumney <jasonr@gnu.org>
parents:
87793
diff
changeset
|
534 ;;; (add-hook 'write-contents-hooks 'nxml-prepare-to-save) |
86361 | 535 (when (not (and (buffer-file-name) (file-exists-p (buffer-file-name)))) |
536 (when (and nxml-default-buffer-file-coding-system | |
537 (not (local-variable-p 'buffer-file-coding-system))) | |
538 (setq buffer-file-coding-system nxml-default-buffer-file-coding-system)) | |
539 (when nxml-auto-insert-xml-declaration-flag | |
540 (nxml-insert-xml-declaration))) | |
95598 | 541 |
542 (setq font-lock-defaults | |
543 '(nxml-font-lock-keywords | |
544 t ; keywords-only; we highlight comments and strings here | |
545 nil ; font-lock-keywords-case-fold-search. XML is case sensitive | |
546 nil ; no special syntax table | |
547 nil ; no automatic syntactic fontification | |
548 (font-lock-extend-after-change-region-function | |
549 . nxml-extend-after-change-region) | |
550 (font-lock-extend-region-functions . (nxml-extend-region)) | |
551 (jit-lock-contextually . t) | |
552 (font-lock-unfontify-region-function . nxml-unfontify-region))) | |
553 | |
87712
a9f53375739a
(nxml-mode): Call rng-nxml-mode-init directly.
Jason Rumney <jasonr@gnu.org>
parents:
87665
diff
changeset
|
554 (rng-nxml-mode-init) |
87715
39844b05431b
(nxml-char-name-ignore-case): Change default value.
Jason Rumney <jasonr@gnu.org>
parents:
87712
diff
changeset
|
555 (nxml-enable-unicode-char-name-sets) |
96007
8b2ac128dd5b
(nxml-mode): Use run-mode-hooks.
Jason Rumney <jasonr@gnu.org>
parents:
95598
diff
changeset
|
556 (run-mode-hooks 'nxml-mode-hook)) |
86361 | 557 |
93917
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
558 (defun nxml-cleanup () |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
559 "Clean up after nxml-mode." |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
560 ;; Disable associated minor modes. |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
561 (rng-validate-mode -1) |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
562 ;; Clean up fontification. |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
563 (save-excursion |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
564 (widen) |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
565 (let ((inhibit-read-only t) |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
566 (buffer-undo-list t) |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
567 (modified (buffer-modified-p))) |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
568 (nxml-with-invisible-motion |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
569 (remove-text-properties (point-min) (point-max) '(face))) |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
570 (set-buffer-modified-p modified))) |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
571 (remove-hook 'change-major-mode-hook 'nxml-cleanup t)) |
3fad91a9740c
2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
Jason Rumney <jasonr@gnu.org>
parents:
91924
diff
changeset
|
572 |
86361 | 573 (defun nxml-degrade (context err) |
574 (message "Internal nXML mode error in %s (%s), degrading" | |
575 context | |
576 (error-message-string err)) | |
577 (ding) | |
578 (setq nxml-degraded t) | |
579 (setq nxml-prolog-end 1) | |
580 (save-excursion | |
581 (save-restriction | |
582 (widen) | |
583 (nxml-with-unmodifying-text-property-changes | |
87793
b0683497550c
(nxml-mode): Use mode-line-process to indicate the use of degraded mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87719
diff
changeset
|
584 (nxml-clear-inside (point-min) (point-max)))))) |
86361 | 585 |
586 ;;; Change management | |
587 | |
95598 | 588 (defun nxml-debug-region (start end) |
589 (interactive "r") | |
590 (let ((font-lock-beg start) | |
591 (font-lock-end end)) | |
592 (nxml-extend-region) | |
593 (goto-char font-lock-beg) | |
594 (set-mark font-lock-end))) | |
595 | |
86361 | 596 (defun nxml-after-change (start end pre-change-length) |
95598 | 597 ; In font-lock mode, nxml-after-change1 is called via |
598 ; nxml-extend-after-change-region instead so that the updated | |
599 ; book-keeping information is available for fontification. | |
600 (unless (or font-lock-mode nxml-degraded) | |
601 (nxml-with-degradation-on-error 'nxml-after-change | |
602 (save-excursion | |
603 (save-restriction | |
604 (widen) | |
605 (save-match-data | |
606 (nxml-with-invisible-motion | |
607 (nxml-with-unmodifying-text-property-changes | |
608 (nxml-after-change1 | |
609 start end pre-change-length))))))))) | |
86361 | 610 |
611 (defun nxml-after-change1 (start end pre-change-length) | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
612 "After-change bookkeeping. |
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
613 Returns a cons cell containing a possibly-enlarged change region. |
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
614 You must call `nxml-extend-region' on this expanded region to obtain |
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
615 the full extent of the area needing refontification. |
95598 | 616 |
617 For bookkeeping, call this function even when fontification is | |
618 disabled." | |
86361 | 619 (let ((pre-change-end (+ start pre-change-length))) |
620 (setq start | |
621 (nxml-adjust-start-for-dependent-regions start | |
622 end | |
623 pre-change-length)) | |
95598 | 624 ;; If the prolog might have changed, rescan the prolog |
86361 | 625 (when (<= start |
95598 | 626 ;; Add 2 so as to include the < and following char that |
627 ;; start the instance (document element), since changing | |
628 ;; these can change where the prolog ends. | |
86361 | 629 (+ nxml-prolog-end 2)) |
95598 | 630 ;; end must be extended to at least the end of the old prolog in |
631 ;; case the new prolog is shorter | |
86361 | 632 (when (< pre-change-end nxml-prolog-end) |
633 (setq end | |
634 ;; don't let end get out of range even if pre-change-length | |
635 ;; is bogus | |
636 (min (point-max) | |
637 (+ end (- nxml-prolog-end pre-change-end))))) | |
95598 | 638 (nxml-scan-prolog) |
639 (setq start (point-min)))) | |
640 | |
641 (when (> end nxml-prolog-end) | |
642 (goto-char start) | |
643 (nxml-move-tag-backwards (point-min)) | |
644 (setq start (point)) | |
645 (setq end (max (nxml-scan-after-change start end) | |
646 end))) | |
647 | |
648 (nxml-debug-change "nxml-after-change1" start end) | |
649 (cons start end)) | |
650 | |
86361 | 651 ;;; Encodings |
652 | |
653 (defun nxml-insert-xml-declaration () | |
654 "Insert an XML declaration at the beginning of buffer. | |
655 The XML declaration will declare an encoding depending on the buffer's | |
656 `buffer-file-coding-system'." | |
657 (interactive "*") | |
658 (let ((coding-system | |
659 (if (and buffer-file-coding-system | |
660 (coding-system-p buffer-file-coding-system) | |
661 (coding-system-get buffer-file-coding-system | |
662 'mime-charset)) | |
663 buffer-file-coding-system | |
664 (nxml-choose-utf-coding-system)))) | |
665 (goto-char (point-min)) | |
666 (insert (format "<?xml version=\"1.0\" encoding=\"%s\"?>\n" | |
667 (nxml-coding-system-name coding-system))))) | |
668 | |
669 (defun nxml-prepare-to-save () | |
670 (unless (and (not enable-multibyte-characters) | |
671 (local-variable-p 'buffer-file-coding-system) | |
672 buffer-file-coding-system | |
673 (or (eq (coding-system-type buffer-file-coding-system) 5) | |
674 (eq buffer-file-coding-system 'no-conversion))) | |
675 (save-excursion | |
676 (setq buffer-file-coding-system (nxml-select-coding-system)))) | |
677 ;; nil from a function in `write-contents-hooks' means | |
678 ;; to continue and write the file as normal | |
679 nil) | |
680 | |
681 (defun nxml-select-coding-system () | |
682 (let* ((suitable-coding-systems | |
683 (find-coding-systems-region (point-min) (point-max))) | |
684 (enc-pos (progn | |
685 (goto-char (point-min)) | |
686 (xmltok-get-declared-encoding-position))) | |
687 (enc-name | |
688 (and (consp enc-pos) | |
689 (buffer-substring-no-properties (car enc-pos) | |
690 (cdr enc-pos)))) | |
691 (coding-system | |
692 (cond (enc-name | |
693 (if (string= (downcase enc-name) "utf-16") | |
694 (nxml-choose-utf-16-coding-system) | |
695 (nxml-mime-charset-coding-system enc-name))) | |
696 (enc-pos (nxml-choose-utf-coding-system))))) | |
697 ;; Make sure we have a coding-system | |
698 (unless coding-system | |
699 (setq coding-system | |
700 (and (not buffer-read-only) | |
701 (nxml-choose-suitable-coding-system | |
702 suitable-coding-systems))) | |
703 (let ((message | |
704 (if enc-name | |
705 (format "Unknown encoding %s" enc-name) | |
706 "XML declaration is not well-formed"))) | |
707 (cond ((not coding-system) | |
708 (error "%s" message)) | |
709 ((y-or-n-p | |
710 (concat message | |
711 ". " | |
712 (format (if enc-name | |
713 "Save with %s" | |
714 "Modify and save with encoding %s") | |
715 (nxml-coding-system-name coding-system)) | |
716 " ")) | |
717 (nxml-fix-encoding-declaration enc-pos coding-system)) | |
718 (t (signal 'quit nil))))) | |
719 ;; Make sure it can encode all the characters in the buffer | |
720 (unless (or (memq (coding-system-base coding-system) | |
721 suitable-coding-systems) | |
722 (equal suitable-coding-systems '(undecided))) | |
723 (let ((message | |
724 (nxml-unsuitable-coding-system-message coding-system | |
725 enc-name))) | |
726 (setq coding-system | |
727 (and (not buffer-read-only) | |
728 (nxml-choose-suitable-coding-system | |
729 suitable-coding-systems))) | |
730 (cond ((not coding-system) (error "%s" message)) | |
731 ((y-or-n-p (concat message | |
732 (format ". Save with %s " | |
733 (nxml-coding-system-name | |
734 coding-system)))) | |
735 (nxml-fix-encoding-declaration enc-pos coding-system)) | |
736 (t (signal 'quit nil))))) | |
737 ;; Merge the newline type of our existing encoding | |
738 (let ((current-eol-type | |
739 (coding-system-eol-type buffer-file-coding-system))) | |
740 (when (and current-eol-type (integerp current-eol-type)) | |
741 (setq coding-system | |
742 (coding-system-change-eol-conversion coding-system | |
743 current-eol-type)))) | |
744 coding-system)) | |
745 | |
746 (defun nxml-unsuitable-coding-system-message (coding-system &optional enc-name) | |
747 (if (nxml-coding-system-unicode-p coding-system) | |
748 "Cannot translate some characters to Unicode" | |
749 (format "Cannot encode some characters with %s" | |
750 (or enc-name | |
751 (nxml-coding-system-name coding-system))))) | |
752 | |
753 (defconst nxml-utf-16-coding-systems (and (coding-system-p 'utf-16-be) | |
754 (coding-system-p 'utf-16-le) | |
755 '(utf-16-be utf-16-le))) | |
756 | |
757 (defconst nxml-utf-coding-systems (cons 'utf-8 nxml-utf-16-coding-systems)) | |
758 | |
759 (defun nxml-coding-system-unicode-p (coding-system) | |
760 (nxml-coding-system-member (coding-system-base coding-system) | |
761 nxml-utf-coding-systems)) | |
762 | |
763 (defun nxml-coding-system-name (coding-system) | |
764 (setq coding-system (coding-system-base coding-system)) | |
765 (symbol-name | |
766 (if (nxml-coding-system-member coding-system nxml-utf-16-coding-systems) | |
767 'utf-16 | |
768 (or (coding-system-get coding-system 'mime-charset) | |
769 coding-system)))) | |
770 | |
771 (defun nxml-fix-encoding-declaration (enc-pos coding-system) | |
772 (let ((charset (nxml-coding-system-name coding-system))) | |
773 (cond ((consp enc-pos) | |
774 (delete-region (car enc-pos) (cdr enc-pos)) | |
775 (goto-char (car enc-pos)) | |
776 (insert charset)) | |
777 ((integerp enc-pos) | |
778 (goto-char enc-pos) | |
779 (insert " encoding=\"" charset ?\")) | |
780 (t | |
781 (goto-char (point-min)) | |
782 (insert "<?xml version=\"1.0\" encoding=\"" | |
783 charset | |
784 "\"?>\n") | |
785 (when (and (not enc-pos) | |
786 (let ((case-fold-search t)) | |
787 (looking-at xmltok-bad-xml-decl-regexp))) | |
788 (delete-region (point) (match-end 0))))))) | |
789 | |
790 (defun nxml-choose-suitable-coding-system (suitable-coding-systems) | |
791 (let (ret coding-system) | |
792 (if (and buffer-file-coding-system | |
793 (memq (coding-system-base buffer-file-coding-system) | |
794 suitable-coding-systems)) | |
795 buffer-file-coding-system | |
796 (while (and suitable-coding-systems (not ret)) | |
797 (setq coding-system (car suitable-coding-systems)) | |
798 (if (coding-system-get coding-system 'mime-charset) | |
799 (setq ret coding-system) | |
800 (setq suitable-coding-systems (cdr suitable-coding-systems)))) | |
801 ret))) | |
802 | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
803 (defun nxml-choose-utf-coding-system () |
86361 | 804 (let ((cur (and (local-variable-p 'buffer-file-coding-system) |
805 buffer-file-coding-system | |
806 (coding-system-base buffer-file-coding-system)))) | |
807 (cond ((car (nxml-coding-system-member cur nxml-utf-coding-systems))) | |
808 ((and nxml-prefer-utf-16-to-utf-8-flag | |
809 (coding-system-p 'utf-16-le) | |
810 (coding-system-p 'utf-16-be)) | |
811 (if nxml-prefer-utf-16-little-to-big-endian-flag | |
812 'utf-16-le | |
813 'utf-16-be)) | |
814 (t 'utf-8)))) | |
815 | |
816 (defun nxml-choose-utf-16-coding-system () | |
817 (let ((cur (and (local-variable-p 'buffer-file-coding-system) | |
818 buffer-file-coding-system | |
819 (coding-system-base buffer-file-coding-system)))) | |
820 (cond ((car (nxml-coding-system-member cur nxml-utf-16-coding-systems))) | |
821 (nxml-prefer-utf-16-little-to-big-endian-flag | |
822 (and (coding-system-p 'utf-16-le) 'utf-16-le)) | |
823 (t (and (coding-system-p 'utf-16-be) 'utf-16-be))))) | |
824 | |
825 (defun nxml-coding-system-member (coding-system coding-systems) | |
826 (let (ret) | |
827 (while (and coding-systems (not ret)) | |
828 (if (coding-system-equal coding-system | |
829 (car coding-systems)) | |
830 (setq ret coding-systems) | |
831 (setq coding-systems (cdr coding-systems)))) | |
832 ret)) | |
833 | |
834 ;;; Fontification | |
835 | |
95598 | 836 (defun nxml-unfontify-region (start end) |
837 (font-lock-default-unfontify-region start end) | |
838 (nxml-clear-char-ref-extra-display start end)) | |
839 | |
840 (defvar font-lock-beg) (defvar font-lock-end) | |
841 (defun nxml-extend-region () | |
842 "Extend the region to hold the minimum area we can fontify with nXML. | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
843 Called with `font-lock-beg' and `font-lock-end' dynamically bound." |
95598 | 844 (let ((start font-lock-beg) |
845 (end font-lock-end)) | |
846 | |
847 (nxml-debug-change "nxml-extend-region(input)" start end) | |
848 | |
849 (when (< start nxml-prolog-end) | |
850 (setq start (point-min))) | |
851 | |
852 (cond ((<= end nxml-prolog-end) | |
853 (setq end nxml-prolog-end)) | |
854 | |
855 (t | |
856 (goto-char start) | |
857 ;; some font-lock backends (like Emacs 22 jit-lock) snap | |
858 ;; the region to the beginning of the line no matter what | |
859 ;; we say here. To mitigate the resulting excess | |
860 ;; fontification, ignore leading whitespace. | |
861 (skip-syntax-forward " ") | |
862 | |
863 ;; find the beginning of the previous tag | |
864 (when (not (equal (char-after) ?\<)) | |
865 (search-backward "<" nxml-prolog-end t)) | |
866 (nxml-ensure-scan-up-to-date) | |
867 (nxml-move-outside-backwards) | |
868 (setq start (point)) | |
869 | |
870 (while (< (point) end) | |
871 (nxml-tokenize-forward)) | |
872 | |
873 (setq end (point)))) | |
874 | |
875 (when (or (< start font-lock-beg) | |
876 (> end font-lock-end)) | |
877 (setq font-lock-beg start | |
878 font-lock-end end) | |
879 (nxml-debug-change "nxml-extend-region" start end) | |
880 t))) | |
86361 | 881 |
95598 | 882 (defun nxml-extend-after-change-region (start end pre-change-length) |
883 (unless nxml-degraded | |
884 (setq nxml-last-fontify-end nil) | |
885 | |
886 (nxml-with-degradation-on-error 'nxml-extend-after-change-region | |
887 (save-excursion | |
888 (save-restriction | |
889 (widen) | |
890 (save-match-data | |
891 (nxml-with-invisible-motion | |
892 (nxml-with-unmodifying-text-property-changes | |
893 (nxml-extend-after-change-region1 | |
894 start end pre-change-length))))))))) | |
895 | |
896 (defun nxml-extend-after-change-region1 (start end pre-change-length) | |
897 (let* ((region (nxml-after-change1 start end pre-change-length)) | |
898 (font-lock-beg (car region)) | |
899 (font-lock-end (cdr region))) | |
900 | |
901 (nxml-extend-region) | |
902 (cons font-lock-beg font-lock-end))) | |
86361 | 903 |
95598 | 904 (defun nxml-fontify-matcher (bound) |
905 "Called as font-lock keyword matcher." | |
906 | |
907 (unless nxml-degraded | |
908 (nxml-debug-change "nxml-fontify-matcher" (point) bound) | |
909 | |
910 (when (< (point) nxml-prolog-end) | |
911 ;; prolog needs to be fontified in one go, and | |
912 ;; nxml-extend-region makes sure we start at BOB. | |
913 (assert (bobp)) | |
914 (nxml-fontify-prolog) | |
915 (goto-char nxml-prolog-end)) | |
916 | |
917 (let (xmltok-dependent-regions | |
918 xmltok-errors) | |
919 (while (and (nxml-tokenize-forward) | |
920 (<= (point) bound)) ; intervals are open-ended | |
921 (nxml-apply-fontify-rule))) | |
922 | |
923 (setq nxml-last-fontify-end (point))) | |
924 | |
925 ;; Since we did the fontification internally, tell font-lock to not | |
926 ;; do anything itself. | |
927 nil) | |
86361 | 928 |
929 (defun nxml-fontify-prolog () | |
930 "Fontify the prolog. | |
931 The buffer is assumed to be prepared for fontification. | |
932 This does not set the fontified property, but it does clear | |
933 faces appropriately." | |
934 (let ((regions nxml-prolog-regions)) | |
935 (while regions | |
936 (let ((region (car regions))) | |
937 (nxml-apply-fontify-rule (aref region 0) | |
938 (aref region 1) | |
939 (aref region 2))) | |
940 (setq regions (cdr regions))))) | |
941 | |
942 ;; Vectors identify a substring of the token to be highlighted in some face. | |
943 | |
944 ;; Token types returned by xmltok-forward. | |
945 | |
946 (put 'start-tag | |
947 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
948 '([nil 1 nxml-tag-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
949 [-1 nil nxml-tag-delimiter] |
86361 | 950 (element-qname . 1) |
951 attributes)) | |
952 | |
953 (put 'partial-start-tag | |
954 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
955 '([nil 1 nxml-tag-delimiter] |
86361 | 956 (element-qname . 1) |
957 attributes)) | |
958 | |
959 (put 'end-tag | |
960 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
961 '([nil 1 nxml-tag-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
962 [1 2 nxml-tag-slash] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
963 [-1 nil nxml-tag-delimiter] |
86361 | 964 (element-qname . 2))) |
965 | |
966 (put 'partial-end-tag | |
967 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
968 '([nil 1 nxml-tag-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
969 [1 2 nxml-tag-slash] |
86361 | 970 (element-qname . 2))) |
971 | |
972 (put 'empty-element | |
973 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
974 '([nil 1 nxml-tag-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
975 [-2 -1 nxml-tag-slash] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
976 [-1 nil nxml-tag-delimiter] |
86361 | 977 (element-qname . 1) |
978 attributes)) | |
979 | |
980 (put 'partial-empty-element | |
981 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
982 '([nil 1 nxml-tag-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
983 [-1 nil nxml-tag-slash] |
86361 | 984 (element-qname . 1) |
985 attributes)) | |
986 | |
987 (put 'char-ref | |
988 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
989 '([nil 2 nxml-char-ref-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
990 [2 -1 nxml-char-ref-number] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
991 [-1 nil nxml-char-ref-delimiter] |
86361 | 992 char-ref)) |
993 | |
994 (put 'entity-ref | |
995 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
996 '([nil 1 nxml-entity-ref-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
997 [1 -1 nxml-entity-ref-name] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
998 [-1 nil nxml-entity-ref-delimiter])) |
86361 | 999 |
1000 (put 'comment | |
1001 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1002 '([nil 4 nxml-comment-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1003 [4 -3 nxml-comment-content] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1004 [-3 nil nxml-comment-delimiter])) |
86361 | 1005 |
1006 (put 'processing-instruction | |
1007 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1008 '([nil 2 nxml-processing-instruction-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1009 [-2 nil nxml-processing-instruction-delimiter] |
86361 | 1010 processing-instruction-content)) |
1011 | |
1012 (put 'cdata-section | |
1013 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1014 '([nil 3 nxml-cdata-section-delimiter] ; <![ |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1015 [3 8 nxml-cdata-section-CDATA] ; CDATA |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1016 [8 9 nxml-cdata-section-delimiter] ; [ |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1017 [9 -3 nxml-cdata-section-content] ; ]]> |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1018 [-3 nil nxml-cdata-section-delimiter])) |
86361 | 1019 |
1020 (put 'data | |
1021 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1022 '([nil nil nxml-text])) |
86361 | 1023 |
1024 ;; Prolog region types in list returned by xmltok-forward-prolog. | |
1025 | |
1026 (put 'xml-declaration | |
1027 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1028 '([nil 2 nxml-processing-instruction-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1029 [2 5 nxml-processing-instruction-target] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1030 [-2 nil nxml-processing-instruction-delimiter])) |
86361 | 1031 |
1032 (put 'xml-declaration-attribute-name | |
1033 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1034 '([nil nil nxml-attribute-local-name])) |
86361 | 1035 |
1036 (put 'xml-declaration-attribute-value | |
1037 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1038 '([nil 1 nxml-attribute-value-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1039 [1 -1 nxml-attribute-value] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1040 [-1 nil nxml-attribute-value-delimiter])) |
86361 | 1041 |
1042 (put 'processing-instruction-left | |
1043 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1044 '([nil 2 nxml-processing-instruction-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1045 [2 nil nxml-processing-instruction-target])) |
86361 | 1046 |
1047 (put 'processing-instruction-right | |
1048 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1049 '([nil -2 nxml-processing-instruction-content] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1050 [-2 nil nxml-processing-instruction-delimiter])) |
86361 | 1051 |
1052 (put 'literal | |
1053 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1054 '([nil 1 nxml-prolog-literal-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1055 [1 -1 nxml-prolog-literal-content] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1056 [-1 nil nxml-prolog-literal-delimiter])) |
86361 | 1057 |
1058 (put 'keyword | |
1059 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1060 '([nil nil nxml-prolog-keyword])) |
86361 | 1061 |
1062 (put 'markup-declaration-open | |
1063 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1064 '([0 2 nxml-markup-declaration-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1065 [2 nil nxml-prolog-keyword])) |
86361 | 1066 |
1067 (put 'markup-declaration-close | |
1068 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1069 '([nil nil nxml-markup-declaration-delimiter])) |
86361 | 1070 |
1071 (put 'internal-subset-open | |
1072 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1073 '([nil nil nxml-markup-declaration-delimiter])) |
86361 | 1074 |
1075 (put 'internal-subset-close | |
1076 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1077 '([nil 1 nxml-markup-declaration-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1078 [-1 nil nxml-markup-declaration-delimiter])) |
86361 | 1079 |
1080 (put 'hash-name | |
1081 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1082 '([nil 1 nxml-hash] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1083 [1 nil nxml-prolog-keyword])) |
86361 | 1084 |
1085 (defun nxml-apply-fontify-rule (&optional type start end) | |
1086 (let ((rule (get (or type xmltok-type) 'nxml-fontify-rule))) | |
1087 (unless start (setq start xmltok-start)) | |
1088 (unless end (setq end (point))) | |
1089 (while rule | |
1090 (let* ((action (car rule))) | |
1091 (setq rule (cdr rule)) | |
1092 (cond ((vectorp action) | |
1093 (nxml-set-face (let ((offset (aref action 0))) | |
1094 (cond ((not offset) start) | |
1095 ((< offset 0) (+ end offset)) | |
1096 (t (+ start offset)))) | |
1097 (let ((offset (aref action 1))) | |
1098 (cond ((not offset) end) | |
1099 ((< offset 0) (+ end offset)) | |
1100 (t (+ start offset)))) | |
1101 (aref action 2))) | |
1102 ((and (consp action) | |
1103 (eq (car action) 'element-qname)) | |
1104 (when xmltok-name-end ; maybe nil in partial-end-tag case | |
1105 (nxml-fontify-qname (+ start (cdr action)) | |
1106 xmltok-name-colon | |
1107 xmltok-name-end | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1108 'nxml-element-prefix |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1109 'nxml-element-colon |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1110 'nxml-element-local-name))) |
86361 | 1111 ((eq action 'attributes) |
1112 (nxml-fontify-attributes)) | |
1113 ((eq action 'processing-instruction-content) | |
1114 (nxml-set-face (+ start 2) | |
1115 xmltok-name-end | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1116 'nxml-processing-instruction-target) |
86361 | 1117 (nxml-set-face (save-excursion |
1118 (goto-char xmltok-name-end) | |
1119 (skip-chars-forward " \t\r\n") | |
1120 (point)) | |
1121 (- end 2) | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1122 'nxml-processing-instruction-content)) |
86361 | 1123 ((eq action 'char-ref) |
1124 (nxml-char-ref-display-extra start | |
1125 end | |
1126 (xmltok-char-number start end))) | |
1127 (t (error "Invalid nxml-fontify-rule action %s" action))))))) | |
1128 | |
1129 (defun nxml-fontify-attributes () | |
1130 (while xmltok-namespace-attributes | |
1131 (nxml-fontify-attribute (car xmltok-namespace-attributes) | |
1132 'namespace) | |
1133 (setq xmltok-namespace-attributes | |
1134 (cdr xmltok-namespace-attributes))) | |
1135 (while xmltok-attributes | |
1136 (nxml-fontify-attribute (car xmltok-attributes)) | |
1137 (setq xmltok-attributes | |
1138 (cdr xmltok-attributes)))) | |
1139 | |
1140 (defun nxml-fontify-attribute (att &optional namespace-declaration) | |
1141 (if namespace-declaration | |
1142 (nxml-fontify-qname (xmltok-attribute-name-start att) | |
1143 (xmltok-attribute-name-colon att) | |
1144 (xmltok-attribute-name-end att) | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1145 'nxml-namespace-attribute-xmlns |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1146 'nxml-namespace-attribute-colon |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1147 'nxml-namespace-attribute-prefix |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1148 'nxml-namespace-attribute-xmlns) |
86361 | 1149 (nxml-fontify-qname (xmltok-attribute-name-start att) |
1150 (xmltok-attribute-name-colon att) | |
1151 (xmltok-attribute-name-end att) | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1152 'nxml-attribute-prefix |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1153 'nxml-attribute-colon |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1154 'nxml-attribute-local-name)) |
86361 | 1155 (let ((start (xmltok-attribute-value-start att)) |
1156 (end (xmltok-attribute-value-end att)) | |
1157 (refs (xmltok-attribute-refs att)) | |
1158 (delimiter-face (if namespace-declaration | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1159 'nxml-namespace-attribute-value-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1160 'nxml-attribute-value-delimiter)) |
86361 | 1161 (value-face (if namespace-declaration |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1162 'nxml-namespace-attribute-value |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1163 'nxml-attribute-value))) |
86361 | 1164 (when start |
1165 (nxml-set-face (1- start) start delimiter-face) | |
1166 (nxml-set-face end (1+ end) delimiter-face) | |
1167 (while refs | |
1168 (let* ((ref (car refs)) | |
1169 (ref-type (aref ref 0)) | |
1170 (ref-start (aref ref 1)) | |
1171 (ref-end (aref ref 2))) | |
1172 (nxml-set-face start ref-start value-face) | |
1173 (nxml-apply-fontify-rule ref-type ref-start ref-end) | |
1174 (setq start ref-end)) | |
1175 (setq refs (cdr refs))) | |
1176 (nxml-set-face start end value-face)))) | |
1177 | |
1178 (defun nxml-fontify-qname (start | |
1179 colon | |
1180 end | |
1181 prefix-face | |
1182 colon-face | |
1183 local-name-face | |
1184 &optional | |
1185 unprefixed-face) | |
1186 (cond (colon (nxml-set-face start colon prefix-face) | |
1187 (nxml-set-face colon (1+ colon) colon-face) | |
1188 (nxml-set-face (1+ colon) end local-name-face)) | |
1189 (t (nxml-set-face start end (or unprefixed-face | |
1190 local-name-face))))) | |
1191 | |
1192 ;;; Editing | |
1193 | |
1194 (defun nxml-electric-slash (arg) | |
1195 "Insert a slash. | |
1196 | |
1197 With a prefix ARG, do nothing other than insert the slash. | |
1198 | |
1199 Otherwise, if `nxml-slash-auto-complete-flag' is non-nil, insert the | |
1200 rest of the end-tag or empty-element if the slash is potentially part | |
1201 of an end-tag or the close of an empty-element. | |
1202 | |
1203 If the slash is part of an end-tag that is the first non-whitespace | |
1204 on the line, reindent the line." | |
1205 (interactive "*P") | |
1206 (nxml-ensure-scan-up-to-date) | |
1207 (let* ((slash-pos (point)) | |
1208 (end-tag-p (and (eq (char-before slash-pos) ?<) | |
1209 (not (nxml-get-inside slash-pos)))) | |
1210 (at-indentation (save-excursion | |
1211 (back-to-indentation) | |
1212 (eq (point) (1- slash-pos))))) | |
1213 (self-insert-command (prefix-numeric-value arg)) | |
1214 (unless arg | |
1215 (if nxml-slash-auto-complete-flag | |
1216 (if end-tag-p | |
1217 (condition-case err | |
1218 (let ((start-tag-end | |
1219 (nxml-scan-element-backward (1- slash-pos) t))) | |
1220 (when start-tag-end | |
1221 (insert (xmltok-start-tag-qname) ">") | |
1222 ;; copy the indentation of the start-tag | |
1223 (when (and at-indentation | |
1224 (save-excursion | |
1225 (goto-char xmltok-start) | |
1226 (back-to-indentation) | |
1227 (eq (point) xmltok-start))) | |
1228 (save-excursion | |
1229 (indent-line-to (save-excursion | |
1230 (goto-char xmltok-start) | |
1231 (current-column))))))) | |
1232 (nxml-scan-error nil)) | |
1233 (when (and (eq (nxml-token-before) (point)) | |
1234 (eq xmltok-type 'partial-empty-element)) | |
1235 (insert ">"))) | |
1236 (when (and end-tag-p at-indentation) | |
1237 (nxml-indent-line)))))) | |
1238 | |
1239 (defun nxml-balanced-close-start-tag-block () | |
1240 "Close the start-tag before point with `>' and insert a balancing end-tag. | |
1241 Point is left between the start-tag and the end-tag. | |
1242 If there is nothing but whitespace before the `<' that opens the | |
1243 start-tag, then put point on a blank line, and put the end-tag on | |
1244 another line aligned with the start-tag." | |
1245 (interactive "*") | |
1246 (nxml-balanced-close-start-tag 'block)) | |
1247 | |
1248 (defun nxml-balanced-close-start-tag-inline () | |
1249 "Close the start-tag before point with `>' and insert a balancing end-tag. | |
1250 Point is left between the start-tag and the end-tag. | |
1251 No extra whitespace is inserted." | |
1252 (interactive "*") | |
1253 (nxml-balanced-close-start-tag 'inline)) | |
1254 | |
1255 (defun nxml-balanced-close-start-tag (block-or-inline) | |
1256 (let ((token-end (nxml-token-before)) | |
1257 (pos (1+ (point)))) | |
1258 (unless (or (eq xmltok-type 'partial-start-tag) | |
1259 (and (memq xmltok-type '(start-tag | |
1260 empty-element | |
1261 partial-empty-element)) | |
1262 (>= token-end pos))) | |
1263 (error "Not in a start-tag")) | |
1264 (insert "></" | |
1265 (buffer-substring-no-properties (+ xmltok-start 1) | |
1266 (min xmltok-name-end (point))) | |
1267 ">") | |
1268 (if (eq block-or-inline 'inline) | |
1269 (goto-char pos) | |
1270 (goto-char xmltok-start) | |
1271 (back-to-indentation) | |
1272 (if (= (point) xmltok-start) | |
1273 (let ((indent (current-column))) | |
1274 (goto-char pos) | |
1275 (insert "\n") | |
1276 (indent-line-to indent) | |
1277 (goto-char pos) | |
1278 (insert "\n") | |
1279 (indent-line-to (+ nxml-child-indent indent))) | |
1280 (goto-char pos))))) | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
1281 |
86361 | 1282 (defun nxml-finish-element () |
1283 "Finish the current element by inserting an end-tag." | |
1284 (interactive "*") | |
1285 (nxml-finish-element-1 nil)) | |
1286 | |
1287 (defvar nxml-last-split-position nil | |
1288 "Position where `nxml-split-element' split the current element.") | |
1289 | |
1290 (defun nxml-split-element () | |
1291 "Split the current element by inserting an end-tag and a start-tag. | |
1292 Point is left after the newly inserted start-tag. When repeated, | |
1293 split immediately before the previously inserted start-tag and leave | |
1294 point unchanged." | |
1295 (interactive "*") | |
1296 (setq nxml-last-split-position | |
1297 (if (and (eq last-command this-command) | |
1298 nxml-last-split-position) | |
1299 (save-excursion | |
1300 (goto-char nxml-last-split-position) | |
1301 (nxml-finish-element-1 t)) | |
1302 (nxml-finish-element-1 t)))) | |
1303 | |
1304 (defun nxml-finish-element-1 (startp) | |
1305 "Insert an end-tag for the current element and optionally a start-tag. | |
1306 The start-tag is inserted if STARTP is non-nil. Return the position | |
1307 of the inserted start-tag or nil if none was inserted." | |
1308 (interactive "*") | |
1309 (let* ((token-end (nxml-token-before)) | |
1310 (start-tag-end | |
1311 (save-excursion | |
1312 (when (and (< (point) token-end) | |
1313 (memq xmltok-type | |
1314 '(cdata-section | |
1315 processing-instruction | |
1316 comment | |
1317 start-tag | |
1318 end-tag | |
1319 empty-element))) | |
1320 (error "Point is inside a %s" | |
1321 (nxml-token-type-friendly-name xmltok-type))) | |
1322 (nxml-scan-element-backward token-end t))) | |
1323 (starts-line | |
1324 (save-excursion | |
1325 (unless (eq xmltok-type 'start-tag) | |
1326 (error "No matching start-tag")) | |
1327 (goto-char xmltok-start) | |
1328 (back-to-indentation) | |
1329 (eq (point) xmltok-start))) | |
1330 (ends-line | |
1331 (save-excursion | |
1332 (goto-char start-tag-end) | |
1333 (looking-at "[ \t\r\n]*$"))) | |
1334 (start-tag-indent (save-excursion | |
1335 (goto-char xmltok-start) | |
1336 (current-column))) | |
1337 (qname (xmltok-start-tag-qname)) | |
1338 inserted-start-tag-pos) | |
1339 (when (and starts-line ends-line) | |
1340 ;; start-tag is on a line by itself | |
1341 ;; => put the end-tag on a line by itself | |
1342 (unless (<= (point) | |
1343 (save-excursion | |
1344 (back-to-indentation) | |
1345 (point))) | |
1346 (insert "\n")) | |
1347 (indent-line-to start-tag-indent)) | |
1348 (insert "</" qname ">") | |
1349 (when startp | |
1350 (when starts-line | |
1351 (insert "\n") | |
1352 (indent-line-to start-tag-indent)) | |
1353 (setq inserted-start-tag-pos (point)) | |
1354 (insert "<" qname ">") | |
1355 (when (and starts-line ends-line) | |
1356 (insert "\n") | |
1357 (indent-line-to (save-excursion | |
1358 (goto-char xmltok-start) | |
1359 (forward-line 1) | |
1360 (back-to-indentation) | |
1361 (if (= (current-column) | |
1362 (+ start-tag-indent nxml-child-indent)) | |
1363 (+ start-tag-indent nxml-child-indent) | |
1364 start-tag-indent))))) | |
1365 inserted-start-tag-pos)) | |
1366 | |
1367 ;;; Indentation | |
1368 | |
1369 (defun nxml-indent-line () | |
1370 "Indent current line as XML." | |
1371 (let ((indent (nxml-compute-indent)) | |
1372 (from-end (- (point-max) (point)))) | |
1373 (when indent | |
1374 (beginning-of-line) | |
1375 (let ((bol (point))) | |
1376 (skip-chars-forward " \t") | |
1377 (delete-region bol (point))) | |
1378 (indent-to indent) | |
1379 (when (> (- (point-max) from-end) (point)) | |
1380 (goto-char (- (point-max) from-end)))))) | |
1381 | |
1382 (defun nxml-compute-indent () | |
1383 "Return the indent for the line containing point." | |
1384 (or (nxml-compute-indent-from-matching-start-tag) | |
1385 (nxml-compute-indent-from-previous-line))) | |
1386 | |
1387 (defun nxml-compute-indent-from-matching-start-tag () | |
1388 "Compute the indent for a line with an end-tag using the matching start-tag. | |
1389 When the line containing point ends with an end-tag and does not start | |
1390 in the middle of a token, return the indent of the line containing the | |
1391 matching start-tag, if there is one and it occurs at the beginning of | |
1392 its line. Otherwise return nil." | |
1393 (save-excursion | |
1394 (back-to-indentation) | |
1395 (let ((bol (point))) | |
1396 (let ((inhibit-field-text-motion t)) | |
1397 (end-of-line)) | |
1398 (skip-chars-backward " \t") | |
1399 (and (= (nxml-token-before) (point)) | |
1400 (memq xmltok-type '(end-tag partial-end-tag)) | |
1401 ;; start of line must not be inside a token | |
1402 (or (= xmltok-start bol) | |
1403 (save-excursion | |
1404 (goto-char bol) | |
1405 (nxml-token-after) | |
1406 (= xmltok-start bol)) | |
1407 (eq xmltok-type 'data)) | |
1408 (condition-case err | |
1409 (nxml-scan-element-backward | |
1410 (point) | |
1411 nil | |
1412 (- (point) | |
1413 nxml-end-tag-indent-scan-distance)) | |
1414 (nxml-scan-error nil)) | |
1415 (< xmltok-start bol) | |
1416 (progn | |
1417 (goto-char xmltok-start) | |
1418 (skip-chars-backward " \t") | |
1419 (bolp)) | |
1420 (current-indentation))))) | |
1421 | |
1422 (defun nxml-compute-indent-from-previous-line () | |
1423 "Compute the indent for a line using the indentation of a previous line." | |
1424 (save-excursion | |
1425 (end-of-line) | |
1426 (let ((eol (point)) | |
1427 bol prev-bol ref | |
1428 before-context after-context) | |
1429 (back-to-indentation) | |
1430 (setq bol (point)) | |
1431 (catch 'indent | |
1432 ;; Move backwards until the start of a non-blank line that is | |
1433 ;; not inside a token. | |
1434 (while (progn | |
1435 (when (= (forward-line -1) -1) | |
1436 (throw 'indent 0)) | |
1437 (back-to-indentation) | |
1438 (if (looking-at "[ \t]*$") | |
1439 t | |
1440 (or prev-bol | |
1441 (setq prev-bol (point))) | |
1442 (nxml-token-after) | |
1443 (not (or (= xmltok-start (point)) | |
1444 (eq xmltok-type 'data)))))) | |
1445 (setq ref (point)) | |
1446 ;; Now scan over tokens until the end of the line to be indented. | |
1447 ;; Determine the context before and after the beginning of the | |
1448 ;; line. | |
1449 (while (< (point) eol) | |
1450 (nxml-tokenize-forward) | |
1451 (cond ((<= bol xmltok-start) | |
1452 (setq after-context | |
1453 (nxml-merge-indent-context-type after-context))) | |
1454 ((and (<= (point) bol) | |
1455 (not (and (eq xmltok-type 'partial-start-tag) | |
1456 (= (point) bol)))) | |
1457 (setq before-context | |
1458 (nxml-merge-indent-context-type before-context))) | |
1459 ((eq xmltok-type 'data) | |
1460 (setq before-context | |
1461 (nxml-merge-indent-context-type before-context)) | |
1462 (setq after-context | |
1463 (nxml-merge-indent-context-type after-context))) | |
1464 ;; If in the middle of a token that looks inline, | |
1465 ;; then indent relative to the previous non-blank line | |
1466 ((eq (nxml-merge-indent-context-type before-context) | |
1467 'mixed) | |
1468 (goto-char prev-bol) | |
1469 (throw 'indent (current-column))) | |
1470 (t | |
1471 (throw 'indent | |
1472 (nxml-compute-indent-in-token bol)))) | |
1473 (skip-chars-forward " \t\r\n")) | |
1474 (goto-char ref) | |
1475 (+ (current-column) | |
1476 (* nxml-child-indent | |
1477 (+ (if (eq before-context 'start-tag) 1 0) | |
1478 (if (eq after-context 'end-tag) -1 0)))))))) | |
1479 | |
1480 (defun nxml-merge-indent-context-type (context) | |
1481 "Merge the indent context type CONTEXT with the token in `xmltok-type'. | |
1482 Return the merged indent context type. An indent context type is | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
1483 either nil or one of the symbols `start-tag', `end-tag', `markup', |
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
1484 `comment', `mixed'." |
86361 | 1485 (cond ((memq xmltok-type '(start-tag partial-start-tag)) |
1486 (if (memq context '(nil start-tag comment)) | |
1487 'start-tag | |
1488 'mixed)) | |
1489 ((memq xmltok-type '(end-tag partial-end-tag)) | |
1490 (if (memq context '(nil end-tag comment)) | |
1491 'end-tag | |
1492 'mixed)) | |
1493 ((eq xmltok-type 'comment) | |
1494 (cond ((memq context '(start-tag end-tag comment)) | |
1495 context) | |
1496 (context 'mixed) | |
1497 (t 'comment))) | |
1498 (context 'mixed) | |
1499 (t 'markup))) | |
1500 | |
1501 (defun nxml-compute-indent-in-token (pos) | |
1502 "Return the indent for a line that starts inside a token. | |
1503 POS is the position of the first non-whitespace character of the line. | |
1504 This expects the xmltok-* variables to be set up as by `xmltok-forward'." | |
1505 (cond ((memq xmltok-type '(start-tag | |
1506 partial-start-tag | |
1507 empty-element | |
1508 partial-empty-element)) | |
1509 (nxml-compute-indent-in-start-tag pos)) | |
1510 ((eq xmltok-type 'comment) | |
1511 (nxml-compute-indent-in-delimited-token pos "<!--" "-->")) | |
1512 ((eq xmltok-type 'cdata-section) | |
1513 (nxml-compute-indent-in-delimited-token pos "<![CDATA[" "]]>")) | |
1514 ((eq xmltok-type 'processing-instruction) | |
1515 (nxml-compute-indent-in-delimited-token pos "<?" "?>")) | |
1516 (t | |
1517 (goto-char pos) | |
1518 (if (and (= (forward-line -1) 0) | |
1519 (< xmltok-start (point))) | |
1520 (back-to-indentation) | |
1521 (goto-char xmltok-start)) | |
1522 (current-column)))) | |
1523 | |
1524 (defun nxml-compute-indent-in-start-tag (pos) | |
1525 "Return the indent for a line that starts inside a start-tag. | |
1526 Also for a line that starts inside an empty element. | |
1527 POS is the position of the first non-whitespace character of the line. | |
1528 This expects the xmltok-* variables to be set up as by `xmltok-forward'." | |
1529 (let ((value-boundary (nxml-attribute-value-boundary pos)) | |
1530 (off 0)) | |
1531 (if value-boundary | |
1532 ;; inside an attribute value | |
1533 (let ((value-start (car value-boundary)) | |
1534 (value-end (cdr value-boundary))) | |
1535 (goto-char pos) | |
1536 (forward-line -1) | |
1537 (if (< (point) value-start) | |
1538 (goto-char value-start) | |
1539 (back-to-indentation))) | |
1540 ;; outside an attribute value | |
1541 (goto-char pos) | |
1542 (while (and (= (forward-line -1) 0) | |
1543 (nxml-attribute-value-boundary (point)))) | |
1544 (cond ((<= (point) xmltok-start) | |
1545 (goto-char xmltok-start) | |
1546 (setq off nxml-attribute-indent) | |
1547 (let ((atts (xmltok-merge-attributes))) | |
1548 (when atts | |
1549 (let* ((att (car atts)) | |
1550 (start (xmltok-attribute-name-start att))) | |
1551 (when (< start pos) | |
1552 (goto-char start) | |
1553 (setq off 0)))))) | |
1554 (t | |
1555 (back-to-indentation)))) | |
1556 (+ (current-column) off))) | |
1557 | |
1558 (defun nxml-attribute-value-boundary (pos) | |
1559 "Return a pair (START . END) if POS is inside an attribute value. | |
1560 Otherwise return nil. START and END are the positions of the start | |
1561 and end of the attribute value containing POS. This expects the | |
1562 xmltok-* variables to be set up as by `xmltok-forward'." | |
1563 (let ((atts (xmltok-merge-attributes)) | |
1564 att value-start value-end value-boundary) | |
1565 (while atts | |
1566 (setq att (car atts)) | |
1567 (setq value-start (xmltok-attribute-value-start att)) | |
1568 (setq value-end (xmltok-attribute-value-end att)) | |
1569 (cond ((and value-start (< pos value-start)) | |
1570 (setq atts nil)) | |
1571 ((and value-start value-end (<= pos value-end)) | |
1572 (setq value-boundary (cons value-start value-end)) | |
1573 (setq atts nil)) | |
1574 (t (setq atts (cdr atts))))) | |
1575 value-boundary)) | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
1576 |
86361 | 1577 (defun nxml-compute-indent-in-delimited-token (pos open-delim close-delim) |
1578 "Return the indent for a line that starts inside a token with delimiters. | |
1579 OPEN-DELIM and CLOSE-DELIM are strings giving the opening and closing | |
1580 delimiters. POS is the position of the first non-whitespace character | |
1581 of the line. This expects the xmltok-* variables to be set up as by | |
1582 `xmltok-forward'." | |
1583 (cond ((let ((end (+ pos (length close-delim)))) | |
1584 (and (<= end (point-max)) | |
1585 (string= (buffer-substring-no-properties pos end) | |
1586 close-delim))) | |
1587 (goto-char xmltok-start)) | |
1588 ((progn | |
1589 (goto-char pos) | |
1590 (forward-line -1) | |
1591 (<= (point) xmltok-start)) | |
1592 (goto-char (+ xmltok-start (length open-delim))) | |
1593 (when (and (string= open-delim "<!--") | |
1594 (looking-at " ")) | |
1595 (goto-char (1+ (point))))) | |
1596 (t (back-to-indentation))) | |
1597 (current-column)) | |
1598 | |
1599 ;;; Completion | |
1600 | |
1601 (defun nxml-complete () | |
1602 "Perform completion on the symbol preceding point. | |
1603 | |
1604 Inserts as many characters as can be completed. However, if not even | |
1605 one character can be completed, then a buffer with the possibilities | |
1606 is popped up and the symbol is read from the minibuffer with | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
1607 completion. If the symbol is complete, then any characters that must |
86361 | 1608 follow the symbol are also inserted. |
1609 | |
1610 The name space used for completion and what is treated as a symbol | |
1611 depends on the context. The contexts in which completion is performed | |
1612 depend on `nxml-completion-hook'." | |
1613 (interactive) | |
1614 (unless (run-hook-with-args-until-success 'nxml-completion-hook) | |
1615 ;; Eventually we will complete on entity names here. | |
1616 (ding) | |
1617 (message "Cannot complete in this context"))) | |
1618 | |
1619 ;;; Movement | |
1620 | |
1621 (defun nxml-forward-balanced-item (&optional arg) | |
1622 "Move forward across one balanced item. | |
1623 With ARG, do it that many times. Negative arg -N means | |
1624 move backward across N balanced expressions. | |
1625 This is the equivalent of `forward-sexp' for XML. | |
1626 | |
1627 An element contains as items strings with no markup, tags, processing | |
1628 instructions, comments, CDATA sections, entity references and | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
1629 characters references. However, if the variable |
86361 | 1630 `nxml-sexp-element-flag' is non-nil, then an element is treated as a |
1631 single markup item. A start-tag contains an element name followed by | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
1632 one or more attributes. An end-tag contains just an element name. |
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
1633 An attribute value literals contains strings with no markup, entity |
86361 | 1634 references and character references. A processing instruction |
1635 consists of a target and a content string. A comment or a CDATA | |
1636 section contains a single string. An entity reference contains a | |
1637 single name. A character reference contains a character number." | |
1638 (interactive "p") | |
1639 (or arg (setq arg 1)) | |
1640 (cond ((> arg 0) | |
1641 (while (progn | |
1642 (nxml-forward-single-balanced-item) | |
1643 (> (setq arg (1- arg)) 0)))) | |
1644 ((< arg 0) | |
1645 (while (progn | |
1646 (nxml-backward-single-balanced-item) | |
1647 (< (setq arg (1+ arg)) 0)))))) | |
1648 | |
1649 (defun nxml-forward-single-balanced-item () | |
1650 (condition-case err | |
1651 (goto-char (let ((end (nxml-token-after))) | |
1652 (save-excursion | |
1653 (while (eq xmltok-type 'space) | |
1654 (goto-char end) | |
1655 (setq end (nxml-token-after))) | |
1656 (cond ((/= (point) xmltok-start) | |
1657 (nxml-scan-forward-within end)) | |
1658 ((and nxml-sexp-element-flag | |
1659 (eq xmltok-type 'start-tag)) | |
1660 ;; can't ever return nil here | |
1661 (nxml-scan-element-forward xmltok-start)) | |
1662 ((and nxml-sexp-element-flag | |
1663 (memq xmltok-type | |
1664 '(end-tag partial-end-tag))) | |
1665 (error "Already at end of element")) | |
1666 (t end))))) | |
1667 (nxml-scan-error | |
1668 (goto-char (cadr err)) | |
1669 (apply 'error (cddr err))))) | |
1670 | |
1671 (defun nxml-backward-single-balanced-item () | |
1672 (condition-case err | |
1673 (goto-char (let ((end (nxml-token-before))) | |
1674 (save-excursion | |
1675 (while (eq xmltok-type 'space) | |
1676 (goto-char xmltok-start) | |
1677 (setq end (nxml-token-before))) | |
1678 (cond ((/= (point) end) | |
1679 (nxml-scan-backward-within end)) | |
1680 ((and nxml-sexp-element-flag | |
1681 (eq xmltok-type 'end-tag)) | |
1682 ;; can't ever return nil here | |
1683 (nxml-scan-element-backward end) | |
1684 xmltok-start) | |
1685 ((and nxml-sexp-element-flag | |
1686 (eq xmltok-type 'start-tag)) | |
1687 (error "Already at start of element")) | |
1688 (t xmltok-start))))) | |
1689 (nxml-scan-error | |
1690 (goto-char (cadr err)) | |
1691 (apply 'error (cddr err))))) | |
1692 | |
1693 (defun nxml-scan-forward-within (end) | |
1694 (setq end (- end (nxml-end-delimiter-length xmltok-type))) | |
1695 (when (<= end (point)) | |
1696 (error "Already at end of %s" | |
1697 (nxml-token-type-friendly-name xmltok-type))) | |
1698 (cond ((memq xmltok-type '(start-tag | |
1699 empty-element | |
1700 partial-start-tag | |
1701 partial-empty-element)) | |
1702 (if (< (point) xmltok-name-end) | |
1703 xmltok-name-end | |
1704 (let ((att (nxml-find-following-attribute))) | |
1705 (cond ((not att) end) | |
1706 ((and (xmltok-attribute-value-start att) | |
1707 (<= (xmltok-attribute-value-start att) | |
1708 (point))) | |
1709 (nxml-scan-forward-in-attribute-value att)) | |
1710 ((xmltok-attribute-value-end att) | |
1711 (1+ (xmltok-attribute-value-end att))) | |
1712 ((save-excursion | |
1713 (goto-char (xmltok-attribute-name-end att)) | |
1714 (looking-at "[ \t\r\n]*=")) | |
1715 (match-end 0)) | |
1716 (t (xmltok-attribute-name-end att)))))) | |
1717 ((and (eq xmltok-type 'processing-instruction) | |
1718 (< (point) xmltok-name-end)) | |
1719 xmltok-name-end) | |
1720 (t end))) | |
1721 | |
1722 (defun nxml-scan-backward-within (end) | |
1723 (setq xmltok-start | |
1724 (+ xmltok-start | |
1725 (nxml-start-delimiter-length xmltok-type))) | |
1726 (when (<= (point) xmltok-start) | |
1727 (error "Already at start of %s" | |
1728 (nxml-token-type-friendly-name xmltok-type))) | |
1729 (cond ((memq xmltok-type '(start-tag | |
1730 empty-element | |
1731 partial-start-tag | |
1732 partial-empty-element)) | |
1733 (let ((att (nxml-find-preceding-attribute))) | |
1734 (cond ((not att) xmltok-start) | |
1735 ((and (xmltok-attribute-value-start att) | |
1736 (<= (xmltok-attribute-value-start att) | |
1737 (point)) | |
1738 (<= (point) | |
1739 (xmltok-attribute-value-end att))) | |
1740 (nxml-scan-backward-in-attribute-value att)) | |
1741 (t (xmltok-attribute-name-start att))))) | |
1742 ((and (eq xmltok-type 'processing-instruction) | |
1743 (let ((content-start (save-excursion | |
1744 (goto-char xmltok-name-end) | |
1745 (skip-chars-forward " \r\t\n") | |
1746 (point)))) | |
1747 (and (< content-start (point)) | |
1748 content-start)))) | |
1749 (t xmltok-start))) | |
1750 | |
1751 (defun nxml-scan-forward-in-attribute-value (att) | |
1752 (when (= (point) (xmltok-attribute-value-end att)) | |
1753 (error "Already at end of attribute value")) | |
1754 (let ((refs (xmltok-attribute-refs att)) | |
1755 ref) | |
1756 (while refs | |
1757 (setq ref (car refs)) | |
1758 (if (< (point) (aref ref 2)) | |
1759 (setq refs nil) | |
1760 (setq ref nil) | |
1761 (setq refs (cdr refs)))) | |
1762 (cond ((not ref) | |
1763 (xmltok-attribute-value-end att)) | |
1764 ((< (point) (aref ref 1)) | |
1765 (aref ref 1)) | |
1766 ((= (point) (aref ref 1)) | |
1767 (aref ref 2)) | |
1768 (t | |
1769 (let ((end (- (aref ref 2) | |
1770 (nxml-end-delimiter-length (aref ref 0))))) | |
1771 (if (< (point) end) | |
1772 end | |
1773 (error "Already at end of %s" | |
1774 (nxml-token-type-friendly-name (aref ref 0))))))))) | |
1775 | |
1776 (defun nxml-scan-backward-in-attribute-value (att) | |
1777 (when (= (point) (xmltok-attribute-value-start att)) | |
1778 (error "Already at start of attribute value")) | |
1779 (let ((refs (reverse (xmltok-attribute-refs att))) | |
1780 ref) | |
1781 (while refs | |
1782 (setq ref (car refs)) | |
1783 (if (< (aref ref 1) (point)) | |
1784 (setq refs nil) | |
1785 (setq ref nil) | |
1786 (setq refs (cdr refs)))) | |
1787 (cond ((not ref) | |
1788 (xmltok-attribute-value-start att)) | |
1789 ((< (aref ref 2) (point)) | |
1790 (aref ref 2)) | |
1791 ((= (point) (aref ref 2)) | |
1792 (aref ref 1)) | |
1793 (t | |
1794 (let ((start (+ (aref ref 1) | |
1795 (nxml-start-delimiter-length (aref ref 0))))) | |
1796 (if (< start (point)) | |
1797 start | |
1798 (error "Already at start of %s" | |
1799 (nxml-token-type-friendly-name (aref ref 0))))))))) | |
1800 | |
1801 (defun nxml-find-following-attribute () | |
1802 (let ((ret nil) | |
1803 (atts (or xmltok-attributes xmltok-namespace-attributes)) | |
1804 (more-atts (and xmltok-attributes xmltok-namespace-attributes))) | |
1805 (while atts | |
1806 (let* ((att (car atts)) | |
1807 (name-start (xmltok-attribute-name-start att))) | |
1808 (cond ((and (<= name-start (point)) | |
1809 (xmltok-attribute-value-end att) | |
1810 ;; <= because end is before quote | |
1811 (<= (point) (xmltok-attribute-value-end att))) | |
1812 (setq atts nil) | |
1813 (setq ret att)) | |
1814 ((and (< (point) name-start) | |
1815 (or (not ret) | |
1816 (< name-start | |
1817 (xmltok-attribute-name-start ret)))) | |
1818 (setq ret att)))) | |
1819 (setq atts (cdr atts)) | |
1820 (unless atts | |
1821 (setq atts more-atts) | |
1822 (setq more-atts nil))) | |
1823 ret)) | |
1824 | |
1825 (defun nxml-find-preceding-attribute () | |
1826 (let ((ret nil) | |
1827 (atts (or xmltok-attributes xmltok-namespace-attributes)) | |
1828 (more-atts (and xmltok-attributes xmltok-namespace-attributes))) | |
1829 (while atts | |
1830 (let* ((att (car atts)) | |
1831 (name-start (xmltok-attribute-name-start att))) | |
1832 (cond ((and (< name-start (point)) | |
1833 (xmltok-attribute-value-end att) | |
1834 ;; <= because end is before quote | |
1835 (<= (point) (xmltok-attribute-value-end att))) | |
1836 (setq atts nil) | |
1837 (setq ret att)) | |
1838 ((and (< name-start (point)) | |
1839 (or (not ret) | |
1840 (< (xmltok-attribute-name-start ret) | |
1841 name-start))) | |
1842 (setq ret att)))) | |
1843 (setq atts (cdr atts)) | |
1844 (unless atts | |
1845 (setq atts more-atts) | |
1846 (setq more-atts nil))) | |
1847 ret)) | |
1848 | |
1849 (defun nxml-up-element (&optional arg) | |
1850 (interactive "p") | |
1851 (or arg (setq arg 1)) | |
1852 (if (< arg 0) | |
1853 (nxml-backward-up-element (- arg)) | |
1854 (condition-case err | |
1855 (while (and (> arg 0) | |
1856 (< (point) (point-max))) | |
1857 (let ((token-end (nxml-token-after))) | |
1858 (goto-char (cond ((or (memq xmltok-type '(end-tag | |
1859 partial-end-tag)) | |
1860 (and (memq xmltok-type | |
1861 '(empty-element | |
1862 partial-empty-element)) | |
1863 (< xmltok-start (point)))) | |
1864 token-end) | |
1865 ((nxml-scan-element-forward | |
1866 (if (and (eq xmltok-type 'start-tag) | |
1867 (= (point) xmltok-start)) | |
1868 xmltok-start | |
1869 token-end) | |
1870 t)) | |
1871 (t (error "No parent element"))))) | |
1872 (setq arg (1- arg))) | |
1873 (nxml-scan-error | |
1874 (goto-char (cadr err)) | |
1875 (apply 'error (cddr err)))))) | |
1876 | |
1877 (defun nxml-backward-up-element (&optional arg) | |
1878 (interactive "p") | |
1879 (or arg (setq arg 1)) | |
1880 (if (< arg 0) | |
1881 (nxml-up-element (- arg)) | |
1882 (condition-case err | |
1883 (while (and (> arg 0) | |
1884 (< (point-min) (point))) | |
1885 (let ((token-end (nxml-token-before))) | |
1886 (goto-char (cond ((or (memq xmltok-type '(start-tag | |
1887 partial-start-tag)) | |
1888 (and (memq xmltok-type | |
1889 '(empty-element | |
1890 partial-empty-element)) | |
1891 (< (point) token-end))) | |
1892 xmltok-start) | |
1893 ((nxml-scan-element-backward | |
1894 (if (and (eq xmltok-type 'end-tag) | |
1895 (= (point) token-end)) | |
1896 token-end | |
1897 xmltok-start) | |
1898 t) | |
1899 xmltok-start) | |
1900 (t (error "No parent element"))))) | |
1901 (setq arg (1- arg))) | |
1902 (nxml-scan-error | |
1903 (goto-char (cadr err)) | |
1904 (apply 'error (cddr err)))))) | |
1905 | |
1906 (defun nxml-down-element (&optional arg) | |
1907 "Move forward down into the content of an element. | |
1908 With ARG, do this that many times. | |
1909 Negative ARG means move backward but still down." | |
1910 (interactive "p") | |
1911 (or arg (setq arg 1)) | |
1912 (if (< arg 0) | |
1913 (nxml-backward-down-element (- arg)) | |
1914 (while (> arg 0) | |
1915 (goto-char | |
1916 (let ((token-end (nxml-token-after))) | |
1917 (save-excursion | |
1918 (goto-char token-end) | |
1919 (while (progn | |
1920 (when (memq xmltok-type '(nil end-tag partial-end-tag)) | |
1921 (error "No following start-tags in this element")) | |
1922 (not (memq xmltok-type '(start-tag partial-start-tag)))) | |
1923 (nxml-tokenize-forward)) | |
1924 (point)))) | |
1925 (setq arg (1- arg))))) | |
1926 | |
1927 (defun nxml-backward-down-element (&optional arg) | |
1928 (interactive "p") | |
1929 (or arg (setq arg 1)) | |
1930 (if (< arg 0) | |
1931 (nxml-down-element (- arg)) | |
1932 (while (> arg 0) | |
1933 (goto-char | |
1934 (save-excursion | |
1935 (nxml-token-before) | |
1936 (goto-char xmltok-start) | |
1937 (while (progn | |
1938 (when (memq xmltok-type '(start-tag | |
1939 partial-start-tag | |
1940 prolog | |
1941 nil)) | |
1942 (error "No preceding end-tags in this element")) | |
1943 (not (memq xmltok-type '(end-tag partial-end-tag)))) | |
1944 (if (or (<= (point) nxml-prolog-end) | |
1945 (not (search-backward "<" nxml-prolog-end t))) | |
1946 (setq xmltok-type nil) | |
1947 (nxml-move-outside-backwards) | |
1948 (xmltok-forward))) | |
1949 xmltok-start)) | |
1950 (setq arg (1- arg))))) | |
1951 | |
1952 (defun nxml-forward-element (&optional arg) | |
1953 "Move forward over one element. | |
1954 With ARG, do it that many times. | |
1955 Negative ARG means move backward." | |
1956 (interactive "p") | |
1957 (or arg (setq arg 1)) | |
1958 (if (< arg 0) | |
1959 (nxml-backward-element (- arg)) | |
1960 (condition-case err | |
1961 (while (and (> arg 0) | |
1962 (< (point) (point-max))) | |
1963 (goto-char | |
1964 (or (nxml-scan-element-forward (nxml-token-before)) | |
1965 (error "No more elements"))) | |
1966 (setq arg (1- arg))) | |
1967 (nxml-scan-error | |
1968 (goto-char (cadr err)) | |
1969 (apply 'error (cddr err)))))) | |
1970 | |
1971 (defun nxml-backward-element (&optional arg) | |
1972 "Move backward over one element. | |
1973 With ARG, do it that many times. | |
1974 Negative ARG means move forward." | |
1975 (interactive "p") | |
1976 (or arg (setq arg 1)) | |
1977 (if (< arg 0) | |
1978 (nxml-forward-element (- arg)) | |
1979 (condition-case err | |
1980 (while (and (> arg 0) | |
1981 (< (point-min) (point))) | |
1982 (goto-char | |
1983 (or (and (nxml-scan-element-backward (progn | |
1984 (nxml-token-after) | |
1985 xmltok-start)) | |
1986 xmltok-start) | |
1987 (error "No preceding elements"))) | |
1988 (setq arg (1- arg))) | |
1989 (nxml-scan-error | |
1990 (goto-char (cadr err)) | |
1991 (apply 'error (cddr err)))))) | |
1992 | |
1993 (defun nxml-mark-token-after () | |
1994 (interactive) | |
1995 (push-mark (nxml-token-after) nil t) | |
1996 (goto-char xmltok-start) | |
1997 (message "Marked %s" xmltok-type)) | |
1998 | |
1999 ;;; Paragraphs | |
2000 | |
2001 (defun nxml-mark-paragraph () | |
2002 "Put point at beginning of this paragraph, mark at end. | |
2003 The paragraph marked is the one that contains point or follows point." | |
2004 (interactive) | |
2005 (nxml-forward-paragraph) | |
2006 (push-mark nil t t) | |
2007 (nxml-backward-paragraph)) | |
2008 | |
2009 (defun nxml-forward-paragraph (&optional arg) | |
2010 (interactive "p") | |
2011 (or arg (setq arg 1)) | |
2012 (cond ((< arg 0) | |
2013 (nxml-backward-paragraph (- arg))) | |
2014 ((> arg 0) | |
2015 (forward-line 0) | |
2016 (while (and (nxml-forward-single-paragraph) | |
2017 (> (setq arg (1- arg)) 0)))))) | |
2018 | |
2019 (defun nxml-backward-paragraph (&optional arg) | |
2020 (interactive "p") | |
2021 (or arg (setq arg 1)) | |
2022 (cond ((< arg 0) | |
2023 (nxml-forward-paragraph (- arg))) | |
2024 ((> arg 0) | |
2025 (unless (bolp) | |
2026 (let ((inhibit-field-text-motion t)) | |
2027 (end-of-line))) | |
2028 (while (and (nxml-backward-single-paragraph) | |
2029 (> (setq arg (1- arg)) 0)))))) | |
2030 | |
2031 (defun nxml-forward-single-paragraph () | |
2032 "Move forward over a single paragraph. | |
2033 Return nil at end of buffer, t otherwise." | |
2034 (let* ((token-end (nxml-token-after)) | |
2035 (offset (- (point) xmltok-start)) | |
2036 pos had-data) | |
2037 (goto-char token-end) | |
2038 (while (and (< (point) (point-max)) | |
2039 (not (setq pos | |
2040 (nxml-paragraph-end-pos had-data offset)))) | |
2041 (when (nxml-token-contains-data-p offset) | |
2042 (setq had-data t)) | |
2043 (nxml-tokenize-forward) | |
2044 (setq offset 0)) | |
2045 (when pos (goto-char pos)))) | |
2046 | |
2047 (defun nxml-backward-single-paragraph () | |
2048 "Move backward over a single paragraph. | |
2049 Return nil at start of buffer, t otherwise." | |
2050 (let* ((token-end (nxml-token-before)) | |
2051 (offset (- token-end (point))) | |
2052 (last-tag-pos xmltok-start) | |
2053 pos had-data last-data-pos) | |
2054 (goto-char token-end) | |
2055 (unless (setq pos (nxml-paragraph-start-pos nil offset)) | |
2056 (setq had-data (nxml-token-contains-data-p nil offset)) | |
2057 (goto-char xmltok-start) | |
2058 (while (and (not pos) (< (point-min) (point))) | |
2059 (cond ((search-backward "<" nxml-prolog-end t) | |
2060 (nxml-move-outside-backwards) | |
2061 (save-excursion | |
2062 (while (< (point) last-tag-pos) | |
2063 (xmltok-forward) | |
2064 (when (and (not had-data) (nxml-token-contains-data-p)) | |
2065 (setq pos nil) | |
2066 (setq last-data-pos xmltok-start)) | |
2067 (let ((tem (nxml-paragraph-start-pos had-data 0))) | |
2068 (when tem (setq pos tem))))) | |
2069 (when (and (not had-data) last-data-pos (not pos)) | |
2070 (setq had-data t) | |
2071 (save-excursion | |
2072 (while (< (point) last-data-pos) | |
2073 (xmltok-forward)) | |
2074 (let ((tem (nxml-paragraph-start-pos had-data 0))) | |
2075 (when tem (setq pos tem))))) | |
2076 (setq last-tag-pos (point))) | |
2077 (t (goto-char (point-min)))))) | |
2078 (when pos (goto-char pos)))) | |
2079 | |
2080 (defun nxml-token-contains-data-p (&optional start end) | |
2081 (setq start (+ xmltok-start (or start 0))) | |
2082 (setq end (- (point) (or end 0))) | |
2083 (when (eq xmltok-type 'cdata-section) | |
2084 (setq start (max start (+ xmltok-start 9))) | |
2085 (setq end (min end (- (point) 3)))) | |
2086 (or (and (eq xmltok-type 'data) | |
2087 (eq start xmltok-start) | |
2088 (eq end (point))) | |
2089 (eq xmltok-type 'char-ref) | |
2090 (and (memq xmltok-type '(data cdata-section)) | |
2091 (< start end) | |
2092 (save-excursion | |
2093 (goto-char start) | |
2094 (re-search-forward "[^ \t\r\n]" end t))))) | |
2095 | |
2096 (defun nxml-paragraph-end-pos (had-data offset) | |
2097 "Return the position of the paragraph end if contained in the current token. | |
2098 Return nil if the current token does not contain the paragraph end. | |
2099 Only characters after OFFSET from the start of the token are eligible. | |
2100 HAD-DATA says whether there have been non-whitespace data characters yet." | |
2101 (cond ((not had-data) | |
2102 (cond ((memq xmltok-type '(data cdata-section)) | |
2103 (save-excursion | |
2104 (let ((end (point))) | |
2105 (goto-char (+ xmltok-start | |
2106 (max (if (eq xmltok-type 'cdata-section) | |
2107 9 | |
2108 0) | |
2109 offset))) | |
2110 (and (re-search-forward "[^ \t\r\n]" end t) | |
2111 (re-search-forward "^[ \t]*$" end t) | |
2112 (match-beginning 0))))) | |
2113 ((and (eq xmltok-type 'comment) | |
2114 (nxml-token-begins-line-p) | |
2115 (nxml-token-ends-line-p)) | |
2116 (save-excursion | |
2117 (let ((end (point))) | |
2118 (goto-char (+ xmltok-start (max 4 offset))) | |
2119 (when (re-search-forward "[^ \t\r\n]" (- end 3) t) | |
2120 (if (re-search-forward "^[ \t]*$" end t) | |
2121 (match-beginning 0) | |
2122 (goto-char (- end 3)) | |
2123 (skip-chars-backward " \t") | |
2124 (unless (bolp) | |
2125 (beginning-of-line 2)) | |
2126 (point)))))))) | |
2127 ((memq xmltok-type '(data space cdata-section)) | |
2128 (save-excursion | |
2129 (let ((end (point))) | |
2130 (goto-char (+ xmltok-start offset)) | |
2131 (and (re-search-forward "^[ \t]*$" end t) | |
2132 (match-beginning 0))))) | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2133 ((and (memq xmltok-type '(start-tag |
86361 | 2134 end-tag |
2135 empty-element | |
2136 comment | |
2137 processing-instruction | |
2138 entity-ref)) | |
2139 (nxml-token-begins-line-p) | |
2140 (nxml-token-ends-line-p)) | |
2141 (save-excursion | |
2142 (goto-char xmltok-start) | |
2143 (skip-chars-backward " \t") | |
2144 (point))) | |
2145 ((and (eq xmltok-type 'end-tag) | |
2146 (looking-at "[ \t]*$") | |
2147 (not (nxml-in-mixed-content-p t))) | |
2148 (save-excursion | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2149 (or (search-forward "\n" nil t) |
86361 | 2150 (point-max)))))) |
2151 | |
2152 (defun nxml-paragraph-start-pos (had-data offset) | |
2153 "Return the position of the paragraph start if contained in the current token. | |
2154 Return nil if the current token does not contain the paragraph start. | |
2155 Only characters before OFFSET from the end of the token are eligible. | |
2156 HAD-DATA says whether there have been non-whitespace data characters yet." | |
2157 (cond ((not had-data) | |
2158 (cond ((memq xmltok-type '(data cdata-section)) | |
2159 (save-excursion | |
2160 (goto-char (- (point) | |
2161 (max (if (eq xmltok-type 'cdata-section) | |
2162 3 | |
2163 0) | |
2164 offset))) | |
2165 (and (re-search-backward "[^ \t\r\n]" xmltok-start t) | |
2166 (re-search-backward "^[ \t]*$" xmltok-start t) | |
2167 (match-beginning 0)))) | |
2168 ((and (eq xmltok-type 'comment) | |
2169 (nxml-token-ends-line-p) | |
2170 (nxml-token-begins-line-p)) | |
2171 (save-excursion | |
2172 (goto-char (- (point) (max 3 offset))) | |
2173 (when (and (< (+ xmltok-start 4) (point)) | |
2174 (re-search-backward "[^ \t\r\n]" | |
2175 (+ xmltok-start 4) | |
2176 t)) | |
2177 (if (re-search-backward "^[ \t]*$" xmltok-start t) | |
2178 (match-beginning 0) | |
2179 (goto-char xmltok-start) | |
2180 (if (looking-at "<!--[ \t]*\n") | |
2181 (match-end 0) | |
2182 (skip-chars-backward " \t") | |
2183 (point)))))))) | |
2184 ((memq xmltok-type '(data space cdata-section)) | |
2185 (save-excursion | |
2186 (goto-char (- (point) offset)) | |
2187 (and (re-search-backward "^[ \t]*$" xmltok-start t) | |
2188 (match-beginning 0)))) | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2189 ((and (memq xmltok-type '(start-tag |
86361 | 2190 end-tag |
2191 empty-element | |
2192 comment | |
2193 processing-instruction | |
2194 entity-ref)) | |
2195 (nxml-token-ends-line-p) | |
2196 (nxml-token-begins-line-p)) | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2197 (or (search-forward "\n" nil t) |
86361 | 2198 (point-max))) |
2199 ((and (eq xmltok-type 'start-tag) | |
2200 (nxml-token-begins-line-p) | |
2201 (not (save-excursion | |
2202 (goto-char xmltok-start) | |
2203 (nxml-in-mixed-content-p nil)))) | |
2204 (save-excursion | |
2205 (goto-char xmltok-start) | |
2206 (skip-chars-backward " \t") | |
2207 ;; include any blank line before | |
2208 (or (and (eq (char-before) ?\n) | |
2209 (save-excursion | |
2210 (goto-char (1- (point))) | |
2211 (skip-chars-backward " \t") | |
2212 (and (bolp) (point)))) | |
2213 (point)))))) | |
2214 | |
2215 (defun nxml-token-ends-line-p () (looking-at "[ \t]*$")) | |
2216 | |
2217 (defun nxml-token-begins-line-p () | |
2218 (save-excursion | |
2219 (goto-char xmltok-start) | |
2220 (skip-chars-backward " \t") | |
2221 (bolp))) | |
2222 | |
2223 (defun nxml-in-mixed-content-p (endp) | |
2224 "Return non-nil if point is in mixed content. | |
2225 Point must be after an end-tag or before a start-tag. | |
2226 ENDP is t in the former case, nil in the latter." | |
2227 (let (matching-tag-pos) | |
2228 (cond ((not (run-hook-with-args-until-failure | |
2229 'nxml-in-mixed-content-hook)) | |
2230 nil) | |
2231 ;; See if the matching tag does not start or end a line. | |
2232 ((condition-case err | |
2233 (progn | |
2234 (setq matching-tag-pos | |
2235 (xmltok-save | |
2236 (if endp | |
2237 (and (nxml-scan-element-backward (point)) | |
2238 xmltok-start) | |
2239 (nxml-scan-element-forward (point))))) | |
2240 (and matching-tag-pos | |
2241 (save-excursion | |
2242 (goto-char matching-tag-pos) | |
2243 (not (if endp | |
2244 (progn | |
2245 (skip-chars-backward " \t") | |
2246 (bolp)) | |
2247 (looking-at "[ \t]*$")))))) | |
2248 (nxml-scan-error nil)) | |
2249 t) | |
2250 ;; See if there's data at the same level. | |
2251 ((let (start end) | |
2252 (if endp | |
2253 (setq start matching-tag-pos | |
2254 end (point)) | |
2255 (setq start (point) | |
2256 end matching-tag-pos)) | |
2257 (save-excursion | |
2258 (or (when start | |
2259 (goto-char start) | |
2260 (nxml-preceding-sibling-data-p)) | |
2261 (when end | |
2262 (goto-char end) | |
2263 (nxml-following-sibling-data-p))))) | |
2264 t) | |
2265 ;; Otherwise, treat as not mixed | |
2266 (t nil)))) | |
2267 | |
2268 (defun nxml-preceding-sibling-data-p () | |
2269 "Return non-nil if there is a previous sibling that is data." | |
2270 (let ((lim (max (- (point) nxml-mixed-scan-distance) | |
2271 nxml-prolog-end)) | |
2272 (level 0) | |
2273 found end) | |
2274 (xmltok-save | |
2275 (save-excursion | |
2276 (while (and (< lim (point)) | |
2277 (>= level 0) | |
2278 (not found) | |
2279 (progn | |
2280 (setq end (point)) | |
2281 (search-backward "<" lim t))) | |
2282 (nxml-move-outside-backwards) | |
2283 (save-excursion | |
2284 (xmltok-forward) | |
2285 (let ((prev-level level)) | |
2286 (cond ((eq xmltok-type 'end-tag) | |
2287 (setq level (1+ level))) | |
2288 ((eq xmltok-type 'start-tag) | |
2289 (setq level (1- level)))) | |
2290 (when (eq prev-level 0) | |
2291 (while (and (< (point) end) (not found)) | |
2292 (xmltok-forward) | |
2293 (when (memq xmltok-type '(data cdata-section char-ref)) | |
2294 (setq found t))))))))) | |
2295 found)) | |
2296 | |
2297 (defun nxml-following-sibling-data-p () | |
2298 (let ((lim (min (+ (point) nxml-mixed-scan-distance) | |
2299 (point-max))) | |
2300 (level 0) | |
2301 found) | |
2302 (xmltok-save | |
2303 (save-excursion | |
2304 (while (and (< (point) lim) | |
2305 (>= level 0) | |
2306 (nxml-tokenize-forward) | |
2307 (not found)) | |
2308 (cond ((eq xmltok-type 'start-tag) | |
2309 (setq level (1+ level))) | |
2310 ((eq xmltok-type 'end-tag) | |
2311 (setq level (1- level))) | |
2312 ((and (eq level 0) | |
2313 (memq xmltok-type '(data cdata-section char-ref))) | |
2314 (setq found t)))))) | |
2315 found)) | |
2316 | |
2317 ;;; Filling | |
2318 | |
2319 (defun nxml-do-fill-paragraph (arg) | |
2320 (let (fill-paragraph-function | |
2321 fill-prefix | |
2322 start end) | |
2323 (save-excursion | |
2324 (nxml-forward-paragraph) | |
2325 (setq end (point)) | |
2326 (nxml-backward-paragraph) | |
2327 (skip-chars-forward " \t\r\n") | |
2328 (setq start (point)) | |
2329 (beginning-of-line) | |
2330 (setq fill-prefix (buffer-substring-no-properties (point) start)) | |
2331 (when (and (not (nxml-get-inside (point))) | |
2332 (looking-at "[ \t]*<!--")) | |
2333 (setq fill-prefix (concat fill-prefix " "))) | |
2334 (fill-region-as-paragraph start end arg)) | |
2335 (skip-line-prefix fill-prefix) | |
2336 fill-prefix)) | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2337 |
86361 | 2338 (defun nxml-newline-and-indent (soft) |
2339 (delete-horizontal-space) | |
2340 (if soft (insert-and-inherit ?\n) (newline 1)) | |
2341 (nxml-indent-line)) | |
2342 | |
2343 | |
2344 ;;; Dynamic markup | |
2345 | |
2346 (defvar nxml-dynamic-markup-prev-pos nil) | |
2347 (defvar nxml-dynamic-markup-prev-lengths nil) | |
2348 (defvar nxml-dynamic-markup-prev-found-marker nil) | |
2349 (defvar nxml-dynamic-markup-prev-start-tags (make-hash-table :test 'equal)) | |
2350 | |
2351 (defun nxml-dynamic-markup-word () | |
2352 "Dynamically markup the word before point. | |
2353 This attempts to find a tag to put around the word before point based | |
2354 on the contents of the current buffer. The end-tag will be inserted at | |
2355 point. The start-tag will be inserted at or before the beginning of | |
2356 the word before point; the contents of the current buffer is used to | |
2357 decide where. | |
2358 | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2359 It works in a similar way to \\[dabbrev-expand]. It searches first |
86361 | 2360 backwards from point, then forwards from point for an element whose |
2361 content is a string which matches the contents of the buffer before | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2362 point and which includes at least the word before point. It then |
86361 | 2363 copies the start- and end-tags from that element and uses them to |
2364 surround the matching string before point. | |
2365 | |
2366 Repeating \\[nxml-dynamic-markup-word] immediately after successful | |
2367 \\[nxml-dynamic-markup-word] removes the previously inserted markup | |
2368 and attempts to find another possible way to do the markup." | |
2369 (interactive "*") | |
2370 (let (search-start-pos done) | |
2371 (if (and (integerp nxml-dynamic-markup-prev-pos) | |
2372 (= nxml-dynamic-markup-prev-pos (point)) | |
2373 (eq last-command this-command) | |
2374 nxml-dynamic-markup-prev-lengths) | |
2375 (let* ((end-tag-open-pos | |
2376 (- nxml-dynamic-markup-prev-pos | |
2377 (nth 2 nxml-dynamic-markup-prev-lengths))) | |
2378 (start-tag-close-pos | |
2379 (- end-tag-open-pos | |
2380 (nth 1 nxml-dynamic-markup-prev-lengths))) | |
2381 (start-tag-open-pos | |
2382 (- start-tag-close-pos | |
2383 (nth 0 nxml-dynamic-markup-prev-lengths)))) | |
2384 (delete-region end-tag-open-pos nxml-dynamic-markup-prev-pos) | |
2385 (delete-region start-tag-open-pos start-tag-close-pos) | |
2386 (setq search-start-pos | |
2387 (marker-position nxml-dynamic-markup-prev-found-marker))) | |
2388 (clrhash nxml-dynamic-markup-prev-start-tags)) | |
2389 (setq nxml-dynamic-markup-prev-pos nil) | |
2390 (setq nxml-dynamic-markup-prev-lengths nil) | |
2391 (setq nxml-dynamic-markup-prev-found-marker nil) | |
2392 (goto-char | |
2393 (save-excursion | |
2394 (let* ((pos (point)) | |
2395 (word (progn | |
2396 (backward-word 1) | |
2397 (unless (< (point) pos) | |
2398 (error "No word to markup")) | |
2399 (buffer-substring-no-properties (point) pos))) | |
2400 (search (concat word "</")) | |
2401 done) | |
2402 (when search-start-pos | |
2403 (goto-char search-start-pos)) | |
2404 (while (and (not done) | |
2405 (or (and (< (point) pos) | |
2406 (or (search-backward search nil t) | |
2407 (progn (goto-char pos) nil))) | |
2408 (search-forward search nil t))) | |
2409 (goto-char (- (match-end 0) 2)) | |
2410 (setq done (nxml-try-copy-markup pos))) | |
2411 (or done | |
2412 (error (if (zerop (hash-table-count | |
2413 nxml-dynamic-markup-prev-start-tags)) | |
2414 "No possible markup found for `%s'" | |
2415 "No more markup possibilities found for `%s'") | |
2416 word))))))) | |
2417 | |
2418 (defun nxml-try-copy-markup (word-end-pos) | |
2419 (save-excursion | |
2420 (let ((end-tag-pos (point))) | |
2421 (when (and (not (nxml-get-inside end-tag-pos)) | |
2422 (search-backward "<" nil t) | |
2423 (not (nxml-get-inside (point)))) | |
2424 (xmltok-forward) | |
2425 (when (and (eq xmltok-type 'start-tag) | |
2426 (< (point) end-tag-pos)) | |
2427 (let* ((start-tag-close-pos (point)) | |
2428 (start-tag | |
2429 (buffer-substring-no-properties xmltok-start | |
2430 start-tag-close-pos)) | |
2431 (words | |
2432 (nreverse | |
2433 (split-string | |
2434 (buffer-substring-no-properties start-tag-close-pos | |
2435 end-tag-pos) | |
2436 "[ \t\r\n]+")))) | |
2437 (goto-char word-end-pos) | |
2438 (while (and words | |
2439 (re-search-backward (concat | |
2440 (regexp-quote (car words)) | |
2441 "\\=") | |
2442 nil | |
2443 t)) | |
2444 (setq words (cdr words)) | |
2445 (skip-chars-backward " \t\r\n")) | |
2446 (when (and (not words) | |
2447 (progn | |
2448 (skip-chars-forward " \t\r\n") | |
2449 (not (gethash (cons (point) start-tag) | |
2450 nxml-dynamic-markup-prev-start-tags))) | |
2451 (or (< end-tag-pos (point)) | |
2452 (< word-end-pos xmltok-start))) | |
2453 (setq nxml-dynamic-markup-prev-found-marker | |
2454 (copy-marker end-tag-pos t)) | |
2455 (puthash (cons (point) start-tag) | |
2456 t | |
2457 nxml-dynamic-markup-prev-start-tags) | |
2458 (setq nxml-dynamic-markup-prev-lengths | |
2459 (list (- start-tag-close-pos xmltok-start) | |
2460 (- word-end-pos (point)) | |
2461 (+ (- xmltok-name-end xmltok-start) 2))) | |
2462 (let ((name (xmltok-start-tag-qname))) | |
2463 (insert start-tag) | |
2464 (goto-char (+ word-end-pos | |
2465 (- start-tag-close-pos xmltok-start))) | |
2466 (insert "</" name ">") | |
2467 (setq nxml-dynamic-markup-prev-pos (point)))))))))) | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2468 |
86361 | 2469 |
2470 ;;; Character names | |
2471 | |
87715
39844b05431b
(nxml-char-name-ignore-case): Change default value.
Jason Rumney <jasonr@gnu.org>
parents:
87712
diff
changeset
|
2472 (defvar nxml-char-name-ignore-case t) |
86361 | 2473 |
2474 (defvar nxml-char-name-alist nil | |
2475 "Alist of character names. | |
2476 Each member of the list has the form (NAME CODE . NAMESET), | |
2477 where NAME is a string naming a character, NAMESET is a symbol | |
2478 identifying a set of names and CODE is an integer specifying the | |
2479 Unicode scalar value of the named character. | |
2480 The NAME will only be used for completion if NAMESET has | |
2481 a non-nil `nxml-char-name-set-enabled' property. | |
2482 If NAMESET does does not have `nxml-char-name-set-defined' property, | |
2483 then it must have a `nxml-char-name-set-file' property and `load' | |
2484 will be applied to the value of this property if the nameset | |
2485 is enabled.") | |
2486 | |
2487 (defvar nxml-char-name-table (make-hash-table :test 'eq) | |
2488 "Hash table for mapping char codes to names. | |
2489 Each key is a Unicode scalar value. | |
2490 Each value is a list of pairs of the form (NAMESET . NAME), | |
2491 where NAMESET is a symbol identifying a set of names, | |
2492 and NAME is a string naming a character.") | |
2493 | |
2494 (defvar nxml-autoload-char-name-set-list nil | |
2495 "List of char namesets that can be autoloaded.") | |
2496 | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2497 (defun nxml-enable-char-name-set (nameset) |
86361 | 2498 (put nameset 'nxml-char-name-set-enabled t)) |
2499 | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2500 (defun nxml-disable-char-name-set (nameset) |
86361 | 2501 (put nameset 'nxml-char-name-set-enabled nil)) |
2502 | |
2503 (defun nxml-char-name-set-enabled-p (nameset) | |
2504 (get nameset 'nxml-char-name-set-enabled)) | |
2505 | |
2506 (defun nxml-autoload-char-name-set (nameset file) | |
2507 (unless (memq nameset nxml-autoload-char-name-set-list) | |
2508 (setq nxml-autoload-char-name-set-list | |
2509 (cons nameset nxml-autoload-char-name-set-list))) | |
2510 (put nameset 'nxml-char-name-set-file file)) | |
2511 | |
2512 (defun nxml-define-char-name-set (nameset alist) | |
2513 "Define a set of character names. | |
2514 NAMESET is a symbol identifying the set. | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2515 ALIST is a list where each member has the form (NAME CODE), |
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2516 where NAME is a string naming a character and code is an |
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2517 integer giving the Unicode scalar value of the character." |
86361 | 2518 (when (get nameset 'nxml-char-name-set-defined) |
2519 (error "Nameset `%s' already defined" nameset)) | |
2520 (let ((iter alist)) | |
2521 (while iter | |
2522 (let* ((name-code (car iter)) | |
2523 (name (car name-code)) | |
2524 (code (cadr name-code))) | |
2525 (puthash code | |
2526 (cons (cons nameset name) | |
2527 (gethash code nxml-char-name-table)) | |
2528 nxml-char-name-table)) | |
2529 (setcdr (cdr (car iter)) nameset) | |
2530 (setq iter (cdr iter)))) | |
2531 (setq nxml-char-name-alist | |
2532 (nconc alist nxml-char-name-alist)) | |
2533 (put nameset 'nxml-char-name-set-defined t)) | |
2534 | |
2535 (defun nxml-get-char-name (code) | |
86538 | 2536 (mapc 'nxml-maybe-load-char-name-set nxml-autoload-char-name-set-list) |
86361 | 2537 (let ((names (gethash code nxml-char-name-table)) |
2538 name) | |
2539 (while (and names (not name)) | |
2540 (if (nxml-char-name-set-enabled-p (caar names)) | |
2541 (setq name (cdar names)) | |
2542 (setq names (cdr names)))) | |
2543 name)) | |
2544 | |
2545 (defvar nxml-named-char-history nil) | |
2546 | |
2547 (defun nxml-insert-named-char (arg) | |
2548 "Insert a character using its name. | |
2549 The name is read from the minibuffer. | |
2550 Normally, inserts the character as a numeric character reference. | |
2551 With a prefix argument, inserts the character directly." | |
2552 (interactive "*P") | |
86538 | 2553 (mapc 'nxml-maybe-load-char-name-set nxml-autoload-char-name-set-list) |
86361 | 2554 (let ((name |
2555 (let ((completion-ignore-case nxml-char-name-ignore-case)) | |
2556 (completing-read "Character name: " | |
2557 nxml-char-name-alist | |
2558 (lambda (member) | |
2559 (get (cddr member) 'nxml-char-name-set-enabled)) | |
2560 t | |
2561 nil | |
2562 'nxml-named-char-history))) | |
2563 (alist nxml-char-name-alist) | |
2564 elt code) | |
2565 (while (and alist (not code)) | |
2566 (setq elt (assoc name alist)) | |
2567 (if (get (cddr elt) 'nxml-char-name-set-enabled) | |
2568 (setq code (cadr elt)) | |
2569 (setq alist (cdr (member elt alist))))) | |
2570 (when code | |
2571 (insert (if arg | |
2572 (or (decode-char 'ucs code) | |
2573 (error "Character %x is not supported by Emacs" | |
2574 code)) | |
2575 (format "&#x%X;" code)))))) | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2576 |
86361 | 2577 (defun nxml-maybe-load-char-name-set (sym) |
2578 (when (and (get sym 'nxml-char-name-set-enabled) | |
2579 (not (get sym 'nxml-char-name-set-defined)) | |
2580 (stringp (get sym 'nxml-char-name-set-file))) | |
2581 (load (get sym 'nxml-char-name-set-file)))) | |
2582 | |
2583 (defun nxml-toggle-char-ref-extra-display (arg) | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2584 "Toggle the display of extra information for character references." |
86361 | 2585 (interactive "P") |
2586 (let ((new (if (null arg) | |
2587 (not nxml-char-ref-extra-display) | |
2588 (> (prefix-numeric-value arg) 0)))) | |
2589 (when (not (eq new nxml-char-ref-extra-display)) | |
2590 (setq nxml-char-ref-extra-display new) | |
95598 | 2591 (font-lock-fontify-buffer)))) |
86361 | 2592 |
2593 (put 'nxml-char-ref 'evaporate t) | |
2594 | |
2595 (defun nxml-char-ref-display-extra (start end n) | |
2596 (when nxml-char-ref-extra-display | |
2597 (let ((name (nxml-get-char-name n)) | |
2598 (glyph-string (and nxml-char-ref-display-glyph-flag | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
2599 (nxml-glyph-display-string n 'nxml-glyph))) |
86361 | 2600 ov) |
2601 (when (or name glyph-string) | |
2602 (setq ov (make-overlay start end nil t)) | |
2603 (overlay-put ov 'category 'nxml-char-ref) | |
2604 (when name | |
2605 (overlay-put ov 'help-echo name)) | |
2606 (when glyph-string | |
2607 (overlay-put ov | |
2608 'after-string | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
2609 (propertize glyph-string 'face 'nxml-glyph))))))) |
86361 | 2610 |
2611 (defun nxml-clear-char-ref-extra-display (start end) | |
2612 (let ((ov (overlays-in start end))) | |
2613 (while ov | |
2614 (when (eq (overlay-get (car ov) 'category) 'nxml-char-ref) | |
2615 (delete-overlay (car ov))) | |
2616 (setq ov (cdr ov))))) | |
2617 | |
2618 | |
2619 (defun nxml-start-delimiter-length (type) | |
2620 (or (get type 'nxml-start-delimiter-length) | |
2621 0)) | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2622 |
86361 | 2623 (put 'cdata-section 'nxml-start-delimiter-length 9) |
2624 (put 'comment 'nxml-start-delimiter-length 4) | |
2625 (put 'processing-instruction 'nxml-start-delimiter-length 2) | |
2626 (put 'start-tag 'nxml-start-delimiter-length 1) | |
2627 (put 'empty-element 'nxml-start-delimiter-length 1) | |
2628 (put 'partial-empty-element 'nxml-start-delimiter-length 1) | |
2629 (put 'entity-ref 'nxml-start-delimiter-length 1) | |
2630 (put 'char-ref 'nxml-start-delimiter-length 2) | |
2631 | |
2632 (defun nxml-end-delimiter-length (type) | |
2633 (or (get type 'nxml-end-delimiter-length) | |
2634 0)) | |
96496
e374c747704b
Fix typos, and general docstring cleanup.
Juanma Barranquero <lekktu@gmail.com>
parents:
96182
diff
changeset
|
2635 |
86361 | 2636 (put 'cdata-section 'nxml-end-delimiter-length 3) |
2637 (put 'comment 'nxml-end-delimiter-length 3) | |
2638 (put 'processing-instruction 'nxml-end-delimiter-length 2) | |
2639 (put 'start-tag 'nxml-end-delimiter-length 1) | |
2640 (put 'empty-element 'nxml-end-delimiter-length 2) | |
2641 (put 'partial-empty-element 'nxml-end-delimiter-length 1) | |
2642 (put 'entity-ref 'nxml-end-delimiter-length 1) | |
2643 (put 'char-ref 'nxml-end-delimiter-length 1) | |
2644 | |
2645 (defun nxml-token-type-friendly-name (type) | |
2646 (or (get type 'nxml-friendly-name) | |
2647 (symbol-name type))) | |
2648 | |
2649 (put 'cdata-section 'nxml-friendly-name "CDATA section") | |
2650 (put 'processing-instruction 'nxml-friendly-name "processing instruction") | |
2651 (put 'entity-ref 'nxml-friendly-name "entity reference") | |
2652 (put 'char-ref 'nxml-friendly-name "character reference") | |
2653 | |
2654 (provide 'nxml-mode) | |
2655 | |
86379 | 2656 ;; arch-tag: 8603bc5f-1ef9-4021-b223-322fb2ca708e |
86361 | 2657 ;;; nxml-mode.el ends here |