devver-ultraviolet 0.10.5
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +25 -0
- data/Manifest.txt +233 -0
- data/README.txt +52 -0
- data/bin/theme2latexrender +122 -0
- data/bin/theme2xhtmlrender +156 -0
- data/bin/uv +140 -0
- data/lib/uv.rb +94 -0
- data/lib/uv/render_processor.rb +146 -0
- data/lib/uv/utility.rb +67 -0
- data/render/latex/active4d.render +132 -0
- data/render/latex/all_hallows_eve.render +96 -0
- data/render/latex/amy.render +171 -0
- data/render/latex/blackboard.render +111 -0
- data/render/latex/brilliance_black.render +552 -0
- data/render/latex/brilliance_dull.render +561 -0
- data/render/latex/cobalt.render +162 -0
- data/render/latex/dawn.render +126 -0
- data/render/latex/eiffel.render +132 -0
- data/render/latex/espresso_libre.render +123 -0
- data/render/latex/idle.render +93 -0
- data/render/latex/iplastic.render +99 -0
- data/render/latex/lazy.render +96 -0
- data/render/latex/mac_classic.render +135 -0
- data/render/latex/magicwb_amiga.render +117 -0
- data/render/latex/pastels_on_dark.render +204 -0
- data/render/latex/slush_poppies.render +123 -0
- data/render/latex/spacecadet.render +81 -0
- data/render/latex/sunburst.render +186 -0
- data/render/latex/twilight.render +153 -0
- data/render/latex/zenburnesque.render +126 -0
- data/render/old/txt2tags.render +131 -0
- data/render/xhtml/active4d.render +140 -0
- data/render/xhtml/all_hallows_eve.render +104 -0
- data/render/xhtml/amy.render +179 -0
- data/render/xhtml/blackboard.render +119 -0
- data/render/xhtml/brilliance_black.render +560 -0
- data/render/xhtml/brilliance_dull.render +569 -0
- data/render/xhtml/cobalt.render +170 -0
- data/render/xhtml/dawn.render +134 -0
- data/render/xhtml/eiffel.render +140 -0
- data/render/xhtml/espresso_libre.render +131 -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 +147 -0
- data/render/xhtml/files/css/blackboard.css +88 -0
- data/render/xhtml/files/css/brilliance_black.css +605 -0
- data/render/xhtml/files/css/brilliance_dull.css +599 -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 +104 -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 +91 -0
- data/render/xhtml/idle.render +101 -0
- data/render/xhtml/iplastic.render +107 -0
- data/render/xhtml/lazy.render +104 -0
- data/render/xhtml/mac_classic.render +143 -0
- data/render/xhtml/magicwb_amiga.render +125 -0
- data/render/xhtml/pastels_on_dark.render +212 -0
- data/render/xhtml/slush_poppies.render +131 -0
- data/render/xhtml/spacecadet.render +89 -0
- data/render/xhtml/sunburst.render +194 -0
- data/render/xhtml/twilight.render +161 -0
- data/render/xhtml/zenburnesque.render +134 -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 +151 -0
- data/syntax/apache.syntax +191 -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/build.syntax +53 -0
- data/syntax/bulletin_board.syntax +287 -0
- data/syntax/cake.syntax +55 -0
- data/syntax/camlp4.syntax +36 -0
- data/syntax/cm.syntax +32 -0
- data/syntax/coldfusion.syntax +119 -0
- data/syntax/context_free.syntax +176 -0
- data/syntax/cs.syntax +59 -0
- data/syntax/css.syntax +195 -0
- data/syntax/css_experimental.syntax +1925 -0
- data/syntax/csv.syntax +68 -0
- data/syntax/d.syntax +142 -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 +191 -0
- data/syntax/gtd.syntax +22 -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 +55 -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 +256 -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 +708 -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 +163 -0
- data/syntax/makefile.syntax +36 -0
- data/syntax/man.syntax +17 -0
- data/syntax/mediawiki.syntax +567 -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 +233 -0
- data/syntax/ocaml.syntax +764 -0
- data/syntax/ocamllex.syntax +167 -0
- data/syntax/ocamlyacc.syntax +184 -0
- data/syntax/opengl.syntax +14 -0
- data/syntax/pascal.syntax +77 -0
- data/syntax/perl.syntax +1115 -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 +635 -0
- data/syntax/python.syntax +868 -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/release_notes.syntax +46 -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/sql.syntax +237 -0
- data/syntax/sql_rails.syntax +18 -0
- data/syntax/ssh-config.syntax +33 -0
- data/syntax/standard_ml.syntax +121 -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 +180 -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
- metadata +310 -0
@@ -0,0 +1,50 @@
|
|
1
|
+
---
|
2
|
+
name: Active4D Config
|
3
|
+
fileTypes:
|
4
|
+
- ini
|
5
|
+
scopeName: text.active4d-ini
|
6
|
+
repository:
|
7
|
+
escaped_char:
|
8
|
+
name: constant.character.escape.active4d-ini
|
9
|
+
match: \\.
|
10
|
+
uuid: BECA5580-F845-4715-889C-134DF4BF67C2
|
11
|
+
patterns:
|
12
|
+
- name: comment.line.double-slash.active4d-ini
|
13
|
+
captures:
|
14
|
+
"1":
|
15
|
+
name: punctuation.definition.comment.active4d-ini
|
16
|
+
match: (//).*$\n?
|
17
|
+
- name: comment.line.backtick.active4d-ini
|
18
|
+
captures:
|
19
|
+
"1":
|
20
|
+
name: punctuation.definition.comment.active4d-ini
|
21
|
+
match: (`).*$\n?
|
22
|
+
- name: comment.line.double-backslash.continuation.active4d-ini
|
23
|
+
captures:
|
24
|
+
"1":
|
25
|
+
name: punctuation.definition.comment.active4d-ini
|
26
|
+
match: (\\\\).*$\n?
|
27
|
+
- name: comment.block.active4d-ini
|
28
|
+
captures:
|
29
|
+
"0":
|
30
|
+
name: punctuation.definition.comment.active4d-ini
|
31
|
+
begin: /\*
|
32
|
+
end: \*/
|
33
|
+
- name: string.quoted.double.active4d-ini
|
34
|
+
endCaptures:
|
35
|
+
"0":
|
36
|
+
name: punctuation.definition.string.end.active4d-ini
|
37
|
+
begin: "\"(?!\"\")"
|
38
|
+
beginCaptures:
|
39
|
+
"0":
|
40
|
+
name: punctuation.definition.string.begin.active4d-ini
|
41
|
+
end: "\""
|
42
|
+
patterns:
|
43
|
+
- include: "#escaped_char"
|
44
|
+
- name: constant.language.boolean.active4d-ini
|
45
|
+
match: \b(?i)(true|false|yes|no)\b
|
46
|
+
- name: keyword.operator.active4d-ini
|
47
|
+
match: "="
|
48
|
+
- name: support.constant.active4d-ini
|
49
|
+
match: (?i)((\b(use sessions|use session cookies|session var name|session timeout|session purge interval|session cookie path|session cookie name|session cookie domain|serve nonexecutables|script timeout|safe script dirs|safe doc dirs|root|refresh interval|receive timeout|platform charset|parameter mode|output encoding|output charset|max request size|log level|lib extension|lib dirs|http error page|fusebox page|expires|executable extensions|error page|default page|content charset|client is web server|cache control|auto relate one|auto relate many|auto refresh libs|auto create vars)\b)|(\<default\>|\<web\>|\<4d volume\>|\<boot volume\>))
|
50
|
+
keyEquivalent: ^~A
|
@@ -0,0 +1,21 @@
|
|
1
|
+
---
|
2
|
+
name: Active4D Library
|
3
|
+
fileTypes:
|
4
|
+
- a4l
|
5
|
+
scopeName: source.active4d.library
|
6
|
+
uuid: A595B09A-3829-48CB-958B-7D6C4646409D
|
7
|
+
foldingStartMarker: |-
|
8
|
+
(?x)
|
9
|
+
(^\s*(?i:if|while|for\ each|for|case\ of|repeat|method)\b
|
10
|
+
|^\s*<fusedoc\ fuse
|
11
|
+
)
|
12
|
+
patterns:
|
13
|
+
- name: keyword.other.active4d
|
14
|
+
match: (?i:end library|library)
|
15
|
+
- include: source.active4d
|
16
|
+
foldingStopMarker: |-
|
17
|
+
(?x)
|
18
|
+
(^\s*(?i:end\ (if|while|for\ each|for|case|method)|until)\b
|
19
|
+
|^\s*</fusedoc>
|
20
|
+
)
|
21
|
+
keyEquivalent: ^~A
|
data/syntax/ada.syntax
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
name: Ada
|
3
|
+
fileTypes:
|
4
|
+
- adb
|
5
|
+
- ads
|
6
|
+
scopeName: source.ada
|
7
|
+
uuid: 0AB8A36E-6B1D-11D9-B034-000D93589AF6
|
8
|
+
foldingStartMarker: \b(?i:(procedure|package|function|task|type|loop))\b
|
9
|
+
patterns:
|
10
|
+
- name: keyword.control.ada
|
11
|
+
match: \b(?i:(abort|else|new|return|abs|elsif|not|reverse|abstract|end|null|accept|entry|select|access|exception|of|separate|aliased|exit|or|subtype|all|others|and|for|out|tagged|array|function|task|at|package|terminate|generic|pragma|then|begin|goto|private|type|body|procedure|if|protected|until|case|in|use|constant|is|raise|range|when|declare|limited|record|while|delay|loop|rem|with|delta|renames|digits|mod|requeue|xor|do))\b
|
12
|
+
- name: constant.numeric.ada
|
13
|
+
match: \b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\.?[0-9]*)|(\.[0-9]+))((e|E)(\+|-)?[0-9]+)?)(L|l|UL|ul|u|U|F|f|ll|LL|ull|ULL)?\b
|
14
|
+
- name: string.quoted.double.ada
|
15
|
+
endCaptures:
|
16
|
+
"0":
|
17
|
+
name: punctuation.definition.string.end.ada
|
18
|
+
begin: "\""
|
19
|
+
beginCaptures:
|
20
|
+
"0":
|
21
|
+
name: punctuation.definition.string.begin.ada
|
22
|
+
end: "\""
|
23
|
+
patterns:
|
24
|
+
- name: invalid.illegal.lf-in-string.ada
|
25
|
+
match: \n
|
26
|
+
- name: comment.line.double-dash.ada
|
27
|
+
captures:
|
28
|
+
"1":
|
29
|
+
name: punctuation.definition.comment.ada
|
30
|
+
match: (--)(.*)$\n?
|
31
|
+
foldingStopMarker: \b(?i:(end))\b
|
32
|
+
keyEquivalent: ^~A
|
33
|
+
comment: Ada -- chris@cjack.com. Feel free to modify, distribute, be happy. Share and enjoy.
|
data/syntax/antlr.syntax
ADDED
@@ -0,0 +1,151 @@
|
|
1
|
+
---
|
2
|
+
name: ANTLR
|
3
|
+
fileTypes:
|
4
|
+
- g
|
5
|
+
scopeName: source.antlr
|
6
|
+
repository:
|
7
|
+
nested-curly:
|
8
|
+
name: source.embedded.java-or-c.antlr
|
9
|
+
captures:
|
10
|
+
"0":
|
11
|
+
name: punctuation.section.group.antlr
|
12
|
+
begin: \{
|
13
|
+
end: \}
|
14
|
+
patterns:
|
15
|
+
- name: keyword.control.java-or-c
|
16
|
+
match: \b(break|case|continue|default|do|else|for|goto|if|_Pragma|return|switch|while)\b
|
17
|
+
- name: storage.type.java-or-c
|
18
|
+
match: \b(asm|__asm__|auto|bool|_Bool|char|_Complex|double|enum|float|_Imaginary|int|long|short|signed|struct|typedef|union|unsigned|void)\b
|
19
|
+
- name: storage.modifier.java-or-c
|
20
|
+
match: \b(const|extern|register|restrict|static|volatile|inline)\b
|
21
|
+
- name: constant.language.java-or-c
|
22
|
+
match: \b(NULL|true|false|TRUE|FALSE)\b
|
23
|
+
- name: keyword.operator.sizeof.java-or-c
|
24
|
+
match: \b(sizeof)\b
|
25
|
+
- name: constant.numeric.java-or-c
|
26
|
+
match: \b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\.?[0-9]*)|(\.[0-9]+))((e|E)(\+|-)?[0-9]+)?)(L|l|UL|ul|u|U|F|f|ll|LL|ull|ULL)?\b
|
27
|
+
- name: string.quoted.double.java-or-c
|
28
|
+
endCaptures:
|
29
|
+
"0":
|
30
|
+
name: punctuation.definition.string.end.java-or-c
|
31
|
+
begin: "\""
|
32
|
+
beginCaptures:
|
33
|
+
"0":
|
34
|
+
name: punctuation.definition.string.begin.java-or-c
|
35
|
+
end: "\""
|
36
|
+
patterns:
|
37
|
+
- name: constant.character.escape.antlr
|
38
|
+
match: \\.
|
39
|
+
- name: string.quoted.single.java-or-c
|
40
|
+
endCaptures:
|
41
|
+
"0":
|
42
|
+
name: punctuation.definition.string.end.java-or-c
|
43
|
+
begin: "'"
|
44
|
+
beginCaptures:
|
45
|
+
"0":
|
46
|
+
name: punctuation.definition.string.begin.java-or-c
|
47
|
+
end: "'"
|
48
|
+
patterns:
|
49
|
+
- name: constant.character.escape.antlr
|
50
|
+
match: \\.
|
51
|
+
- name: support.constant.eof-char.antlr
|
52
|
+
match: \bEOF_CHAR\b
|
53
|
+
- include: "#comments"
|
54
|
+
comments:
|
55
|
+
patterns:
|
56
|
+
- name: comment.block.antlr
|
57
|
+
captures:
|
58
|
+
"0":
|
59
|
+
name: punctuation.definition.comment.antlr
|
60
|
+
begin: /\*
|
61
|
+
end: \*/
|
62
|
+
- name: comment.line.double-slash.antlr
|
63
|
+
captures:
|
64
|
+
"1":
|
65
|
+
name: punctuation.definition.comment.antlr
|
66
|
+
match: (//).*$\n?
|
67
|
+
strings:
|
68
|
+
patterns:
|
69
|
+
- name: string.quoted.double.antlr
|
70
|
+
endCaptures:
|
71
|
+
"0":
|
72
|
+
name: punctuation.definition.string.end.antlr
|
73
|
+
begin: "\""
|
74
|
+
beginCaptures:
|
75
|
+
"0":
|
76
|
+
name: punctuation.definition.string.begin.antlr
|
77
|
+
end: "\""
|
78
|
+
patterns:
|
79
|
+
- name: constant.character.escape.antlr
|
80
|
+
match: \\(u\h{4}|.)
|
81
|
+
- name: string.quoted.single.antlr
|
82
|
+
endCaptures:
|
83
|
+
"0":
|
84
|
+
name: punctuation.definition.string.end.antlr
|
85
|
+
begin: "'"
|
86
|
+
beginCaptures:
|
87
|
+
"0":
|
88
|
+
name: punctuation.definition.string.begin.antlr
|
89
|
+
end: "'"
|
90
|
+
patterns:
|
91
|
+
- name: constant.character.escape.antlr
|
92
|
+
match: \\(u\h{4}|.)
|
93
|
+
uuid: ACABDECD-4F22-47D9-A5F4-DBA957A2A1CC
|
94
|
+
patterns:
|
95
|
+
- include: "#strings"
|
96
|
+
- include: "#comments"
|
97
|
+
- name: meta.options.antlr
|
98
|
+
begin: \boptions\b
|
99
|
+
beginCaptures:
|
100
|
+
"0":
|
101
|
+
name: keyword.other.options.antlr
|
102
|
+
end: (?<=\})
|
103
|
+
patterns:
|
104
|
+
- name: meta.options-block.antlr
|
105
|
+
captures:
|
106
|
+
"0":
|
107
|
+
name: punctuation.section.options.antlr
|
108
|
+
begin: \{
|
109
|
+
end: \}
|
110
|
+
patterns:
|
111
|
+
- include: "#strings"
|
112
|
+
- include: "#comments"
|
113
|
+
- name: constant.numeric.antlr
|
114
|
+
match: \b\d+\b
|
115
|
+
- name: variable.other.option.antlr
|
116
|
+
match: \b(k|charVocabulary|filter|greedy|paraphrase|exportVocab|buildAST|defaultErrorHandler|language|namespace|namespaceStd|namespaceAntlr|genHashLines)\b
|
117
|
+
- name: constant.language.boolean.antlr
|
118
|
+
match: \b(true|false)\b
|
119
|
+
- name: meta.definition.class.antlr
|
120
|
+
captures:
|
121
|
+
"1":
|
122
|
+
name: storage.type.antlr
|
123
|
+
"2":
|
124
|
+
name: entity.name.type.class.antlr
|
125
|
+
begin: ^(class)\b\s+(\w+)
|
126
|
+
end: ;
|
127
|
+
patterns:
|
128
|
+
- name: meta.definition.class.extends.antlr
|
129
|
+
captures:
|
130
|
+
"1":
|
131
|
+
name: storage.modifier.antlr
|
132
|
+
begin: \b(extends)\b\s+
|
133
|
+
end: (?=;)
|
134
|
+
patterns:
|
135
|
+
- name: support.class.antlr
|
136
|
+
match: \b(Parser|Lexer|TreeWalker)\b
|
137
|
+
- name: storage.modifier.antlr
|
138
|
+
match: ^protected\b
|
139
|
+
- name: entity.name.type.token.antlr
|
140
|
+
match: ^[[:upper:]_][[:upper:][:digit:]_]*\b
|
141
|
+
- name: meta.rule.antlr
|
142
|
+
captures:
|
143
|
+
"1":
|
144
|
+
name: entity.name.function.rule.antlr
|
145
|
+
"2":
|
146
|
+
name: keyword.control.antlr
|
147
|
+
match: ^(\w+)(?:\s+(returns\b))?
|
148
|
+
- name: constant.other.token.antlr
|
149
|
+
match: \b[[:upper:]_][[:upper:][:digit:]_]*\b
|
150
|
+
- include: "#nested-curly"
|
151
|
+
keyEquivalent: ^~A
|
@@ -0,0 +1,191 @@
|
|
1
|
+
---
|
2
|
+
name: Apache
|
3
|
+
fileTypes:
|
4
|
+
- conf
|
5
|
+
- htaccess
|
6
|
+
scopeName: source.apache-config
|
7
|
+
repository:
|
8
|
+
vars:
|
9
|
+
patterns:
|
10
|
+
- name: support.variable.apache-config
|
11
|
+
captures:
|
12
|
+
"1":
|
13
|
+
name: punctuation.definition.variable.apache-config
|
14
|
+
"3":
|
15
|
+
name: punctuation.definition.variable.apache-config
|
16
|
+
match: (%\{)(?:HTTP_(?:USER_AGENT|REFERER|COOKIE|FORWARDED|HOST|PROXY_CONNECTION|ACCEPT)|REMOTE_(?:ADDR|HOST|USER|IDENT)|REQUEST_(?:METHOD|URI|FILENAME)|SCRIPT_FILENAME|PATH_INFO|QUERY_STRING|AUTH_TYPE|DOCUMENT_ROOT|SERVER_(?:ADMIN|NAME|ADDR|PORT|PROTOCOL|SOFTWARE)|TIME_(?:YEAR|MON|DAY|HOUR|MIN|SEC|WDAY)|TIME|API_VERSION|THE_REQUEST|IS_SUBREQ|(?:ENV|LA-U|LA-F|HTTP|SSL):[^\}]+)(\})
|
17
|
+
- name: invalid.illegal.bad-var.apache-config
|
18
|
+
match: "%\\{[^\\}]+\\}"
|
19
|
+
uuid: 023D670E-80F1-11D9-9BD1-00039398C572
|
20
|
+
foldingStartMarker: |-
|
21
|
+
^[ ]*(?x)
|
22
|
+
(<(?i:FilesMatch|Files|DirectoryMatch|Directory|LocationMatch|Location|VirtualHost|IfModule|IfDefine)\b.*?>
|
23
|
+
)
|
24
|
+
patterns:
|
25
|
+
- name: comment.line.number-sign.apache-config
|
26
|
+
captures:
|
27
|
+
"1":
|
28
|
+
name: punctuation.definition.comment.apache-config
|
29
|
+
match: (#).*$\n?
|
30
|
+
- name: meta.tag.any.html
|
31
|
+
captures:
|
32
|
+
"6":
|
33
|
+
name: punctuation.definition.tag.apache-config
|
34
|
+
"1":
|
35
|
+
name: punctuation.definition.tag.apache-config
|
36
|
+
"2":
|
37
|
+
name: entity.name.tag.apache-config
|
38
|
+
"3":
|
39
|
+
name: punctuation.definition.tag.apache-config
|
40
|
+
"4":
|
41
|
+
name: meta.scope.between-tag-pair.apache-config
|
42
|
+
"5":
|
43
|
+
name: entity.name.tag.apache-config
|
44
|
+
match: ^[ ]*(<)([a-zA-Z0-9:]+)[^>]*(>(<)/)(\2)(>)
|
45
|
+
- name: meta.vhost.apache-config
|
46
|
+
endCaptures:
|
47
|
+
"1":
|
48
|
+
name: meta.tag.apache-config
|
49
|
+
"2":
|
50
|
+
name: punctuation.definition.tag.apache-config
|
51
|
+
"3":
|
52
|
+
name: entity.name.tag.apache-config
|
53
|
+
"4":
|
54
|
+
name: punctuation.definition.tag.apache-config
|
55
|
+
begin: ^[ ]*((<)(VirtualHost)(?:[ ]+([^>]+))?(>))
|
56
|
+
beginCaptures:
|
57
|
+
"1":
|
58
|
+
name: meta.tag.apache-config
|
59
|
+
"2":
|
60
|
+
name: punctuation.definition.tag.apache-config
|
61
|
+
"3":
|
62
|
+
name: entity.name.tag.apache-config
|
63
|
+
"4":
|
64
|
+
name: meta.toc-list.virtual-host.apache-config
|
65
|
+
"5":
|
66
|
+
name: punctuation.definition.tag.apache-config
|
67
|
+
end: ^[ ]*((</)(VirtualHost)[^>]*(>))
|
68
|
+
patterns:
|
69
|
+
- include: $base
|
70
|
+
- name: meta.directory.apache-config
|
71
|
+
endCaptures:
|
72
|
+
"1":
|
73
|
+
name: meta.tag.apache-config
|
74
|
+
"2":
|
75
|
+
name: punctuation.definition.tag.apache-config
|
76
|
+
"3":
|
77
|
+
name: entity.name.tag.apache-config
|
78
|
+
"4":
|
79
|
+
name: punctuation.definition.tag.apache-config
|
80
|
+
begin: ^[ ]*((<)(Directory(?:Match)?)(?:[ ]+([^>]+))?(>))
|
81
|
+
beginCaptures:
|
82
|
+
"1":
|
83
|
+
name: meta.tag.apache-config
|
84
|
+
"2":
|
85
|
+
name: punctuation.definition.tag.apache-config
|
86
|
+
"3":
|
87
|
+
name: entity.name.tag.apache-config
|
88
|
+
"4":
|
89
|
+
name: meta.toc-list.directory.apache-config
|
90
|
+
"5":
|
91
|
+
name: punctuation.definition.tag.apache-config
|
92
|
+
end: ^[ ]*((</)(Directory(?:Match)?)[^>]*(>))
|
93
|
+
patterns:
|
94
|
+
- include: $base
|
95
|
+
- name: meta.location.apache-config
|
96
|
+
endCaptures:
|
97
|
+
"1":
|
98
|
+
name: meta.tag.apache-config
|
99
|
+
"2":
|
100
|
+
name: punctuation.definition.tag.apache-config
|
101
|
+
"3":
|
102
|
+
name: entity.name.tag.apache-config
|
103
|
+
"4":
|
104
|
+
name: punctuation.definition.tag.apache-config
|
105
|
+
begin: ^[ ]*((<)(Location(?:Match)?)(?:[ ]+([^>]+))?(>))
|
106
|
+
beginCaptures:
|
107
|
+
"1":
|
108
|
+
name: meta.tag.apache-config
|
109
|
+
"2":
|
110
|
+
name: punctuation.definition.tag.apache-config
|
111
|
+
"3":
|
112
|
+
name: entity.name.tag.apache-config
|
113
|
+
"4":
|
114
|
+
name: meta.toc-list.location.apache-config
|
115
|
+
"5":
|
116
|
+
name: punctuation.definition.tag.apache-config
|
117
|
+
end: ^[ ]*((</)(Location(?:Match)?)[^>]*(>))
|
118
|
+
patterns:
|
119
|
+
- include: $base
|
120
|
+
- captures:
|
121
|
+
"1":
|
122
|
+
name: support.constant.rewritecond.apache-config
|
123
|
+
begin: ^[ ]*\b(RewriteCond)\b
|
124
|
+
end: $
|
125
|
+
patterns:
|
126
|
+
- begin: "[ ]+"
|
127
|
+
end: $
|
128
|
+
patterns:
|
129
|
+
- include: "#vars"
|
130
|
+
- name: string.regexp.rewrite-test.apache-config
|
131
|
+
match: "[^ %\\n]+"
|
132
|
+
- begin: "[ ]+"
|
133
|
+
end: $
|
134
|
+
patterns:
|
135
|
+
- name: string.other.rewrite-condition.apache-config
|
136
|
+
match: "[^ %\\n]+"
|
137
|
+
- captures:
|
138
|
+
"1":
|
139
|
+
name: string.regexp.rewrite-operator.apache-config
|
140
|
+
match: "[ ]+(\\[[^\\]]+\\])"
|
141
|
+
- captures:
|
142
|
+
"1":
|
143
|
+
name: support.constant.rewriterule.apache-config
|
144
|
+
begin: ^[ ]*\b(RewriteRule)\b
|
145
|
+
end: $
|
146
|
+
patterns:
|
147
|
+
- begin: "[ ]+"
|
148
|
+
end: $
|
149
|
+
patterns:
|
150
|
+
- include: "#vars"
|
151
|
+
- name: string.regexp.rewrite-pattern.apache-config
|
152
|
+
match: "[^ %]+"
|
153
|
+
- begin: "[ ]+"
|
154
|
+
end: $
|
155
|
+
patterns:
|
156
|
+
- include: "#vars"
|
157
|
+
- name: string.other.rewrite-substitution.apache-config
|
158
|
+
match: "[^ %\\n]+"
|
159
|
+
- captures:
|
160
|
+
"1":
|
161
|
+
name: string.regexp.rewrite-operator.apache-config
|
162
|
+
match: "[ ]+(\\[[^\\]]+\\])"
|
163
|
+
- name: support.constant.apache-config
|
164
|
+
match: \b(R(e(sourceConfig|direct(Match|Temp|Permanent)?|qu(ire|estHeader)|ferer(Ignore|Log)|write(Rule|Map|Base|Cond|Options|Engine|Lo(ck|g(Level)?))|admeName|move(Handler|Charset|Type|InputFilter|OutputFilter|Encoding|Language))|Limit(MEM|NPROC|CPU))|Group|XBitHack|M(MapFile|i(nSpare(Servers|Threads)|meMagicFile)|odMimeUsePathInfo|Cache(RemovalAlgorithm|M(inObjectSize|ax(StreamingBuffer|Object(Size|Count)))|Size)|ultiviewsMatch|eta(Suffix|Dir|Files)|ax(RequestsPer(Child|Thread)|MemFree|Spare(Servers|Threads)|Clients|Threads(PerChild)?|KeepAliveRequests))|B(indAddress|S2000Account|rowserMatch(NoCase)?)|S(hmemUIDisUser|c(oreBoardFile|ript(Sock|InterpreterSource|Log(Buffer|Length)?|Alias(Match)?)?)|tart(Servers|Threads)|S(I(StartTag|TimeFormat|UndefinedEcho|E(ndTag|rrorMsg))|L(R(equire(SSL)?|andomSeed)|Mutex|SessionCache(Timeout)?|C(ipherSuite|ertificate(ChainFile|KeyFile|File)|A(Revocation(Path|File)|Certificate(Path|File)))|Options|P(assPhraseDialog|ro(tocol|xy(MachineCertificate(Path|File)|C(ipherSuite|A(Revocation(Path|File)|Certificate(Path|File)))|Protocol|Engine|Verify(Depth)?)))|Engine|Verify(Client|Depth)))|uexecUserGroup|e(ndBufferSize|cureListen|t(Handler|InputFilter|OutputFilter|Env(If(NoCase)?)?)|rver(Root|Signature|Name|T(ype|okens)|Path|Limit|A(dmin|lias)))|atisfy)|H(ostnameLookups|eader(Name)?)|N(o(Cache|Proxy)|umServers|ameVirtualHost|WSSL(TrustedCerts|Upgradeable))|C(h(ildPerUserID|eckSpelling|arset(SourceEnc|Options|Default))|GI(MapExtension|CommandArgs)|o(ntentDigest|okie(Style|Name|Tracking|Domain|Prefix|Expires|Format|Log)|reDumpDirectory)|ustomLog|learModuleList|ache(Root|Gc(MemUsage|Clean|Interval|Daily|Unused)|M(inFileSize|ax(Expire|FileSize))|Size|NegotiatedDocs|TimeMargin|Ignore(NoLastMod|CacheControl)|D(i(sable|rLe(ngth|vels))|efaultExpire)|E(nable|xpiryCheck)|F(ile|orceCompletion)|LastModifiedFactor))|T(hread(sPerChild|StackSize|Limit)|ypesConfig|ime(out|Out)|ransferLog)|I(n(clude|dex(Ignore|O(ptions|rderDefault)))|SAPI(ReadAheadBuffer|CacheFile|FakeAsync|LogNotSupported|AppendLogTo(Errors|Query))|dentityCheck|f(Module|Define)|map(Menu|Base|Default))|O(ptions|rder)|D(irectory(Match|Slash|Index)?|ocumentRoot|e(ny|f(late(MemLevel|BufferSize|CompressionLevel|FilterNote|WindowSize)|ault(Type|Icon|Language)))|av(MinTimeout|DepthInfinity|LockDB)?)|U(se(CanonicalName|r(Dir)?)|nsetEnv)|P(idFile|ort|assEnv|ro(tocol(ReqCheck|Echo)|xy(Re(ceiveBufferSize|quests|mote(Match)?)|Ma(tch|xForwards)|B(lock|adHeader)|Timeout|IOBufferSize|Domain|P(ass(Reverse)?|reserveHost)|ErrorOverride|Via)?))|E(nable(MMAP|Sendfile|ExceptionHook)|BCDIC(Convert(ByType)?|Kludge)|rror(Header|Document|Log)|x(t(endedStatus|Filter(Options|Define))|pires(ByType|Default|Active)|ample))|Virtual(ScriptAlias(IP)?|Host|DocumentRoot(IP)?)|KeepAlive(Timeout)?|F(ile(s(Match)?|ETag)|or(ce(Type|LanguagePriority)|ensicLog)|ancyIndexing)|Win32DisableAcceptEx|L(i(sten(Back(log|Log))?|mit(Request(Body|Field(s(ize)?|Size)|Line)|XMLRequestBody|InternalRecursion|Except)?)|o(c(kFile|ation(Match)?)|ad(Module|File)|g(Format|Level))|DAP(SharedCache(Size|File)|Cache(TTL|Entries)|TrustedCA(Type)?|OpCache(TTL|Entries))|anguagePriority)|A(ssignUserID|nonymous(_(MustGiveEmail|NoUserID|VerifyEmail|LogEmail|Authoritative))?|c(ce(ss(Config|FileName)|pt(Mutex|PathInfo|Filter))|tion)|dd(Module(Info)?|Handler|Charset|Type|I(nputFilter|con(By(Type|Encoding))?)|OutputFilter(ByType)?|De(scription|faultCharset)|Encoding|Language|Alt(By(Type|Encoding))?)|uth(GroupFile|Name|Type|D(B(GroupFile|M(GroupFile|Type|UserFile|Authoritative)|UserFile|Authoritative)|igest(GroupFile|ShmemSize|N(cCheck|once(Format|Lifetime))|Domain|Qop|File|Algorithm))|UserFile|LDAP(RemoteUserIsDN|GroupAttribute(IsDN)?|Bind(DN|Password)|C(harsetConfig|ompareDNOnServer)|DereferenceAliases|Url|Enabled|FrontPageHack|Authoritative)|Authoritative)|l(ias(Match)?|low(CONNECT|Override|EncodedSlashes)?)|gentLog))\b
|
165
|
+
- name: support.class.apache-config
|
166
|
+
match: \b(access_module|action_module|alias_module|anon_auth_module|asis_module|auth_module|autoindex_module|cern_meta_module|cgi_module|config_log_module|dav_module|dbm_auth_module|digest_module|dir_module|env_module|expires_module|foo_module|headers_module|hfs_apple_module|imap_module|includes_module|info_module|jk_module|mime_magic_module|mime_module|negotiation_module|perl_module|php4_module|php5_module|proxy_module|rendezvous_apple_module|rendezvous_module|rewrite_module|setenvif_module|speling_module|ssl_module|status_module|unique_id_module|userdir_module|usertrack_module|vhost_alias_module)\b
|
167
|
+
- name: string.quoted.double.apache-config
|
168
|
+
endCaptures:
|
169
|
+
"0":
|
170
|
+
name: punctuation.definition.string.end.apache-config
|
171
|
+
begin: "\""
|
172
|
+
beginCaptures:
|
173
|
+
"0":
|
174
|
+
name: punctuation.definition.string.begin.apache-config
|
175
|
+
end: "\"(?!\")"
|
176
|
+
patterns:
|
177
|
+
- name: constant.character.escape.apostrophe.apache
|
178
|
+
match: "\"\""
|
179
|
+
- name: meta.tag.apache-config
|
180
|
+
captures:
|
181
|
+
"1":
|
182
|
+
name: punctuation.definition.tag.apache-config
|
183
|
+
"2":
|
184
|
+
name: entity.name.tag.apache-config
|
185
|
+
begin: (</?)([a-zA-Z]+)
|
186
|
+
end: (/?>)
|
187
|
+
foldingStopMarker: |-
|
188
|
+
^[ ]*(?x)
|
189
|
+
(</(?i:FilesMatch|Files|DirectoryMatch|Directory|LocationMatch|Location|VirtualHost|IfModule|IfDefine)>
|
190
|
+
)
|
191
|
+
keyEquivalent: ^~A
|