ultraviolet 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -0
- data/Manifest.txt +216 -0
- data/README.txt +52 -0
- data/Rakefile +51 -0
- data/bin/theme2render +104 -0
- data/bin/uv +162 -0
- data/lib/uv.rb +84 -0
- data/lib/uv/html_processor.rb +89 -0
- data/render/old/txt2tags.render +131 -0
- data/render/xhtml/active4d.render +105 -0
- data/render/xhtml/all_hallows_eve.render +69 -0
- data/render/xhtml/amy.render +144 -0
- data/render/xhtml/blackboard.render +84 -0
- data/render/xhtml/brilliance_black.render +575 -0
- data/render/xhtml/brilliance_dull.render +534 -0
- data/render/xhtml/cobalt.render +135 -0
- data/render/xhtml/dawn.render +99 -0
- data/render/xhtml/eiffel.render +105 -0
- data/render/xhtml/espresso_libre.render +96 -0
- data/render/xhtml/files/css/active4d.css +114 -0
- data/render/xhtml/files/css/all_hallows_eve.css +72 -0
- data/render/xhtml/files/css/amy.css +144 -0
- data/render/xhtml/files/css/blackboard.css +88 -0
- data/render/xhtml/files/css/brilliance_black.css +632 -0
- data/render/xhtml/files/css/brilliance_dull.css +579 -0
- data/render/xhtml/files/css/cobalt.css +149 -0
- data/render/xhtml/files/css/dawn.css +121 -0
- data/render/xhtml/files/css/eiffel.css +121 -0
- data/render/xhtml/files/css/espresso_libre.css +109 -0
- data/render/xhtml/files/css/idle.css +62 -0
- data/render/xhtml/files/css/iplastic.css +80 -0
- data/render/xhtml/files/css/lazy.css +73 -0
- data/render/xhtml/files/css/mac_classic.css +123 -0
- data/render/xhtml/files/css/magicwb_amiga.css +101 -0
- data/render/xhtml/files/css/pastels_on_dark.css +188 -0
- data/render/xhtml/files/css/slush_poppies.css +85 -0
- data/render/xhtml/files/css/spacecadet.css +51 -0
- data/render/xhtml/files/css/sunburst.css +180 -0
- data/render/xhtml/files/css/twilight.css +137 -0
- data/render/xhtml/files/css/zenburnesque.css +88 -0
- data/render/xhtml/idle.render +66 -0
- data/render/xhtml/iplastic.render +72 -0
- data/render/xhtml/lazy.render +69 -0
- data/render/xhtml/mac_classic.render +108 -0
- data/render/xhtml/magicwb_amiga.render +90 -0
- data/render/xhtml/pastels_on_dark.render +177 -0
- data/render/xhtml/slush_poppies.render +96 -0
- data/render/xhtml/spacecadet.render +54 -0
- data/render/xhtml/sunburst.render +159 -0
- data/render/xhtml/twilight.render +126 -0
- data/render/xhtml/zenburnesque.render +99 -0
- data/syntax/actionscript.syntax +97 -0
- data/syntax/active4d.syntax +276 -0
- data/syntax/active4d_html.syntax +311 -0
- data/syntax/active4d_ini.syntax +50 -0
- data/syntax/active4d_library.syntax +21 -0
- data/syntax/ada.syntax +33 -0
- data/syntax/antlr.syntax +128 -0
- data/syntax/apache.syntax +176 -0
- data/syntax/applescript.syntax +384 -0
- data/syntax/asp.syntax +70 -0
- data/syntax/asp_vb.net.syntax +129 -0
- data/syntax/bibtex.syntax +151 -0
- data/syntax/blog_html.syntax +41 -0
- data/syntax/blog_markdown.syntax +42 -0
- data/syntax/blog_text.syntax +27 -0
- data/syntax/blog_textile.syntax +27 -0
- data/syntax/buggy/nemerle.yaml +74 -0
- data/syntax/build.syntax +53 -0
- data/syntax/bulletin_board.syntax +287 -0
- data/syntax/c++.syntax +109 -0
- data/syntax/c.syntax +326 -0
- data/syntax/cake.syntax +55 -0
- data/syntax/camlp4.syntax +36 -0
- data/syntax/coldfusion.syntax +118 -0
- data/syntax/context_free.syntax +176 -0
- data/syntax/cs.syntax +59 -0
- data/syntax/css.syntax +190 -0
- data/syntax/css_experimental.syntax +1925 -0
- data/syntax/csv.syntax +68 -0
- data/syntax/d.syntax +138 -0
- data/syntax/diff.syntax +81 -0
- data/syntax/dokuwiki.syntax +204 -0
- data/syntax/dot.syntax +47 -0
- data/syntax/doxygen.syntax +43 -0
- data/syntax/dylan.syntax +62 -0
- data/syntax/eiffel.syntax +78 -0
- data/syntax/erlang.syntax +922 -0
- data/syntax/f-script.syntax +80 -0
- data/syntax/fortran.syntax +141 -0
- data/syntax/fxscript.syntax +142 -0
- data/syntax/greasemonkey.syntax +34 -0
- data/syntax/gri.syntax +83 -0
- data/syntax/groovy.syntax +189 -0
- data/syntax/gtd2_text.syntax +31 -0
- data/syntax/gtdalt.syntax +143 -0
- data/syntax/haml.syntax +88 -0
- data/syntax/haskell.syntax +88 -0
- data/syntax/html-asp.syntax +27 -0
- data/syntax/html.syntax +362 -0
- data/syntax/html_django.syntax +36 -0
- data/syntax/html_for_asp.net.syntax +424 -0
- data/syntax/html_mason.syntax +119 -0
- data/syntax/html_rails.syntax +40 -0
- data/syntax/html_tcl.syntax +26 -0
- data/syntax/icalendar.syntax +32 -0
- data/syntax/inform.syntax +48 -0
- data/syntax/ini.syntax +54 -0
- data/syntax/installer_distribution_script.syntax +77 -0
- data/syntax/io.syntax +81 -0
- data/syntax/java.syntax +211 -0
- data/syntax/javaproperties.syntax +20 -0
- data/syntax/javascript.syntax +255 -0
- data/syntax/javascript_+_prototype.syntax +72 -0
- data/syntax/javascript_+_prototype_bracketed.syntax +140 -0
- data/syntax/jquery_javascript.syntax +114 -0
- data/syntax/json.syntax +136 -0
- data/syntax/languagedefinition.syntax +697 -0
- data/syntax/latex.syntax +566 -0
- data/syntax/latex_beamer.syntax +41 -0
- data/syntax/latex_log.syntax +50 -0
- data/syntax/latex_memoir.syntax +64 -0
- data/syntax/lexflex.syntax +219 -0
- data/syntax/lighttpd.syntax +54 -0
- data/syntax/lilypond.syntax +492 -0
- data/syntax/lisp.syntax +61 -0
- data/syntax/literate_haskell.syntax +24 -0
- data/syntax/logo.syntax +29 -0
- data/syntax/logtalk.syntax +152 -0
- data/syntax/lua.syntax +86 -0
- data/syntax/m.syntax +142 -0
- data/syntax/macports_portfile.syntax +143 -0
- data/syntax/mail.syntax +118 -0
- data/syntax/makefile.syntax +35 -0
- data/syntax/man.syntax +17 -0
- data/syntax/markdown.syntax +543 -0
- data/syntax/mediawiki.syntax +567 -0
- data/syntax/mel.syntax +92 -0
- data/syntax/mips.syntax +66 -0
- data/syntax/mod_perl.syntax +50 -0
- data/syntax/modula-3.syntax +47 -0
- data/syntax/moinmoin.syntax +189 -0
- data/syntax/mootools.syntax +572 -0
- data/syntax/movable_type.syntax +162 -0
- data/syntax/multimarkdown.syntax +39 -0
- data/syntax/objective-c++.syntax +18 -0
- data/syntax/objective-c.syntax +226 -0
- data/syntax/ocaml.syntax +764 -0
- data/syntax/ocamllex.syntax +167 -0
- data/syntax/ocamlyacc.syntax +184 -0
- data/syntax/old/YAML.yaml +160 -0
- data/syntax/old/txt2tags.yaml +139 -0
- data/syntax/opengl.syntax +14 -0
- data/syntax/pascal.syntax +77 -0
- data/syntax/perl.syntax +1075 -0
- data/syntax/php.syntax +678 -0
- data/syntax/plain_text.syntax +32 -0
- data/syntax/postscript.syntax +114 -0
- data/syntax/processing.syntax +106 -0
- data/syntax/prolog.syntax +40 -0
- data/syntax/property_list.syntax +645 -0
- data/syntax/python.syntax +865 -0
- data/syntax/python_django.syntax +21 -0
- data/syntax/qmake_project.syntax +114 -0
- data/syntax/qt_c++.syntax +26 -0
- data/syntax/quake3_config.syntax +32 -0
- data/syntax/r.syntax +81 -0
- data/syntax/r_console.syntax +16 -0
- data/syntax/ragel.syntax +201 -0
- data/syntax/rd_r_documentation.syntax +91 -0
- data/syntax/regexp.syntax +50 -0
- data/syntax/regular_expressions_oniguruma.syntax +107 -0
- data/syntax/regular_expressions_python.syntax +109 -0
- data/syntax/release_notes.syntax +37 -0
- data/syntax/remind.syntax +253 -0
- data/syntax/restructuredtext.syntax +250 -0
- data/syntax/rez.syntax +80 -0
- data/syntax/ruby.syntax +1035 -0
- data/syntax/ruby_experimental.syntax +145 -0
- data/syntax/ruby_on_rails.syntax +88 -0
- data/syntax/s5.syntax +69 -0
- data/syntax/scheme.syntax +347 -0
- data/syntax/scilab.syntax +41 -0
- data/syntax/setext.syntax +147 -0
- data/syntax/shell-unix-generic.syntax +384 -0
- data/syntax/slate.syntax +149 -0
- data/syntax/smarty.syntax +63 -0
- data/syntax/sql.syntax +237 -0
- data/syntax/sql_rails.syntax +18 -0
- data/syntax/ssh-config.syntax +33 -0
- data/syntax/standard_ml.syntax +45 -0
- data/syntax/strings_file.syntax +39 -0
- data/syntax/subversion_commit_message.syntax +36 -0
- data/syntax/sweave.syntax +84 -0
- data/syntax/swig.syntax +57 -0
- data/syntax/tcl.syntax +152 -0
- data/syntax/template_toolkit.syntax +121 -0
- data/syntax/tex.syntax +86 -0
- data/syntax/tex_math.syntax +49 -0
- data/syntax/textile.syntax +215 -0
- data/syntax/tsv.syntax +50 -0
- data/syntax/twiki.syntax +241 -0
- data/syntax/txt2tags.syntax +79 -0
- data/syntax/vectorscript.syntax +57 -0
- data/syntax/xhtml_1.0.syntax +4027 -0
- data/syntax/xml.syntax +179 -0
- data/syntax/xml_strict.syntax +92 -0
- data/syntax/xsl.syntax +60 -0
- data/syntax/yaml.syntax +160 -0
- data/syntax/yui_javascript.syntax +176 -0
- data/test/test_uv.rb +0 -0
- metadata +270 -0
@@ -0,0 +1,177 @@
|
|
1
|
+
---
|
2
|
+
name: Pastels on Dark
|
3
|
+
tags:
|
4
|
+
- begin: <span class="Comments">
|
5
|
+
end: </span>
|
6
|
+
selector: comment
|
7
|
+
- begin: <span class="CommentsBlock">
|
8
|
+
end: </span>
|
9
|
+
selector: comment.block
|
10
|
+
- begin: <span class="Strings">
|
11
|
+
end: </span>
|
12
|
+
selector: string
|
13
|
+
- begin: <span class="Numbers">
|
14
|
+
end: </span>
|
15
|
+
selector: constant.numeric
|
16
|
+
- begin: <span class="Keywords">
|
17
|
+
end: </span>
|
18
|
+
selector: keyword
|
19
|
+
- begin: <span class="PreprocessorLine">
|
20
|
+
end: </span>
|
21
|
+
selector: meta.preprocessor
|
22
|
+
- begin: <span class="PreprocessorDirective">
|
23
|
+
end: </span>
|
24
|
+
selector: keyword.control.import
|
25
|
+
- begin: <span class="Functions">
|
26
|
+
end: </span>
|
27
|
+
selector: support.function
|
28
|
+
- begin: <span class="FunctionResult">
|
29
|
+
end: </span>
|
30
|
+
selector: declaration.function function-result
|
31
|
+
- begin: <span class="FunctionName">
|
32
|
+
end: </span>
|
33
|
+
selector: declaration.function function-name
|
34
|
+
- begin: <span class="FunctionArgumentName">
|
35
|
+
end: </span>
|
36
|
+
selector: declaration.function argument-name
|
37
|
+
- begin: <span class="FunctionArgumentType">
|
38
|
+
end: </span>
|
39
|
+
selector: declaration.function function-arg-type
|
40
|
+
- begin: <span class="FunctionArgumentVariable">
|
41
|
+
end: </span>
|
42
|
+
selector: declaration.function function-argument
|
43
|
+
- begin: <span class="ClassName">
|
44
|
+
end: </span>
|
45
|
+
selector: declaration.class class-name
|
46
|
+
- begin: <span class="ClassInheritance">
|
47
|
+
end: </span>
|
48
|
+
selector: declaration.class class-inheritance
|
49
|
+
- begin: <span class="Invalid">
|
50
|
+
end: </span>
|
51
|
+
selector: invalid
|
52
|
+
- begin: <span class="InvalidTrailingWhitespace">
|
53
|
+
end: </span>
|
54
|
+
selector: invalid.deprecated.trailing-whitespace
|
55
|
+
- begin: <span class="Section">
|
56
|
+
end: </span>
|
57
|
+
selector: declaration.section section-name
|
58
|
+
- begin: <span class="Interpolation">
|
59
|
+
end: </span>
|
60
|
+
selector: string.interpolation
|
61
|
+
- begin: <span class="RegularExpressions">
|
62
|
+
end: </span>
|
63
|
+
selector: string.regexp
|
64
|
+
- begin: <span class="Variables">
|
65
|
+
end: </span>
|
66
|
+
selector: variable
|
67
|
+
- begin: <span class="Constants">
|
68
|
+
end: </span>
|
69
|
+
selector: constant
|
70
|
+
- begin: <span class="CharacterConstants">
|
71
|
+
end: </span>
|
72
|
+
selector: constant.character
|
73
|
+
- begin: <span class="LanguageConstants">
|
74
|
+
end: </span>
|
75
|
+
selector: constant.language
|
76
|
+
- begin: <span class="EmbeddedCode">
|
77
|
+
end: </span>
|
78
|
+
selector: embedded
|
79
|
+
- begin: <span class="TagName">
|
80
|
+
end: </span>
|
81
|
+
selector: keyword.markup.element-name
|
82
|
+
- begin: <span class="AttributeName">
|
83
|
+
end: </span>
|
84
|
+
selector: keyword.markup.attribute-name
|
85
|
+
- begin: <span class="AttributeWithValue">
|
86
|
+
end: </span>
|
87
|
+
selector: meta.attribute-with-value
|
88
|
+
- begin: <span class="Exceptions">
|
89
|
+
end: </span>
|
90
|
+
selector: keyword.exception
|
91
|
+
- begin: <span class="Operators">
|
92
|
+
end: </span>
|
93
|
+
selector: keyword.operator
|
94
|
+
- begin: <span class="ControlStructures">
|
95
|
+
end: </span>
|
96
|
+
selector: keyword.control
|
97
|
+
- begin: <span class="HtmlDocinfoXml">
|
98
|
+
end: </span>
|
99
|
+
selector: meta.tag.preprocessor.xml
|
100
|
+
- begin: <span class="HtmlDoctype">
|
101
|
+
end: </span>
|
102
|
+
selector: meta.tag.sgml.doctype
|
103
|
+
- begin: <span class="HtmlDocinfoDtd">
|
104
|
+
end: </span>
|
105
|
+
selector: string.quoted.docinfo.doctype.DTD
|
106
|
+
- begin: <span class="HtmlServersideIncludes">
|
107
|
+
end: </span>
|
108
|
+
selector: comment.other.server-side-include.xhtml, comment.other.server-side-include.html
|
109
|
+
- begin: <span class="HtmlTag">
|
110
|
+
end: </span>
|
111
|
+
selector: text.html declaration.tag, text.html meta.tag, text.html entity.name.tag.xhtml
|
112
|
+
- begin: <span class="HtmlAttribute">
|
113
|
+
end: </span>
|
114
|
+
selector: keyword.markup.attribute-name
|
115
|
+
- begin: <span class="PhpPhpdocs">
|
116
|
+
end: </span>
|
117
|
+
selector: keyword.other.phpdoc.php
|
118
|
+
- begin: <span class="PhpIncludeRequire">
|
119
|
+
end: </span>
|
120
|
+
selector: keyword.other.include.php
|
121
|
+
- begin: <span class="PhpConstantsCorePredefined">
|
122
|
+
end: </span>
|
123
|
+
selector: support.constant.core.php
|
124
|
+
- begin: <span class="PhpConstantsStandardPredefined">
|
125
|
+
end: </span>
|
126
|
+
selector: support.constant.std.php
|
127
|
+
- begin: <span class="PhpVariablesGlobals">
|
128
|
+
end: </span>
|
129
|
+
selector: variable.other.global.php
|
130
|
+
- begin: <span class="PhpVariablesSaferGlobals">
|
131
|
+
end: </span>
|
132
|
+
selector: variable.other.global.safer.php
|
133
|
+
- begin: <span class="PhpStringsSingleQuoted">
|
134
|
+
end: </span>
|
135
|
+
selector: string.quoted.single.php
|
136
|
+
- begin: <span class="PhpKeywordsStorage">
|
137
|
+
end: </span>
|
138
|
+
selector: keyword.storage.php
|
139
|
+
- begin: <span class="PhpStringsDoubleQuoted">
|
140
|
+
end: </span>
|
141
|
+
selector: string.quoted.double.php
|
142
|
+
- begin: <span class="CssSelectorsId">
|
143
|
+
end: </span>
|
144
|
+
selector: entity.other.attribute-name.id.css
|
145
|
+
- begin: <span class="CssSelectorsElements">
|
146
|
+
end: </span>
|
147
|
+
selector: entity.name.tag.css
|
148
|
+
- begin: <span class="CssSelectorsClassname">
|
149
|
+
end: </span>
|
150
|
+
selector: entity.other.attribute-name.class.css
|
151
|
+
- begin: <span class="CssSelectorsPseudoclass">
|
152
|
+
end: </span>
|
153
|
+
selector: entity.other.attribute-name.pseudo-class.css
|
154
|
+
- begin: <span class="CssInvalidComma">
|
155
|
+
end: </span>
|
156
|
+
selector: invalid.bad-comma.css
|
157
|
+
- begin: <span class="CssPropertyValue">
|
158
|
+
end: </span>
|
159
|
+
selector: support.constant.property-value.css
|
160
|
+
- begin: <span class="CssPropertyKeyword">
|
161
|
+
end: </span>
|
162
|
+
selector: support.type.property-name.css
|
163
|
+
- begin: <span class="CssPropertyColours">
|
164
|
+
end: </span>
|
165
|
+
selector: constant.other.rgb-value.css
|
166
|
+
- begin: <span class="CssFontNames">
|
167
|
+
end: </span>
|
168
|
+
selector: support.constant.font-name.css
|
169
|
+
- begin: <span class="TmlangdefKeys">
|
170
|
+
end: </span>
|
171
|
+
selector: support.constant.tm-language-def, support.constant.name.tm-language-def
|
172
|
+
- begin: <span class="CssUnits">
|
173
|
+
end: </span>
|
174
|
+
selector: keyword.other.unit.css
|
175
|
+
line-numbers:
|
176
|
+
begin: <span class="line-numbers">
|
177
|
+
end: </span>
|
@@ -0,0 +1,96 @@
|
|
1
|
+
---
|
2
|
+
name: Slush & Poppies
|
3
|
+
tags:
|
4
|
+
- begin: <span class="Comment">
|
5
|
+
end: </span>
|
6
|
+
selector: comment
|
7
|
+
- begin: <span class="String">
|
8
|
+
end: </span>
|
9
|
+
selector: string
|
10
|
+
- begin: <span class="Number">
|
11
|
+
end: </span>
|
12
|
+
selector: constant.numeric
|
13
|
+
- begin: <span class="OcamlFloatingPointConstants">
|
14
|
+
end: </span>
|
15
|
+
selector: source.ocaml constant.numeric.floating-point
|
16
|
+
- begin: <span class="CharacterConstants">
|
17
|
+
end: </span>
|
18
|
+
selector: constant.character
|
19
|
+
- begin: <span class="BuiltInConstant">
|
20
|
+
end: </span>
|
21
|
+
selector: constant.language
|
22
|
+
- begin: <span class="UserDefinedConstant">
|
23
|
+
end: </span>
|
24
|
+
selector: constant.character, constant.other
|
25
|
+
- begin: <span class="Variable">
|
26
|
+
end: </span>
|
27
|
+
selector: variable.parameter, variable.other
|
28
|
+
- begin: <span class="Keyword">
|
29
|
+
end: </span>
|
30
|
+
selector: keyword
|
31
|
+
- begin: <span class="Operators">
|
32
|
+
end: </span>
|
33
|
+
selector: keyword.operator
|
34
|
+
- begin: <span class="OcamlPrefixFPOperators">
|
35
|
+
end: </span>
|
36
|
+
selector: source.ocaml keyword.operator.symbol.prefix.floating-point
|
37
|
+
- begin: <span class="OcamlInfixFPOperators">
|
38
|
+
end: </span>
|
39
|
+
selector: source.ocaml keyword.operator.symbol.infix.floating-point
|
40
|
+
- begin: <span class="ModuleKeyword">
|
41
|
+
end: </span>
|
42
|
+
selector: entity.name.module, support.other.module
|
43
|
+
- begin: <span class="StorageTypes">
|
44
|
+
end: </span>
|
45
|
+
selector: storage.type
|
46
|
+
- begin: <span class="Storage">
|
47
|
+
end: </span>
|
48
|
+
selector: storage
|
49
|
+
- begin: <span class="VariantTypes">
|
50
|
+
end: </span>
|
51
|
+
selector: entity.name.class.variant
|
52
|
+
- begin: <span class="Directives">
|
53
|
+
end: </span>
|
54
|
+
selector: keyword.other.directive
|
55
|
+
- begin: <span class="LineNumberDirectives">
|
56
|
+
end: </span>
|
57
|
+
selector: source.ocaml keyword.other.directive.line-number
|
58
|
+
- begin: <span class="InheritedClass">
|
59
|
+
end: </span>
|
60
|
+
selector: entity.other.inherited-class
|
61
|
+
- begin: <span class="FunctionName">
|
62
|
+
end: </span>
|
63
|
+
selector: entity.name.function
|
64
|
+
- begin: <span class="TypeName">
|
65
|
+
end: </span>
|
66
|
+
selector: storage.type.user-defined
|
67
|
+
- begin: <span class="ClassTypeName">
|
68
|
+
end: </span>
|
69
|
+
selector: entity.name.type.class.type
|
70
|
+
- begin: <span class="FunctionArgument">
|
71
|
+
end: </span>
|
72
|
+
selector: variable.parameter
|
73
|
+
- begin: <span class="TagName">
|
74
|
+
end: </span>
|
75
|
+
selector: entity.name.tag
|
76
|
+
- begin: <span class="TagAttribute">
|
77
|
+
end: </span>
|
78
|
+
selector: entity.other.attribute-name
|
79
|
+
- begin: <span class="LibraryFunction">
|
80
|
+
end: </span>
|
81
|
+
selector: support.function
|
82
|
+
- begin: <span class="LibraryConstant">
|
83
|
+
end: </span>
|
84
|
+
selector: support.constant
|
85
|
+
- begin: <span class="LibraryClassType">
|
86
|
+
end: </span>
|
87
|
+
selector: support.type, support.class
|
88
|
+
- begin: <span class="LibraryVariable">
|
89
|
+
end: </span>
|
90
|
+
selector: support.variable
|
91
|
+
- begin: <span class="Invalid">
|
92
|
+
end: </span>
|
93
|
+
selector: invalid
|
94
|
+
line-numbers:
|
95
|
+
begin: <span class="line-numbers">
|
96
|
+
end: </span>
|
@@ -0,0 +1,54 @@
|
|
1
|
+
---
|
2
|
+
name: SpaceCadet
|
3
|
+
tags:
|
4
|
+
- begin: <span class="Comment">
|
5
|
+
end: </span>
|
6
|
+
selector: comment
|
7
|
+
- begin: <span class="String">
|
8
|
+
end: </span>
|
9
|
+
selector: string
|
10
|
+
- begin: <span class="Constant">
|
11
|
+
end: </span>
|
12
|
+
selector: constant
|
13
|
+
- begin: <span class="Variable">
|
14
|
+
end: </span>
|
15
|
+
selector: variable.parameter, variable.other
|
16
|
+
- begin: <span class="Keyword">
|
17
|
+
end: </span>
|
18
|
+
selector: keyword - keyword.operator, keyword.operator.logical
|
19
|
+
- begin: <span class="Storage">
|
20
|
+
end: </span>
|
21
|
+
selector: storage
|
22
|
+
- begin: <span class="Entity">
|
23
|
+
end: </span>
|
24
|
+
selector: entity
|
25
|
+
- begin: <span class="InheritedClass">
|
26
|
+
end: </span>
|
27
|
+
selector: entity.other.inherited-class
|
28
|
+
- begin: <span class="Support">
|
29
|
+
end: </span>
|
30
|
+
selector: support
|
31
|
+
- begin: <span class="Exception">
|
32
|
+
end: </span>
|
33
|
+
selector: support.type.exception
|
34
|
+
- begin: <span class="TagName">
|
35
|
+
end: </span>
|
36
|
+
selector: entity.name.tag
|
37
|
+
- begin: <span class="TagAttribute">
|
38
|
+
end: </span>
|
39
|
+
selector: entity.other.attribute-name
|
40
|
+
- begin: <span class="LibraryConstant">
|
41
|
+
end: </span>
|
42
|
+
selector: support.constant
|
43
|
+
- begin: <span class="LibraryClassType">
|
44
|
+
end: </span>
|
45
|
+
selector: support.type, support.class
|
46
|
+
- begin: <span class="LibraryVariable">
|
47
|
+
end: </span>
|
48
|
+
selector: support.other.variable
|
49
|
+
- begin: <span class="Invalid">
|
50
|
+
end: </span>
|
51
|
+
selector: invalid
|
52
|
+
line-numbers:
|
53
|
+
begin: <span class="line-numbers">
|
54
|
+
end: </span>
|
@@ -0,0 +1,159 @@
|
|
1
|
+
---
|
2
|
+
name: Sunburst
|
3
|
+
tags:
|
4
|
+
- begin: <span class="Comment">
|
5
|
+
end: </span>
|
6
|
+
selector: comment
|
7
|
+
- begin: <span class="Constant">
|
8
|
+
end: </span>
|
9
|
+
selector: constant
|
10
|
+
- begin: <span class="Entity">
|
11
|
+
end: </span>
|
12
|
+
selector: entity
|
13
|
+
- begin: <span class="Keyword">
|
14
|
+
end: </span>
|
15
|
+
selector: keyword
|
16
|
+
- begin: <span class="Storage">
|
17
|
+
end: </span>
|
18
|
+
selector: storage
|
19
|
+
- begin: <span class="String">
|
20
|
+
end: </span>
|
21
|
+
selector: string
|
22
|
+
- begin: <span class="Support">
|
23
|
+
end: </span>
|
24
|
+
selector: support
|
25
|
+
- begin: <span class="Variable">
|
26
|
+
end: </span>
|
27
|
+
selector: variable
|
28
|
+
- begin: <span class="InvalidDeprecated">
|
29
|
+
end: </span>
|
30
|
+
selector: invalid.deprecated
|
31
|
+
- begin: <span class="InvalidIllegal">
|
32
|
+
end: </span>
|
33
|
+
selector: invalid.illegal
|
34
|
+
- begin: <span class="EmbeddedSourceBright">
|
35
|
+
end: </span>
|
36
|
+
selector: text source
|
37
|
+
- begin: <span class="EntityInheritedClass">
|
38
|
+
end: </span>
|
39
|
+
selector: entity.other.inherited-class
|
40
|
+
- begin: <span class="StringEmbeddedSource">
|
41
|
+
end: </span>
|
42
|
+
selector: string.quoted source
|
43
|
+
- begin: <span class="StringConstant">
|
44
|
+
end: </span>
|
45
|
+
selector: string constant
|
46
|
+
- begin: <span class="StringRegexp">
|
47
|
+
end: </span>
|
48
|
+
selector: string.regexp
|
49
|
+
- begin: <span class="StringRegexpSpecial">
|
50
|
+
end: </span>
|
51
|
+
selector: string.regexp constant.character.escape, string.regexp source.ruby.embedded, string.regexp string.regexp.arbitrary-repitition
|
52
|
+
- begin: <span class="StringVariable">
|
53
|
+
end: </span>
|
54
|
+
selector: string variable
|
55
|
+
- begin: <span class="SupportFunction">
|
56
|
+
end: </span>
|
57
|
+
selector: support.function
|
58
|
+
- begin: <span class="SupportConstant">
|
59
|
+
end: </span>
|
60
|
+
selector: support.constant
|
61
|
+
- begin: <span class="CCCPreprocessorLine">
|
62
|
+
end: </span>
|
63
|
+
selector: meta.preprocessor.c
|
64
|
+
- begin: <span class="CCCPreprocessorDirective">
|
65
|
+
end: </span>
|
66
|
+
selector: meta.preprocessor.c keyword
|
67
|
+
- begin: <span class="JEntityNameType">
|
68
|
+
end: </span>
|
69
|
+
selector: entity.name.type
|
70
|
+
- begin: <span class="JCast">
|
71
|
+
end: </span>
|
72
|
+
selector: meta.cast
|
73
|
+
- begin: <span class="DoctypeXmlProcessing">
|
74
|
+
end: </span>
|
75
|
+
selector: meta.sgml.html meta.doctype, meta.sgml.html meta.doctype entity, meta.sgml.html meta.doctype string, meta.xml-processing, meta.xml-processing entity, meta.xml-processing string
|
76
|
+
- begin: <span class="MetaTagAll">
|
77
|
+
end: </span>
|
78
|
+
selector: meta.tag, meta.tag entity
|
79
|
+
- begin: <span class="MetaTagInline">
|
80
|
+
end: </span>
|
81
|
+
selector: source entity.name.tag, source entity.other.attribute-name, meta.tag.inline, meta.tag.inline entity
|
82
|
+
- begin: <span class="Namespaces">
|
83
|
+
end: </span>
|
84
|
+
selector: entity.name.tag.namespace, entity.other.attribute-name.namespace
|
85
|
+
- begin: <span class="CssTagName">
|
86
|
+
end: </span>
|
87
|
+
selector: meta.selector.css entity.name.tag
|
88
|
+
- begin: <span class="CssPseudoClass">
|
89
|
+
end: </span>
|
90
|
+
selector: meta.selector.css entity.other.attribute-name.tag.pseudo-class
|
91
|
+
- begin: <span class="CssId">
|
92
|
+
end: </span>
|
93
|
+
selector: meta.selector.css entity.other.attribute-name.id
|
94
|
+
- begin: <span class="CssClass">
|
95
|
+
end: </span>
|
96
|
+
selector: meta.selector.css entity.other.attribute-name.class
|
97
|
+
- begin: <span class="CssPropertyName">
|
98
|
+
end: </span>
|
99
|
+
selector: support.type.property-name.css
|
100
|
+
- begin: <span class="CssPropertyValue">
|
101
|
+
end: </span>
|
102
|
+
selector: meta.property-group support.constant.property-value.css, meta.property-value support.constant.property-value.css
|
103
|
+
- begin: <span class="CssAtRule">
|
104
|
+
end: </span>
|
105
|
+
selector: meta.preprocessor.at-rule keyword.control.at-rule
|
106
|
+
- begin: <span class="CssAdditionalConstants">
|
107
|
+
end: </span>
|
108
|
+
selector: meta.property-value support.constant.named-color.css, meta.property-value constant
|
109
|
+
- begin: <span class="CssConstructorArgument">
|
110
|
+
end: </span>
|
111
|
+
selector: meta.constructor.argument.css
|
112
|
+
- begin: <span class="DiffHeader">
|
113
|
+
end: </span>
|
114
|
+
selector: meta.diff, meta.diff.header
|
115
|
+
- begin: <span class="DiffDeleted">
|
116
|
+
end: </span>
|
117
|
+
selector: markup.deleted
|
118
|
+
- begin: <span class="DiffChanged">
|
119
|
+
end: </span>
|
120
|
+
selector: markup.changed
|
121
|
+
- begin: <span class="DiffInserted">
|
122
|
+
end: </span>
|
123
|
+
selector: markup.inserted
|
124
|
+
- begin: <span class="MarkupItalic">
|
125
|
+
end: </span>
|
126
|
+
selector: markup.italic
|
127
|
+
- begin: <span class="MarkupBold">
|
128
|
+
end: </span>
|
129
|
+
selector: markup.bold
|
130
|
+
- begin: <span class="MarkupUnderline">
|
131
|
+
end: </span>
|
132
|
+
selector: markup.underline
|
133
|
+
- begin: <span class="MarkupQuote">
|
134
|
+
end: </span>
|
135
|
+
selector: markup.quote
|
136
|
+
- begin: <span class="MarkupHeading">
|
137
|
+
end: </span>
|
138
|
+
selector: markup.heading, markup.heading entity
|
139
|
+
- begin: <span class="MarkupList">
|
140
|
+
end: </span>
|
141
|
+
selector: markup.list
|
142
|
+
- begin: <span class="MarkupRaw">
|
143
|
+
end: </span>
|
144
|
+
selector: markup.raw
|
145
|
+
- begin: <span class="MarkupComment">
|
146
|
+
end: </span>
|
147
|
+
selector: markup comment
|
148
|
+
- begin: <span class="MarkupSeparator">
|
149
|
+
end: </span>
|
150
|
+
selector: meta.separator
|
151
|
+
- begin: <span class="LogEntry">
|
152
|
+
end: </span>
|
153
|
+
selector: meta.line.entry.logfile, meta.line.exit.logfile
|
154
|
+
- begin: <span class="LogEntryError">
|
155
|
+
end: </span>
|
156
|
+
selector: meta.line.error.logfile
|
157
|
+
line-numbers:
|
158
|
+
begin: <span class="line-numbers">
|
159
|
+
end: </span>
|