Mercurial > vim
annotate runtime/syntax/html.vim @ 11173:cc94b80016fd v8.0.0473
patch 8.0.0473: no test covering arg_all()
commit https://github.com/vim/vim/commit/8c34aa09a449a5c1c2d1141b6fafa90f29b3fc12
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Mar 16 22:52:32 2017 +0100
patch 8.0.0473: no test covering arg_all()
Problem: No test covering arg_all().
Solution: Add a test expanding ##.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 16 Mar 2017 23:00:05 +0100 |
parents | 523cd59d6db0 |
children | 3b26420fc639 |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
10498
883396809b45
commit https://github.com/vim/vim/commit/bc2eada5424bff06f7eb77c032ecc067da52b846
Christian Brabandt <cb@256bit.org>
parents:
10051
diff
changeset
|
2 " Language: HTML |
883396809b45
commit https://github.com/vim/vim/commit/bc2eada5424bff06f7eb77c032ecc067da52b846
Christian Brabandt <cb@256bit.org>
parents:
10051
diff
changeset
|
3 " Maintainer: Jorge Maldonado Ventura <jorgesumle@freakspot.net> |
883396809b45
commit https://github.com/vim/vim/commit/bc2eada5424bff06f7eb77c032ecc067da52b846
Christian Brabandt <cb@256bit.org>
parents:
10051
diff
changeset
|
4 " Previous Maintainer: Claudio Fleiner <claudio@fleiner.com> |
10548
74effdaa369e
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10498
diff
changeset
|
5 " Repository: https://notabug.org/jorgesumle/vim-html-syntax |
10734 | 6 " Last Change: 2017 Jan 21 |
10498
883396809b45
commit https://github.com/vim/vim/commit/bc2eada5424bff06f7eb77c032ecc067da52b846
Christian Brabandt <cb@256bit.org>
parents:
10051
diff
changeset
|
7 " included patch from Jorge Maldonado Ventura |
7 | 8 |
9 " Please check :help html.vim for some comments and a description of the options | |
10 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
6476
diff
changeset
|
11 " quit when a syntax file was already loaded |
7 | 12 if !exists("main_syntax") |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
6476
diff
changeset
|
13 if exists("b:current_syntax") |
7 | 14 finish |
15 endif | |
16 let main_syntax = 'html' | |
17 endif | |
18 | |
3854 | 19 let s:cpo_save = &cpo |
20 set cpo&vim | |
21 | |
1125 | 22 syntax spell toplevel |
7 | 23 |
24 syn case ignore | |
25 | |
26 " mark illegal characters | |
27 syn match htmlError "[<>&]" | |
28 | |
29 | |
30 " tags | |
31 syn region htmlString contained start=+"+ end=+"+ contains=htmlSpecialChar,javaScriptExpression,@htmlPreproc | |
32 syn region htmlString contained start=+'+ end=+'+ contains=htmlSpecialChar,javaScriptExpression,@htmlPreproc | |
33 syn match htmlValue contained "=[\t ]*[^'" \t>][^ \t>]*"hs=s+1 contains=javaScriptExpression,@htmlPreproc | |
829 | 34 syn region htmlEndTag start=+</+ end=+>+ contains=htmlTagN,htmlTagError |
3854 | 35 syn region htmlTag start=+<[^/]+ end=+>+ fold contains=htmlTagN,htmlString,htmlArg,htmlValue,htmlTagError,htmlEvent,htmlCssDefinition,@htmlPreproc,@htmlArgCluster |
7 | 36 syn match htmlTagN contained +<\s*[-a-zA-Z0-9]\++hs=s+1 contains=htmlTagName,htmlSpecialTagName,@htmlTagNameCluster |
37 syn match htmlTagN contained +</\s*[-a-zA-Z0-9]\++hs=s+2 contains=htmlTagName,htmlSpecialTagName,@htmlTagNameCluster | |
38 syn match htmlTagError contained "[^>]<"ms=s+1 | |
39 | |
40 | |
41 " tag names | |
42 syn keyword htmlTagName contained address applet area a base basefont | |
43 syn keyword htmlTagName contained big blockquote br caption center | |
44 syn keyword htmlTagName contained cite code dd dfn dir div dl dt font | |
45 syn keyword htmlTagName contained form hr html img | |
46 syn keyword htmlTagName contained input isindex kbd li link map menu | |
47 syn keyword htmlTagName contained meta ol option param pre p samp span | |
48 syn keyword htmlTagName contained select small strike sub sup | |
49 syn keyword htmlTagName contained table td textarea th tr tt ul var xmp | |
50 syn match htmlTagName contained "\<\(b\|i\|u\|h[1-6]\|em\|strong\|head\|body\|title\)\>" | |
51 | |
52 " new html 4.0 tags | |
53 syn keyword htmlTagName contained abbr acronym bdo button col label | |
54 syn keyword htmlTagName contained colgroup del fieldset iframe ins legend | |
55 syn keyword htmlTagName contained object optgroup q s tbody tfoot thead | |
56 | |
10498
883396809b45
commit https://github.com/vim/vim/commit/bc2eada5424bff06f7eb77c032ecc067da52b846
Christian Brabandt <cb@256bit.org>
parents:
10051
diff
changeset
|
57 " new html 5 tags |
10734 | 58 syn keyword htmlTagName contained article aside audio bdi canvas data |
59 syn keyword htmlTagName contained datalist details embed figcaption figure | |
60 syn keyword htmlTagName contained footer header hgroup keygen main mark | |
10498
883396809b45
commit https://github.com/vim/vim/commit/bc2eada5424bff06f7eb77c032ecc067da52b846
Christian Brabandt <cb@256bit.org>
parents:
10051
diff
changeset
|
61 syn keyword htmlTagName contained menuitem meter nav output picture |
883396809b45
commit https://github.com/vim/vim/commit/bc2eada5424bff06f7eb77c032ecc067da52b846
Christian Brabandt <cb@256bit.org>
parents:
10051
diff
changeset
|
62 syn keyword htmlTagName contained progress rb rp rt rtc ruby section |
883396809b45
commit https://github.com/vim/vim/commit/bc2eada5424bff06f7eb77c032ecc067da52b846
Christian Brabandt <cb@256bit.org>
parents:
10051
diff
changeset
|
63 syn keyword htmlTagName contained slot source template time track video wbr |
883396809b45
commit https://github.com/vim/vim/commit/bc2eada5424bff06f7eb77c032ecc067da52b846
Christian Brabandt <cb@256bit.org>
parents:
10051
diff
changeset
|
64 |
7 | 65 " legal arg names |
66 syn keyword htmlArg contained action | |
67 syn keyword htmlArg contained align alink alt archive background bgcolor | |
68 syn keyword htmlArg contained border bordercolor cellpadding | |
69 syn keyword htmlArg contained cellspacing checked class clear code codebase color | |
70 syn keyword htmlArg contained cols colspan content coords enctype face | |
71 syn keyword htmlArg contained gutter height hspace id | |
72 syn keyword htmlArg contained link lowsrc marginheight | |
73 syn keyword htmlArg contained marginwidth maxlength method name prompt | |
74 syn keyword htmlArg contained rel rev rows rowspan scrolling selected shape | |
75 syn keyword htmlArg contained size src start target text type url | |
76 syn keyword htmlArg contained usemap ismap valign value vlink vspace width wrap | |
77 syn match htmlArg contained "\<\(http-equiv\|href\|title\)="me=e-1 | |
78 | |
79 " Netscape extensions | |
80 syn keyword htmlTagName contained frame noframes frameset nobr blink | |
81 syn keyword htmlTagName contained layer ilayer nolayer spacer | |
82 syn keyword htmlArg contained frameborder noresize pagex pagey above below | |
83 syn keyword htmlArg contained left top visibility clip id noshade | |
84 syn match htmlArg contained "\<z-index\>" | |
85 | |
86 " Microsoft extensions | |
87 syn keyword htmlTagName contained marquee | |
88 | |
89 " html 4.0 arg names | |
90 syn match htmlArg contained "\<\(accept-charset\|label\)\>" | |
91 syn keyword htmlArg contained abbr accept accesskey axis char charoff charset | |
92 syn keyword htmlArg contained cite classid codetype compact data datetime | |
93 syn keyword htmlArg contained declare defer dir disabled for frame | |
94 syn keyword htmlArg contained headers hreflang lang language longdesc | |
95 syn keyword htmlArg contained multiple nohref nowrap object profile readonly | |
96 syn keyword htmlArg contained rules scheme scope span standby style | |
97 syn keyword htmlArg contained summary tabindex valuetype version | |
98 | |
10548
74effdaa369e
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10498
diff
changeset
|
99 " html 5 arg names |
10734 | 100 syn keyword htmlArg contained allowfullscreen async autocomplete autofocus |
101 syn keyword htmlArg contained autoplay challenge contenteditable contextmenu | |
102 syn keyword htmlArg contained controls crossorigin default dirname download | |
103 syn keyword htmlArg contained draggable dropzone form formaction formenctype | |
104 syn keyword htmlArg contained formmethod formnovalidate formtarget hidden | |
105 syn keyword htmlArg contained high icon inputmode keytype kind list loop low | |
106 syn keyword htmlArg contained max min minlength muted nonce novalidate open | |
107 syn keyword htmlArg contained optimum pattern placeholder poster preload | |
108 syn keyword htmlArg contained radiogroup required reversed sandbox spellcheck | |
109 syn keyword htmlArg contained sizes srcset srcdoc srclang step title translate | |
110 syn keyword htmlArg contained typemustmatch | |
10548
74effdaa369e
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10498
diff
changeset
|
111 |
7 | 112 " special characters |
113 syn match htmlSpecialChar "&#\=[0-9A-Za-z]\{1,8};" | |
114 | |
115 " Comments (the real ones or the old netscape ones) | |
116 if exists("html_wrong_comments") | |
3854 | 117 syn region htmlComment start=+<!--+ end=+--\s*>+ contains=@Spell |
7 | 118 else |
3854 | 119 syn region htmlComment start=+<!+ end=+>+ contains=htmlCommentPart,htmlCommentError,@Spell |
7 | 120 syn match htmlCommentError contained "[^><!]" |
3854 | 121 syn region htmlCommentPart contained start=+--+ end=+--\s*+ contains=@htmlPreProc,@Spell |
7 | 122 endif |
829 | 123 syn region htmlComment start=+<!DOCTYPE+ keepend end=+>+ |
7 | 124 |
125 " server-parsed commands | |
126 syn region htmlPreProc start=+<!--#+ end=+-->+ contains=htmlPreStmt,htmlPreError,htmlPreAttr | |
127 syn match htmlPreStmt contained "<!--#\(config\|echo\|exec\|fsize\|flastmod\|include\|printenv\|set\|if\|elif\|else\|endif\|geoguide\)\>" | |
128 syn match htmlPreError contained "<!--#\S*"ms=s+4 | |
129 syn match htmlPreAttr contained "\w\+=[^"]\S\+" contains=htmlPreProcAttrError,htmlPreProcAttrName | |
130 syn region htmlPreAttr contained start=+\w\+="+ skip=+\\\\\|\\"+ end=+"+ contains=htmlPreProcAttrName keepend | |
131 syn match htmlPreProcAttrError contained "\w\+="he=e-1 | |
132 syn match htmlPreProcAttrName contained "\(expr\|errmsg\|sizefmt\|timefmt\|var\|cgi\|cmd\|file\|virtual\|value\)="he=e-1 | |
133 | |
134 if !exists("html_no_rendering") | |
135 " rendering | |
419 | 136 syn cluster htmlTop contains=@Spell,htmlTag,htmlEndTag,htmlSpecialChar,htmlPreProc,htmlComment,htmlLink,javaScript,@htmlPreproc |
7 | 137 |
138 syn region htmlBold start="<b\>" end="</b>"me=e-4 contains=@htmlTop,htmlBoldUnderline,htmlBoldItalic | |
139 syn region htmlBold start="<strong\>" end="</strong>"me=e-9 contains=@htmlTop,htmlBoldUnderline,htmlBoldItalic | |
140 syn region htmlBoldUnderline contained start="<u\>" end="</u>"me=e-4 contains=@htmlTop,htmlBoldUnderlineItalic | |
141 syn region htmlBoldItalic contained start="<i\>" end="</i>"me=e-4 contains=@htmlTop,htmlBoldItalicUnderline | |
142 syn region htmlBoldItalic contained start="<em\>" end="</em>"me=e-5 contains=@htmlTop,htmlBoldItalicUnderline | |
143 syn region htmlBoldUnderlineItalic contained start="<i\>" end="</i>"me=e-4 contains=@htmlTop | |
144 syn region htmlBoldUnderlineItalic contained start="<em\>" end="</em>"me=e-5 contains=@htmlTop | |
145 syn region htmlBoldItalicUnderline contained start="<u\>" end="</u>"me=e-4 contains=@htmlTop,htmlBoldUnderlineItalic | |
146 | |
147 syn region htmlUnderline start="<u\>" end="</u>"me=e-4 contains=@htmlTop,htmlUnderlineBold,htmlUnderlineItalic | |
148 syn region htmlUnderlineBold contained start="<b\>" end="</b>"me=e-4 contains=@htmlTop,htmlUnderlineBoldItalic | |
149 syn region htmlUnderlineBold contained start="<strong\>" end="</strong>"me=e-9 contains=@htmlTop,htmlUnderlineBoldItalic | |
150 syn region htmlUnderlineItalic contained start="<i\>" end="</i>"me=e-4 contains=@htmlTop,htmlUnderlineItalicBold | |
151 syn region htmlUnderlineItalic contained start="<em\>" end="</em>"me=e-5 contains=@htmlTop,htmlUnderlineItalicBold | |
152 syn region htmlUnderlineItalicBold contained start="<b\>" end="</b>"me=e-4 contains=@htmlTop | |
153 syn region htmlUnderlineItalicBold contained start="<strong\>" end="</strong>"me=e-9 contains=@htmlTop | |
154 syn region htmlUnderlineBoldItalic contained start="<i\>" end="</i>"me=e-4 contains=@htmlTop | |
155 syn region htmlUnderlineBoldItalic contained start="<em\>" end="</em>"me=e-5 contains=@htmlTop | |
156 | |
157 syn region htmlItalic start="<i\>" end="</i>"me=e-4 contains=@htmlTop,htmlItalicBold,htmlItalicUnderline | |
158 syn region htmlItalic start="<em\>" end="</em>"me=e-5 contains=@htmlTop | |
159 syn region htmlItalicBold contained start="<b\>" end="</b>"me=e-4 contains=@htmlTop,htmlItalicBoldUnderline | |
160 syn region htmlItalicBold contained start="<strong\>" end="</strong>"me=e-9 contains=@htmlTop,htmlItalicBoldUnderline | |
161 syn region htmlItalicBoldUnderline contained start="<u\>" end="</u>"me=e-4 contains=@htmlTop | |
162 syn region htmlItalicUnderline contained start="<u\>" end="</u>"me=e-4 contains=@htmlTop,htmlItalicUnderlineBold | |
163 syn region htmlItalicUnderlineBold contained start="<b\>" end="</b>"me=e-4 contains=@htmlTop | |
164 syn region htmlItalicUnderlineBold contained start="<strong\>" end="</strong>"me=e-9 contains=@htmlTop | |
165 | |
3854 | 166 syn match htmlLeadingSpace "^\s\+" contained |
167 syn region htmlLink start="<a\>\_[^>]*\<href\>" end="</a>"me=e-4 contains=@Spell,htmlTag,htmlEndTag,htmlSpecialChar,htmlPreProc,htmlComment,htmlLeadingSpace,javaScript,@htmlPreproc | |
7 | 168 syn region htmlH1 start="<h1\>" end="</h1>"me=e-5 contains=@htmlTop |
169 syn region htmlH2 start="<h2\>" end="</h2>"me=e-5 contains=@htmlTop | |
170 syn region htmlH3 start="<h3\>" end="</h3>"me=e-5 contains=@htmlTop | |
171 syn region htmlH4 start="<h4\>" end="</h4>"me=e-5 contains=@htmlTop | |
172 syn region htmlH5 start="<h5\>" end="</h5>"me=e-5 contains=@htmlTop | |
173 syn region htmlH6 start="<h6\>" end="</h6>"me=e-5 contains=@htmlTop | |
174 syn region htmlHead start="<head\>" end="</head>"me=e-7 end="<body\>"me=e-5 end="<h[1-6]\>"me=e-3 contains=htmlTag,htmlEndTag,htmlSpecialChar,htmlPreProc,htmlComment,htmlLink,htmlTitle,javaScript,cssStyle,@htmlPreproc | |
829 | 175 syn region htmlTitle start="<title\>" end="</title>"me=e-8 contains=htmlTag,htmlEndTag,htmlSpecialChar,htmlPreProc,htmlComment,javaScript,@htmlPreproc |
7 | 176 endif |
177 | |
829 | 178 syn keyword htmlTagName contained noscript |
7 | 179 syn keyword htmlSpecialTagName contained script style |
180 if main_syntax != 'java' || exists("java_javascript") | |
181 " JAVA SCRIPT | |
829 | 182 syn include @htmlJavaScript syntax/javascript.vim |
7 | 183 unlet b:current_syntax |
6476 | 184 syn region javaScript start=+<script\_[^>]*>+ keepend end=+</script\_[^>]*>+me=s-1 contains=@htmlJavaScript,htmlCssStyleComment,htmlScriptTag,@htmlPreproc |
3854 | 185 syn region htmlScriptTag contained start=+<script+ end=+>+ fold contains=htmlTagN,htmlString,htmlArg,htmlValue,htmlTagError,htmlEvent |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
186 hi def link htmlScriptTag htmlTag |
7 | 187 |
188 " html events (i.e. arguments that include javascript commands) | |
189 if exists("html_extended_events") | |
829 | 190 syn region htmlEvent contained start=+\<on\a\+\s*=[\t ]*'+ end=+'+ contains=htmlEventSQ |
191 syn region htmlEvent contained start=+\<on\a\+\s*=[\t ]*"+ end=+"+ contains=htmlEventDQ | |
7 | 192 else |
829 | 193 syn region htmlEvent contained start=+\<on\a\+\s*=[\t ]*'+ end=+'+ keepend contains=htmlEventSQ |
194 syn region htmlEvent contained start=+\<on\a\+\s*=[\t ]*"+ end=+"+ keepend contains=htmlEventDQ | |
7 | 195 endif |
829 | 196 syn region htmlEventSQ contained start=+'+ms=s+1 end=+'+me=s-1 contains=@htmlJavaScript |
197 syn region htmlEventDQ contained start=+"+ms=s+1 end=+"+me=s-1 contains=@htmlJavaScript | |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
198 hi def link htmlEventSQ htmlEvent |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
199 hi def link htmlEventDQ htmlEvent |
7 | 200 |
201 " a javascript expression is used as an arg value | |
202 syn region javaScriptExpression contained start=+&{+ keepend end=+};+ contains=@htmlJavaScript,@htmlPreproc | |
203 endif | |
204 | |
205 if main_syntax != 'java' || exists("java_vb") | |
206 " VB SCRIPT | |
829 | 207 syn include @htmlVbScript syntax/vb.vim |
7 | 208 unlet b:current_syntax |
6476 | 209 syn region javaScript start=+<script \_[^>]*language *=\_[^>]*vbscript\_[^>]*>+ keepend end=+</script\_[^>]*>+me=s-1 contains=@htmlVbScript,htmlCssStyleComment,htmlScriptTag,@htmlPreproc |
7 | 210 endif |
211 | |
212 syn cluster htmlJavaScript add=@htmlPreproc | |
213 | |
214 if main_syntax != 'java' || exists("java_css") | |
215 " embedded style sheets | |
829 | 216 syn keyword htmlArg contained media |
217 syn include @htmlCss syntax/css.vim | |
7 | 218 unlet b:current_syntax |
219 syn region cssStyle start=+<style+ keepend end=+</style>+ contains=@htmlCss,htmlTag,htmlEndTag,htmlCssStyleComment,@htmlPreproc | |
220 syn match htmlCssStyleComment contained "\(<!--\|-->\)" | |
221 syn region htmlCssDefinition matchgroup=htmlArg start='style="' keepend matchgroup=htmlString end='"' contains=css.*Attr,css.*Prop,cssComment,cssLength,cssColor,cssURL,cssImportant,cssError,cssString,@htmlPreproc | |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
222 hi def link htmlStyleArg htmlString |
7 | 223 endif |
224 | |
225 if main_syntax == "html" | |
226 " synchronizing (does not always work if a comment includes legal | |
227 " html tags, but doing it right would mean to always start | |
228 " at the first line, which is too slow) | |
229 syn sync match htmlHighlight groupthere NONE "<[/a-zA-Z]" | |
230 syn sync match htmlHighlight groupthere javaScript "<script" | |
231 syn sync match htmlHighlightSkip "^.*['\"].*$" | |
232 syn sync minlines=10 | |
233 endif | |
234 | |
235 " The default highlighting. | |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
236 hi def link htmlTag Function |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
237 hi def link htmlEndTag Identifier |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
238 hi def link htmlArg Type |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
239 hi def link htmlTagName htmlStatement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
240 hi def link htmlSpecialTagName Exception |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
241 hi def link htmlValue String |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
242 hi def link htmlSpecialChar Special |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
6476
diff
changeset
|
243 |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
6476
diff
changeset
|
244 if !exists("html_no_rendering") |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
245 hi def link htmlH1 Title |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
246 hi def link htmlH2 htmlH1 |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
247 hi def link htmlH3 htmlH2 |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
248 hi def link htmlH4 htmlH3 |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
249 hi def link htmlH5 htmlH4 |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
250 hi def link htmlH6 htmlH5 |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
251 hi def link htmlHead PreProc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
252 hi def link htmlTitle Title |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
253 hi def link htmlBoldItalicUnderline htmlBoldUnderlineItalic |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
254 hi def link htmlUnderlineBold htmlBoldUnderline |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
255 hi def link htmlUnderlineItalicBold htmlBoldUnderlineItalic |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
256 hi def link htmlUnderlineBoldItalic htmlBoldUnderlineItalic |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
257 hi def link htmlItalicUnderline htmlUnderlineItalic |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
258 hi def link htmlItalicBold htmlBoldItalic |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
259 hi def link htmlItalicBoldUnderline htmlBoldUnderlineItalic |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
260 hi def link htmlItalicUnderlineBold htmlBoldUnderlineItalic |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
261 hi def link htmlLink Underlined |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
262 hi def link htmlLeadingSpace None |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
6476
diff
changeset
|
263 if !exists("html_my_rendering") |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
6476
diff
changeset
|
264 hi def htmlBold term=bold cterm=bold gui=bold |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
6476
diff
changeset
|
265 hi def htmlBoldUnderline term=bold,underline cterm=bold,underline gui=bold,underline |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
6476
diff
changeset
|
266 hi def htmlBoldItalic term=bold,italic cterm=bold,italic gui=bold,italic |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
6476
diff
changeset
|
267 hi def htmlBoldUnderlineItalic term=bold,italic,underline cterm=bold,italic,underline gui=bold,italic,underline |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
6476
diff
changeset
|
268 hi def htmlUnderline term=underline cterm=underline gui=underline |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
6476
diff
changeset
|
269 hi def htmlUnderlineItalic term=italic,underline cterm=italic,underline gui=italic,underline |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
6476
diff
changeset
|
270 hi def htmlItalic term=italic cterm=italic gui=italic |
7 | 271 endif |
272 endif | |
273 | |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
274 hi def link htmlPreStmt PreProc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
275 hi def link htmlPreError Error |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
276 hi def link htmlPreProc PreProc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
277 hi def link htmlPreAttr String |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
278 hi def link htmlPreProcAttrName PreProc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
279 hi def link htmlPreProcAttrError Error |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
280 hi def link htmlSpecial Special |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
281 hi def link htmlSpecialChar Special |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
282 hi def link htmlString String |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
283 hi def link htmlStatement Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
284 hi def link htmlComment Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
285 hi def link htmlCommentPart Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
286 hi def link htmlValue String |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
287 hi def link htmlCommentError htmlError |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
288 hi def link htmlTagError htmlError |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
289 hi def link htmlEvent javaScript |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
290 hi def link htmlError Error |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
6476
diff
changeset
|
291 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
292 hi def link javaScript Special |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
293 hi def link javaScriptExpression javaScript |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
294 hi def link htmlCssStyleComment Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
295 hi def link htmlCssDefinition Special |
7 | 296 |
297 let b:current_syntax = "html" | |
298 | |
299 if main_syntax == 'html' | |
300 unlet main_syntax | |
301 endif | |
302 | |
3854 | 303 let &cpo = s:cpo_save |
304 unlet s:cpo_save | |
7 | 305 " vim: ts=8 |