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,88 @@
|
|
1
|
+
pre.zenburnesque .InheritedClass {
|
2
|
+
}
|
3
|
+
pre.zenburnesque .TypeName {
|
4
|
+
color: #FFE000;
|
5
|
+
}
|
6
|
+
pre.zenburnesque .FloatingPointPrefixOperators {
|
7
|
+
text-decoration: underline;
|
8
|
+
}
|
9
|
+
pre.zenburnesque .Number {
|
10
|
+
color: #22C0FF;
|
11
|
+
}
|
12
|
+
pre.zenburnesque .Directive {
|
13
|
+
font-weight: bold;
|
14
|
+
}
|
15
|
+
pre.zenburnesque .LibraryVariable {
|
16
|
+
}
|
17
|
+
pre.zenburnesque .Storage {
|
18
|
+
}
|
19
|
+
pre.zenburnesque .line-numbers {
|
20
|
+
background-color: #A0A0C0;
|
21
|
+
color: #DEDEDE;
|
22
|
+
}
|
23
|
+
pre.zenburnesque .LineNumberDirectives {
|
24
|
+
text-decoration: underline;
|
25
|
+
}
|
26
|
+
pre.zenburnesque .TagName {
|
27
|
+
}
|
28
|
+
pre.zenburnesque .StorageTypes {
|
29
|
+
color: #6080FF;
|
30
|
+
}
|
31
|
+
pre.zenburnesque .Operators {
|
32
|
+
color: #FFFFA0;
|
33
|
+
}
|
34
|
+
pre.zenburnesque {
|
35
|
+
background-color: #404040;
|
36
|
+
color: #DEDEDE;
|
37
|
+
}
|
38
|
+
pre.zenburnesque .LibraryConstant {
|
39
|
+
}
|
40
|
+
pre.zenburnesque .VariantTypes {
|
41
|
+
color: #4080A0;
|
42
|
+
}
|
43
|
+
pre.zenburnesque .Characters {
|
44
|
+
color: #FF8080;
|
45
|
+
}
|
46
|
+
pre.zenburnesque .FunctionArgument {
|
47
|
+
}
|
48
|
+
pre.zenburnesque .LanguageKeyword {
|
49
|
+
color: #FFFFA0;
|
50
|
+
}
|
51
|
+
pre.zenburnesque .BuiltInConstant {
|
52
|
+
}
|
53
|
+
pre.zenburnesque .FloatingPointNumbers {
|
54
|
+
text-decoration: underline;
|
55
|
+
}
|
56
|
+
pre.zenburnesque .ClassTypeName {
|
57
|
+
color: #F4A020;
|
58
|
+
}
|
59
|
+
pre.zenburnesque .ModuleKeyword {
|
60
|
+
font-weight: bold;
|
61
|
+
color: #FF8000;
|
62
|
+
}
|
63
|
+
pre.zenburnesque .Invalid {
|
64
|
+
}
|
65
|
+
pre.zenburnesque .LibraryClassType {
|
66
|
+
}
|
67
|
+
pre.zenburnesque .LibraryFunction {
|
68
|
+
}
|
69
|
+
pre.zenburnesque .TagAttribute {
|
70
|
+
}
|
71
|
+
pre.zenburnesque .FloatingPointInfixOperators {
|
72
|
+
text-decoration: underline;
|
73
|
+
}
|
74
|
+
pre.zenburnesque .UserDefinedConstant {
|
75
|
+
}
|
76
|
+
pre.zenburnesque .String {
|
77
|
+
color: #FF2020;
|
78
|
+
}
|
79
|
+
pre.zenburnesque .FunctionName {
|
80
|
+
font-weight: bold;
|
81
|
+
color: #FFCC66;
|
82
|
+
}
|
83
|
+
pre.zenburnesque .Variable {
|
84
|
+
}
|
85
|
+
pre.zenburnesque .Comment {
|
86
|
+
color: #709070;
|
87
|
+
font-style: italic;
|
88
|
+
}
|
@@ -0,0 +1,66 @@
|
|
1
|
+
---
|
2
|
+
name: IDLE
|
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="BuiltInConstant">
|
14
|
+
end: </span>
|
15
|
+
selector: constant.language
|
16
|
+
- begin: <span class="UserDefinedConstant">
|
17
|
+
end: </span>
|
18
|
+
selector: constant.character, constant.other
|
19
|
+
- begin: <span class="Variable">
|
20
|
+
end: </span>
|
21
|
+
selector: variable.language, variable.other
|
22
|
+
- begin: <span class="Keyword">
|
23
|
+
end: </span>
|
24
|
+
selector: keyword
|
25
|
+
- begin: <span class="Storage">
|
26
|
+
end: </span>
|
27
|
+
selector: storage
|
28
|
+
- begin: <span class="TypeName">
|
29
|
+
end: </span>
|
30
|
+
selector: entity.name.type
|
31
|
+
- begin: <span class="InheritedClass">
|
32
|
+
end: </span>
|
33
|
+
selector: entity.other.inherited-class
|
34
|
+
- begin: <span class="FunctionName">
|
35
|
+
end: </span>
|
36
|
+
selector: entity.name.function
|
37
|
+
- begin: <span class="FunctionArgument">
|
38
|
+
end: </span>
|
39
|
+
selector: variable.parameter
|
40
|
+
- begin: <span class="TagName">
|
41
|
+
end: </span>
|
42
|
+
selector: entity.name.tag
|
43
|
+
- begin: <span class="TagAttribute">
|
44
|
+
end: </span>
|
45
|
+
selector: entity.other.attribute-name
|
46
|
+
- begin: <span class="LibraryFunction">
|
47
|
+
end: </span>
|
48
|
+
selector: support.function
|
49
|
+
- begin: <span class="LibraryConstant">
|
50
|
+
end: </span>
|
51
|
+
selector: support.constant
|
52
|
+
- begin: <span class="LibraryClassType">
|
53
|
+
end: </span>
|
54
|
+
selector: support.type, support.class
|
55
|
+
- begin: <span class="LibraryVariable">
|
56
|
+
end: </span>
|
57
|
+
selector: support.variable
|
58
|
+
- begin: <span class="Invalid">
|
59
|
+
end: </span>
|
60
|
+
selector: invalid
|
61
|
+
- begin: <span class="StringInterpolation">
|
62
|
+
end: </span>
|
63
|
+
selector: constant.other.placeholder.py
|
64
|
+
line-numbers:
|
65
|
+
begin: <span class="line-numbers">
|
66
|
+
end: </span>
|
@@ -0,0 +1,72 @@
|
|
1
|
+
---
|
2
|
+
name: iPlastic
|
3
|
+
tags:
|
4
|
+
- begin: <span class="String">
|
5
|
+
end: </span>
|
6
|
+
selector: string
|
7
|
+
- begin: <span class="Number">
|
8
|
+
end: </span>
|
9
|
+
selector: constant.numeric
|
10
|
+
- begin: <span class="RegularExpression">
|
11
|
+
end: </span>
|
12
|
+
selector: string.regexp
|
13
|
+
- begin: <span class="Keyword">
|
14
|
+
end: </span>
|
15
|
+
selector: keyword
|
16
|
+
- begin: <span class="Identifier">
|
17
|
+
end: </span>
|
18
|
+
selector: constant.language
|
19
|
+
- begin: <span class="Exception">
|
20
|
+
end: </span>
|
21
|
+
selector: support.class.exception
|
22
|
+
- begin: <span class="FunctionName">
|
23
|
+
end: </span>
|
24
|
+
selector: entity.name.function
|
25
|
+
- begin: <span class="TypeName">
|
26
|
+
end: </span>
|
27
|
+
selector: entity.name.type
|
28
|
+
- begin: <span class="Arguments">
|
29
|
+
end: </span>
|
30
|
+
selector: variable.parameter
|
31
|
+
- begin: <span class="Comment">
|
32
|
+
end: </span>
|
33
|
+
selector: comment
|
34
|
+
- begin: <span class="Invalid">
|
35
|
+
end: </span>
|
36
|
+
selector: invalid
|
37
|
+
- begin: <span class="TrailingWhitespace">
|
38
|
+
end: </span>
|
39
|
+
selector: invalid.deprecated.trailing-whitespace
|
40
|
+
- begin: <span class="EmbeddedSource">
|
41
|
+
end: </span>
|
42
|
+
selector: text source
|
43
|
+
- begin: <span class="Tag">
|
44
|
+
end: </span>
|
45
|
+
selector: meta.tag, declaration.tag
|
46
|
+
- begin: <span class="Constant">
|
47
|
+
end: </span>
|
48
|
+
selector: constant, support.constant
|
49
|
+
- begin: <span class="Support">
|
50
|
+
end: </span>
|
51
|
+
selector: support
|
52
|
+
- begin: <span class="Storage">
|
53
|
+
end: </span>
|
54
|
+
selector: storage
|
55
|
+
- begin: <span class="SectionName">
|
56
|
+
end: </span>
|
57
|
+
selector: entity.name.section
|
58
|
+
- begin: <span class="FrameTitle">
|
59
|
+
end: </span>
|
60
|
+
selector: entity.name.function.frame
|
61
|
+
- begin: <span class="XmlDeclaration">
|
62
|
+
end: </span>
|
63
|
+
selector: meta.tag.preprocessor.xml
|
64
|
+
- begin: <span class="TagAttribute">
|
65
|
+
end: </span>
|
66
|
+
selector: entity.other.attribute-name
|
67
|
+
- begin: <span class="TagName">
|
68
|
+
end: </span>
|
69
|
+
selector: entity.name.tag
|
70
|
+
line-numbers:
|
71
|
+
begin: <span class="line-numbers">
|
72
|
+
end: </span>
|
@@ -0,0 +1,69 @@
|
|
1
|
+
---
|
2
|
+
name: LAZY
|
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="LatexEntity">
|
14
|
+
end: </span>
|
15
|
+
selector: text.tex.latex entity
|
16
|
+
- begin: <span class="Keyword">
|
17
|
+
end: </span>
|
18
|
+
selector: keyword, storage
|
19
|
+
- begin: <span class="String">
|
20
|
+
end: </span>
|
21
|
+
selector: string, meta.verbatim
|
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="Superclass">
|
35
|
+
end: </span>
|
36
|
+
selector: entity.other.inherited-class
|
37
|
+
- begin: <span class="StringInterpolation">
|
38
|
+
end: </span>
|
39
|
+
selector: string constant.other.placeholder
|
40
|
+
- begin: <span class="MetaFunctionCallPy">
|
41
|
+
end: </span>
|
42
|
+
selector: meta.function-call.py
|
43
|
+
- begin: <span class="MetaTag">
|
44
|
+
end: </span>
|
45
|
+
selector: meta.tag, meta.tag entity
|
46
|
+
- begin: <span class="OcamlVariant">
|
47
|
+
end: </span>
|
48
|
+
selector: keyword.type.variant
|
49
|
+
- begin: <span class="OcamlOperator">
|
50
|
+
end: </span>
|
51
|
+
selector: source.ocaml keyword.operator
|
52
|
+
- begin: <span class="OcamlInfixOperator">
|
53
|
+
end: </span>
|
54
|
+
selector: source.ocaml keyword.operator.symbol.infix
|
55
|
+
- begin: <span class="OcamlPrefixOperator">
|
56
|
+
end: </span>
|
57
|
+
selector: source.ocaml keyword.operator.symbol.prefix
|
58
|
+
- begin: <span class="OcamlInfixFPOperator">
|
59
|
+
end: </span>
|
60
|
+
selector: source.ocaml keyword.operator.symbol.infix.floating-point
|
61
|
+
- begin: <span class="OcamlPrefixFPOperator">
|
62
|
+
end: </span>
|
63
|
+
selector: source.ocaml keyword.operator.symbol.prefix.floating-point
|
64
|
+
- begin: <span class="OcamlFPConstant">
|
65
|
+
end: </span>
|
66
|
+
selector: source.ocaml constant.numeric.floating-point
|
67
|
+
line-numbers:
|
68
|
+
begin: <span class="line-numbers">
|
69
|
+
end: </span>
|
@@ -0,0 +1,108 @@
|
|
1
|
+
---
|
2
|
+
name: Mac Classic
|
3
|
+
tags:
|
4
|
+
- begin: <span class="Comment">
|
5
|
+
end: </span>
|
6
|
+
selector: comment
|
7
|
+
- begin: <span class="Keyword">
|
8
|
+
end: </span>
|
9
|
+
selector: keyword, storage
|
10
|
+
- begin: <span class="Number">
|
11
|
+
end: </span>
|
12
|
+
selector: constant.numeric
|
13
|
+
- begin: <span class="UserDefinedConstant">
|
14
|
+
end: </span>
|
15
|
+
selector: constant
|
16
|
+
- begin: <span class="BuiltInConstant">
|
17
|
+
end: </span>
|
18
|
+
selector: constant.language
|
19
|
+
- begin: <span class="Variable">
|
20
|
+
end: </span>
|
21
|
+
selector: variable.language, variable.other
|
22
|
+
- begin: <span class="String">
|
23
|
+
end: </span>
|
24
|
+
selector: string
|
25
|
+
- begin: <span class="StringInterpolation">
|
26
|
+
end: </span>
|
27
|
+
selector: constant.character.escape, string source
|
28
|
+
- begin: <span class="PreprocessorLine">
|
29
|
+
end: </span>
|
30
|
+
selector: meta.preprocessor
|
31
|
+
- begin: <span class="PreprocessorDirective">
|
32
|
+
end: </span>
|
33
|
+
selector: keyword.control.import
|
34
|
+
- begin: <span class="FunctionName">
|
35
|
+
end: </span>
|
36
|
+
selector: entity.name.function, keyword.other.name-of-parameter.objc
|
37
|
+
- begin: <span class="TypeName">
|
38
|
+
end: </span>
|
39
|
+
selector: entity.name.type
|
40
|
+
- begin: <span class="InheritedClassName">
|
41
|
+
end: </span>
|
42
|
+
selector: entity.other.inherited-class
|
43
|
+
- begin: <span class="FunctionParameter">
|
44
|
+
end: </span>
|
45
|
+
selector: variable.parameter
|
46
|
+
- begin: <span class="FunctionArgumentAndResultTypes">
|
47
|
+
end: </span>
|
48
|
+
selector: storage.type.method
|
49
|
+
- begin: <span class="Section">
|
50
|
+
end: </span>
|
51
|
+
selector: meta.section entity.name.section, declaration.section entity.name.section
|
52
|
+
- begin: <span class="LibraryFunction">
|
53
|
+
end: </span>
|
54
|
+
selector: support.function
|
55
|
+
- begin: <span class="LibraryObject">
|
56
|
+
end: </span>
|
57
|
+
selector: support.class, support.type
|
58
|
+
- begin: <span class="LibraryConstant">
|
59
|
+
end: </span>
|
60
|
+
selector: support.constant
|
61
|
+
- begin: <span class="LibraryVariable">
|
62
|
+
end: </span>
|
63
|
+
selector: support.variable
|
64
|
+
- begin: <span class="JsOperator">
|
65
|
+
end: </span>
|
66
|
+
selector: keyword.operator.js
|
67
|
+
- begin: <span class="Invalid">
|
68
|
+
end: </span>
|
69
|
+
selector: invalid
|
70
|
+
- begin: <span class="InvalidTrailingWhitespace">
|
71
|
+
end: </span>
|
72
|
+
selector: invalid.deprecated.trailing-whitespace
|
73
|
+
- begin: <span class="EmbeddedSource">
|
74
|
+
end: </span>
|
75
|
+
selector: text source, string.unquoted
|
76
|
+
- begin: <span class="EmbeddedEmbeddedSource">
|
77
|
+
end: </span>
|
78
|
+
selector: text source string.unquoted, text source text source
|
79
|
+
- begin: <span class="MarkupXmlDeclaration">
|
80
|
+
end: </span>
|
81
|
+
selector: meta.tag.preprocessor.xml
|
82
|
+
- begin: <span class="MarkupDoctype">
|
83
|
+
end: </span>
|
84
|
+
selector: meta.tag.sgml.doctype, meta.tag.sgml.doctype entity, meta.tag.sgml.doctype string, meta.tag.preprocessor.xml, meta.tag.preprocessor.xml entity, meta.tag.preprocessor.xml string
|
85
|
+
- begin: <span class="MarkupDtd">
|
86
|
+
end: </span>
|
87
|
+
selector: string.quoted.docinfo.doctype.DTD
|
88
|
+
- begin: <span class="MarkupTag">
|
89
|
+
end: </span>
|
90
|
+
selector: meta.tag, declaration.tag
|
91
|
+
- begin: <span class="MarkupNameOfTag">
|
92
|
+
end: </span>
|
93
|
+
selector: entity.name.tag
|
94
|
+
- begin: <span class="MarkupTagAttribute">
|
95
|
+
end: </span>
|
96
|
+
selector: entity.other.attribute-name
|
97
|
+
- begin: <span class="MarkupHeading">
|
98
|
+
end: </span>
|
99
|
+
selector: markup.heading
|
100
|
+
- begin: <span class="MarkupQuote">
|
101
|
+
end: </span>
|
102
|
+
selector: markup.quote
|
103
|
+
- begin: <span class="MarkupList">
|
104
|
+
end: </span>
|
105
|
+
selector: markup.list
|
106
|
+
line-numbers:
|
107
|
+
begin: <span class="line-numbers">
|
108
|
+
end: </span>
|
@@ -0,0 +1,90 @@
|
|
1
|
+
---
|
2
|
+
name: MagicWB (Amiga)
|
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="ConstantBuiltIn">
|
14
|
+
end: </span>
|
15
|
+
selector: constant.language
|
16
|
+
- begin: <span class="ConstantUserDefined">
|
17
|
+
end: </span>
|
18
|
+
selector: constant.character, constant.other
|
19
|
+
- begin: <span class="Variable">
|
20
|
+
end: </span>
|
21
|
+
selector: variable.language, variable.other
|
22
|
+
- begin: <span class="Keyword">
|
23
|
+
end: </span>
|
24
|
+
selector: keyword
|
25
|
+
- begin: <span class="Storage">
|
26
|
+
end: </span>
|
27
|
+
selector: storage
|
28
|
+
- begin: <span class="TypeName">
|
29
|
+
end: </span>
|
30
|
+
selector: entity.name.type
|
31
|
+
- begin: <span class="InheritedClass">
|
32
|
+
end: </span>
|
33
|
+
selector: entity.other.inherited-class
|
34
|
+
- begin: <span class="FunctionName">
|
35
|
+
end: </span>
|
36
|
+
selector: entity.name.function
|
37
|
+
- begin: <span class="FunctionArgument">
|
38
|
+
end: </span>
|
39
|
+
selector: variable.parameter
|
40
|
+
- begin: <span class="EntityName">
|
41
|
+
end: </span>
|
42
|
+
selector: entity.name
|
43
|
+
- begin: <span class="TagAttribute">
|
44
|
+
end: </span>
|
45
|
+
selector: entity.other.attribute-name
|
46
|
+
- begin: <span class="LibraryFunction">
|
47
|
+
end: </span>
|
48
|
+
selector: support.function
|
49
|
+
- begin: <span class="ObjectiveCMethodCall">
|
50
|
+
end: </span>
|
51
|
+
selector: support.function.any-method
|
52
|
+
- begin: <span class="ObjectiveCMethodCall">
|
53
|
+
end: </span>
|
54
|
+
selector: support.function.any-method - punctuation
|
55
|
+
- begin: <span class="LibraryConstant">
|
56
|
+
end: </span>
|
57
|
+
selector: support.constant
|
58
|
+
- begin: <span class="LibraryClassType">
|
59
|
+
end: </span>
|
60
|
+
selector: support.type, support.class
|
61
|
+
- begin: <span class="LibraryVariable">
|
62
|
+
end: </span>
|
63
|
+
selector: support.variable
|
64
|
+
- begin: <span class="Invalid">
|
65
|
+
end: </span>
|
66
|
+
selector: invalid
|
67
|
+
- begin: <span class="IncludeSystem">
|
68
|
+
end: </span>
|
69
|
+
selector: string.quoted.other.lt-gt.include
|
70
|
+
- begin: <span class="IncludeUser">
|
71
|
+
end: </span>
|
72
|
+
selector: string.quoted.double.include
|
73
|
+
- begin: <span class="MarkupListItem">
|
74
|
+
end: </span>
|
75
|
+
selector: markup.list
|
76
|
+
- begin: <span class="MarkupRaw">
|
77
|
+
end: </span>
|
78
|
+
selector: markup.raw
|
79
|
+
- begin: <span class="MarkupQuoteEmail">
|
80
|
+
end: </span>
|
81
|
+
selector: markup.quote
|
82
|
+
- begin: <span class="MarkupQuoteDoubleEmail">
|
83
|
+
end: </span>
|
84
|
+
selector: markup.quote markup.quote
|
85
|
+
- begin: <span class="EmbeddedSource">
|
86
|
+
end: </span>
|
87
|
+
selector: text.html source
|
88
|
+
line-numbers:
|
89
|
+
begin: <span class="line-numbers">
|
90
|
+
end: </span>
|