Mercurial > vim
annotate runtime/syntax/tidy.vim @ 15469:bc9b5261ed01
Added tag v8.1.0742 for changeset 1550cc188ff66aef94d50dd304c3860dbd88883f
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 13 Jan 2019 19:15:07 +0100 |
parents | 34c45ee4210d |
children | 34b4eb3a8458 |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
5277 | 2 " Language: HMTL Tidy configuration file (/etc/tidyrc ~/.tidyrc) |
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> | |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
4 " Last Change: 2016 Apr 24 |
7 | 5 |
5277 | 6 if exists("b:current_syntax") |
7 | 7 finish |
8 endif | |
9 | |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
10 let s:cpo_save = &cpo |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
11 set cpo&vim |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
12 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
13 syn iskeyword @,48-57,-,_ |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
14 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
15 syn case ignore |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
16 syn keyword tidyBoolean contained t[rue] f[alse] y[es] n[o] 1 0 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
17 syn keyword tidyAutoBoolean contained t[rue] f[alse] y[es] n[o] 1 0 auto |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
18 syn case match |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
19 syn keyword tidyDoctype contained html5 omit auto strict loose transitional user |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
20 syn keyword tidyEncoding contained raw ascii latin0 latin1 utf8 iso2022 mac win1252 ibm858 utf16le utf16be utf16 big5 shiftjis |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
21 syn keyword tidyNewline contained LF CRLF CR |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
22 syn match tidyNumber contained "\<\d\+\>" |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
23 syn keyword tidyRepeat contained keep-first keep-last |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
24 syn keyword tidySorter contained alpha none |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
25 syn region tidyString contained start=+"+ skip=+\\\\\|\\"+ end=+"+ oneline |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
26 syn region tidyString contained start=+'+ skip=+\\\\\|\\'+ end=+'+ oneline |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
27 syn match tidyTags contained "\<\w\+\(\s*,\s*\w\+\)*\>" |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
28 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
29 syn keyword tidyBooleanOption add-xml-decl add-xml-pi add-xml-space |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
30 \ anchor-as-name ascii-chars assume-xml-procins bare break-before-br |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
31 \ clean coerce-endtags decorate-inferred-ul drop-empty-paras |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
32 \ drop-empty-elements drop-font-tags drop-proprietary-attributes |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
33 \ enclose-block-text enclose-text escape-cdata escape-scripts |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
34 \ fix-backslash fix-bad-comments fix-uri force-output gdoc gnu-emacs |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
35 \ hide-comments hide-endtags indent-attributes indent-cdata |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
36 \ indent-with-tabs input-xml join-classes join-styles keep-time |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
37 \ language literal-attributes logical-emphasis lower-literals markup |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
38 \ merge-emphasis ncr numeric-entities omit-optional-tags output-html |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
39 \ output-xhtml output-xml preserve-entities punctuation-wrap quiet |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
40 \ quote-ampersand quote-marks quote-nbsp raw replace-color show-info |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
41 \ show-warnings skip-nested split strict-tags-attributes tidy-mark |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
42 \ uppercase-attributes uppercase-tags word-2000 wrap-asp |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
43 \ wrap-attributes wrap-jste wrap-php wrap-script-literals |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
44 \ wrap-sections write-back |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
45 \ contained nextgroup=tidyBooleanDelimiter |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
46 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
47 syn match tidyBooleanDelimiter ":" nextgroup=tidyBoolean contained skipwhite |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
48 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
49 syn keyword tidyAutoBooleanOption indent merge-divs merge-spans output-bom show-body-only vertical-space contained nextgroup=tidyAutoBooleanDelimiter |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
50 syn match tidyAutoBooleanDelimiter ":" nextgroup=tidyAutoBoolean contained skipwhite |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
51 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
52 syn keyword tidyCSSSelectorOption css-prefix contained nextgroup=tidyCSSSelectorDelimiter |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
53 syn match tidyCSSSelectorDelimiter ":" nextgroup=tidyCSSSelector contained skipwhite |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
54 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
55 syn keyword tidyDoctypeOption doctype contained nextgroup=tidyDoctypeDelimiter |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
56 syn match tidyDoctypeDelimiter ":" nextgroup=tidyDoctype contained skipwhite |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
57 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
58 syn keyword tidyEncodingOption char-encoding input-encoding output-encoding contained nextgroup=tidyEncodingDelimiter |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
59 syn match tidyEncodingDelimiter ":" nextgroup=tidyEncoding contained skipwhite |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
60 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
61 syn keyword tidyIntegerOption accessibility-check doctype-mode indent-spaces show-errors tab-size wrap contained nextgroup=tidyIntegerDelimiter |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
62 syn match tidyIntegerDelimiter ":" nextgroup=tidyNumber contained skipwhite |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
63 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
64 syn keyword tidyNameOption slide-style contained nextgroup=tidyNameDelimiter |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
65 syn match tidyNameDelimiter ":" nextgroup=tidyName contained skipwhite |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
66 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
67 syn keyword tidyNewlineOption newline contained nextgroup=tidyNewlineDelimiter |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
68 syn match tidyNewlineDelimiter ":" nextgroup=tidyNewline contained skipwhite |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
69 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
70 syn keyword tidyTagsOption new-blocklevel-tags new-empty-tags new-inline-tags new-pre-tags contained nextgroup=tidyTagsDelimiter |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
71 syn match tidyTagsDelimiter ":" nextgroup=tidyTags contained skipwhite |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
72 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
73 syn keyword tidyRepeatOption repeated-attributes contained nextgroup=tidyRepeatDelimiter |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
74 syn match tidyRepeatDelimiter ":" nextgroup=tidyRepeat contained skipwhite |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
75 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
76 syn keyword tidySorterOption sort-attributes contained nextgroup=tidySorterDelimiter |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
77 syn match tidySorterDelimiter ":" nextgroup=tidySorter contained skipwhite |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
78 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
79 syn keyword tidyStringOption alt-text error-file gnu-emacs-file output-file contained nextgroup=tidyStringDelimiter |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
80 syn match tidyStringDelimiter ":" nextgroup=tidyString contained skipwhite |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
81 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
82 syn cluster tidyOptions contains=tidy.*Option |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
83 |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
84 syn match tidyStart "^" nextgroup=@tidyOptions |
7 | 85 |
5277 | 86 syn match tidyComment "^\s*//.*$" contains=tidyTodo |
87 syn match tidyComment "^\s*#.*$" contains=tidyTodo | |
88 syn keyword tidyTodo TODO NOTE FIXME XXX contained | |
7 | 89 |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
90 hi def link tidyAutoBooleanOption Identifier |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
91 hi def link tidyBooleanOption Identifier |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
92 hi def link tidyCSSSelectorOption Identifier |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
93 hi def link tidyDoctypeOption Identifier |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
94 hi def link tidyEncodingOption Identifier |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
95 hi def link tidyIntegerOption Identifier |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
96 hi def link tidyNameOption Identifier |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
97 hi def link tidyNewlineOption Identifier |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
98 hi def link tidyTagsOption Identifier |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
99 hi def link tidyRepeatOption Identifier |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
100 hi def link tidySorterOption Identifier |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
101 hi def link tidyStringOption Identifier |
7 | 102 |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
103 hi def link tidyAutoBooleanDelimiter Special |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
104 hi def link tidyBooleanDelimiter Special |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
105 hi def link tidyCSSSelectorDelimiter Special |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
106 hi def link tidyDoctypeDelimiter Special |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
107 hi def link tidyEncodingDelimiter Special |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
108 hi def link tidyIntegerDelimiter Special |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
109 hi def link tidyNameDelimiter Special |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
110 hi def link tidyNewlineDelimiter Special |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
111 hi def link tidyTagsDelimiter Special |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
112 hi def link tidyRepeatDelimiter Special |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
113 hi def link tidySorterDelimiter Special |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
114 hi def link tidyStringDelimiter Special |
7 | 115 |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
116 hi def link tidyAutoBoolean Boolean |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
117 hi def link tidyBoolean Boolean |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
118 hi def link tidyDoctype Constant |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
119 hi def link tidyEncoding Constant |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
120 hi def link tidyNewline Constant |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
121 hi def link tidyTags Constant |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
122 hi def link tidyNumber Number |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
123 hi def link tidyRepeat Constant |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
124 hi def link tidySorter Constant |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
125 hi def link tidyString String |
7 | 126 |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
127 hi def link tidyComment Comment |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
128 hi def link tidyTodo Todo |
7 | 129 |
130 let b:current_syntax = "tidy" | |
131 | |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
132 let &cpo = s:cpo_save |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
133 unlet s:cpo_save |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
5277
diff
changeset
|
134 |
7 | 135 " vim: ts=8 |