uv 0.0.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (239) hide show
  1. data/.gitignore +4 -0
  2. data/Gemfile +4 -0
  3. data/README.rdoc +79 -0
  4. data/Rakefile +1 -0
  5. data/bin/theme2latexrender +122 -0
  6. data/bin/theme2xhtmlrender +158 -0
  7. data/bin/uv +140 -0
  8. data/lib/uv/engine.rb +4 -0
  9. data/lib/uv/render_processor.rb +140 -0
  10. data/lib/uv/utility.rb +67 -0
  11. data/lib/uv/version.rb +3 -0
  12. data/lib/uv.rb +110 -0
  13. data/render/latex/active4d.render +132 -0
  14. data/render/latex/all_hallows_eve.render +96 -0
  15. data/render/latex/amy.render +171 -0
  16. data/render/latex/blackboard.render +111 -0
  17. data/render/latex/brilliance_black.render +552 -0
  18. data/render/latex/brilliance_dull.render +561 -0
  19. data/render/latex/cobalt.render +162 -0
  20. data/render/latex/dawn.render +126 -0
  21. data/render/latex/eiffel.render +132 -0
  22. data/render/latex/espresso_libre.render +123 -0
  23. data/render/latex/idle.render +93 -0
  24. data/render/latex/iplastic.render +99 -0
  25. data/render/latex/lazy.render +96 -0
  26. data/render/latex/mac_classic.render +135 -0
  27. data/render/latex/magicwb_amiga.render +117 -0
  28. data/render/latex/pastels_on_dark.render +204 -0
  29. data/render/latex/slush_poppies.render +123 -0
  30. data/render/latex/spacecadet.render +81 -0
  31. data/render/latex/sunburst.render +186 -0
  32. data/render/latex/twilight.render +153 -0
  33. data/render/latex/zenburnesque.render +126 -0
  34. data/render/old/txt2tags.render +131 -0
  35. data/render/xhtml/active4d.render +140 -0
  36. data/render/xhtml/all_hallows_eve.render +104 -0
  37. data/render/xhtml/amy.render +179 -0
  38. data/render/xhtml/blackboard.render +119 -0
  39. data/render/xhtml/brilliance_black.render +560 -0
  40. data/render/xhtml/brilliance_dull.render +569 -0
  41. data/render/xhtml/cobalt.render +170 -0
  42. data/render/xhtml/dawn.render +134 -0
  43. data/render/xhtml/eiffel.render +140 -0
  44. data/render/xhtml/espresso_libre.render +131 -0
  45. data/render/xhtml/idle.render +101 -0
  46. data/render/xhtml/iplastic.render +107 -0
  47. data/render/xhtml/lazy.render +104 -0
  48. data/render/xhtml/mac_classic.render +143 -0
  49. data/render/xhtml/magicwb_amiga.render +125 -0
  50. data/render/xhtml/pastels_on_dark.render +212 -0
  51. data/render/xhtml/railscasts.render +93 -0
  52. data/render/xhtml/slush_poppies.render +131 -0
  53. data/render/xhtml/spacecadet.render +83 -0
  54. data/render/xhtml/sunburst.render +194 -0
  55. data/render/xhtml/twilight.render +161 -0
  56. data/render/xhtml/zenburnesque.render +134 -0
  57. data/ruby-uv.gemspec +24 -0
  58. data/syntax/actionscript.syntax +97 -0
  59. data/syntax/active4d.syntax +276 -0
  60. data/syntax/active4d_html.syntax +311 -0
  61. data/syntax/active4d_ini.syntax +50 -0
  62. data/syntax/active4d_library.syntax +21 -0
  63. data/syntax/ada.syntax +33 -0
  64. data/syntax/antlr.syntax +151 -0
  65. data/syntax/apache.syntax +191 -0
  66. data/syntax/applescript.syntax +384 -0
  67. data/syntax/asp.syntax +70 -0
  68. data/syntax/asp_vb.net.syntax +129 -0
  69. data/syntax/bibtex.syntax +151 -0
  70. data/syntax/blog_html.syntax +41 -0
  71. data/syntax/blog_markdown.syntax +42 -0
  72. data/syntax/blog_text.syntax +27 -0
  73. data/syntax/blog_textile.syntax +27 -0
  74. data/syntax/build.syntax +53 -0
  75. data/syntax/bulletin_board.syntax +287 -0
  76. data/syntax/bundler.syntax +11 -0
  77. data/syntax/cake.syntax +55 -0
  78. data/syntax/camlp4.syntax +36 -0
  79. data/syntax/cm.syntax +32 -0
  80. data/syntax/coldfusion.syntax +119 -0
  81. data/syntax/context_free.syntax +176 -0
  82. data/syntax/cs.syntax +59 -0
  83. data/syntax/css.syntax +195 -0
  84. data/syntax/css_experimental.syntax +1925 -0
  85. data/syntax/css_zen.syntax +197 -0
  86. data/syntax/csv.syntax +68 -0
  87. data/syntax/cucumber_plain_text_feature.syntax +140 -0
  88. data/syntax/cucumber_steps.syntax +154 -0
  89. data/syntax/d.syntax +142 -0
  90. data/syntax/diff.syntax +81 -0
  91. data/syntax/dokuwiki.syntax +204 -0
  92. data/syntax/dot.syntax +47 -0
  93. data/syntax/doxygen.syntax +43 -0
  94. data/syntax/dylan.syntax +62 -0
  95. data/syntax/eiffel.syntax +78 -0
  96. data/syntax/erlang.syntax +922 -0
  97. data/syntax/f-script.syntax +80 -0
  98. data/syntax/fortran.syntax +141 -0
  99. data/syntax/fxscript.syntax +142 -0
  100. data/syntax/greasemonkey.syntax +34 -0
  101. data/syntax/gri.syntax +83 -0
  102. data/syntax/groovy.syntax +191 -0
  103. data/syntax/gtd.syntax +22 -0
  104. data/syntax/gtdalt.syntax +143 -0
  105. data/syntax/haml.syntax +153 -0
  106. data/syntax/haskell.syntax +88 -0
  107. data/syntax/html-asp.syntax +27 -0
  108. data/syntax/html.syntax +362 -0
  109. data/syntax/html_django.syntax +36 -0
  110. data/syntax/html_for_asp.net.syntax +424 -0
  111. data/syntax/html_mason.syntax +119 -0
  112. data/syntax/html_rails.syntax +32 -0
  113. data/syntax/html_tcl.syntax +26 -0
  114. data/syntax/icalendar.syntax +32 -0
  115. data/syntax/inform.syntax +48 -0
  116. data/syntax/ini.syntax +55 -0
  117. data/syntax/installer_distribution_script.syntax +77 -0
  118. data/syntax/io.syntax +81 -0
  119. data/syntax/java.syntax +211 -0
  120. data/syntax/javaproperties.syntax +20 -0
  121. data/syntax/javascript.syntax +256 -0
  122. data/syntax/javascript_+_prototype.syntax +72 -0
  123. data/syntax/javascript_+_prototype_bracketed.syntax +140 -0
  124. data/syntax/javascript_rails.syntax +30 -0
  125. data/syntax/jquery_javascript.syntax +154 -0
  126. data/syntax/json.syntax +136 -0
  127. data/syntax/languagedefinition.syntax +708 -0
  128. data/syntax/latex.syntax +566 -0
  129. data/syntax/latex_beamer.syntax +41 -0
  130. data/syntax/latex_log.syntax +50 -0
  131. data/syntax/latex_memoir.syntax +64 -0
  132. data/syntax/lexflex.syntax +219 -0
  133. data/syntax/lighttpd.syntax +54 -0
  134. data/syntax/lilypond.syntax +492 -0
  135. data/syntax/lisp.syntax +61 -0
  136. data/syntax/literate_haskell.syntax +24 -0
  137. data/syntax/logo.syntax +29 -0
  138. data/syntax/logtalk.syntax +152 -0
  139. data/syntax/lua.syntax +86 -0
  140. data/syntax/m.syntax +142 -0
  141. data/syntax/macports_portfile.syntax +163 -0
  142. data/syntax/makefile.syntax +36 -0
  143. data/syntax/man.syntax +17 -0
  144. data/syntax/mediawiki.syntax +567 -0
  145. data/syntax/mips.syntax +66 -0
  146. data/syntax/mod_perl.syntax +50 -0
  147. data/syntax/modula-3.syntax +47 -0
  148. data/syntax/moinmoin.syntax +189 -0
  149. data/syntax/mootools.syntax +572 -0
  150. data/syntax/movable_type.syntax +162 -0
  151. data/syntax/multimarkdown.syntax +39 -0
  152. data/syntax/objective-c++.syntax +18 -0
  153. data/syntax/objective-c.syntax +233 -0
  154. data/syntax/ocaml.syntax +764 -0
  155. data/syntax/ocamllex.syntax +167 -0
  156. data/syntax/ocamlyacc.syntax +184 -0
  157. data/syntax/opengl.syntax +14 -0
  158. data/syntax/pascal.syntax +77 -0
  159. data/syntax/perl.syntax +1115 -0
  160. data/syntax/plain_text.syntax +32 -0
  161. data/syntax/postscript.syntax +114 -0
  162. data/syntax/processing.syntax +106 -0
  163. data/syntax/prolog.syntax +40 -0
  164. data/syntax/property_list.syntax +635 -0
  165. data/syntax/python.syntax +868 -0
  166. data/syntax/python_django.syntax +21 -0
  167. data/syntax/qmake_project.syntax +114 -0
  168. data/syntax/qt_c++.syntax +26 -0
  169. data/syntax/quake3_config.syntax +32 -0
  170. data/syntax/r.syntax +81 -0
  171. data/syntax/r_console.syntax +16 -0
  172. data/syntax/ragel.syntax +201 -0
  173. data/syntax/rd_r_documentation.syntax +91 -0
  174. data/syntax/regexp.syntax +50 -0
  175. data/syntax/release_notes.syntax +46 -0
  176. data/syntax/remind.syntax +253 -0
  177. data/syntax/restructuredtext.syntax +250 -0
  178. data/syntax/rez.syntax +80 -0
  179. data/syntax/rspec.syntax +68 -0
  180. data/syntax/ruby.syntax +1035 -0
  181. data/syntax/ruby_experimental.syntax +145 -0
  182. data/syntax/ruby_on_rails.syntax +200 -0
  183. data/syntax/ruby_sass.syntax +395 -0
  184. data/syntax/s5.syntax +69 -0
  185. data/syntax/scheme.syntax +347 -0
  186. data/syntax/scilab.syntax +41 -0
  187. data/syntax/scss.syntax +528 -0
  188. data/syntax/setext.syntax +147 -0
  189. data/syntax/shell-unix-generic.syntax +384 -0
  190. data/syntax/shoulda.syntax +160 -0
  191. data/syntax/slate.syntax +149 -0
  192. data/syntax/sql.syntax +237 -0
  193. data/syntax/sql_rails.syntax +19 -0
  194. data/syntax/ssh-config.syntax +33 -0
  195. data/syntax/standard_ml.syntax +121 -0
  196. data/syntax/strings_file.syntax +39 -0
  197. data/syntax/subversion_commit_message.syntax +36 -0
  198. data/syntax/sweave.syntax +84 -0
  199. data/syntax/swig.syntax +57 -0
  200. data/syntax/tcl.syntax +152 -0
  201. data/syntax/template_toolkit.syntax +121 -0
  202. data/syntax/tex.syntax +86 -0
  203. data/syntax/tex_math.syntax +49 -0
  204. data/syntax/textile.syntax +215 -0
  205. data/syntax/tsv.syntax +50 -0
  206. data/syntax/twiki.syntax +241 -0
  207. data/syntax/txt2tags.syntax +79 -0
  208. data/syntax/vectorscript.syntax +57 -0
  209. data/syntax/xhtml_1.0.syntax +4027 -0
  210. data/syntax/xml.syntax +180 -0
  211. data/syntax/xml_strict.syntax +92 -0
  212. data/syntax/xsl.syntax +60 -0
  213. data/syntax/yaml.syntax +160 -0
  214. data/syntax/yui_javascript.syntax +176 -0
  215. data/test/test_uv.rb +17 -0
  216. data/vendor/assets/stylesheets/active4d.css +117 -0
  217. data/vendor/assets/stylesheets/all_hallows_eve.css +75 -0
  218. data/vendor/assets/stylesheets/all_uv_themes.css.scss +4 -0
  219. data/vendor/assets/stylesheets/amy.css +150 -0
  220. data/vendor/assets/stylesheets/blackboard.css +91 -0
  221. data/vendor/assets/stylesheets/brilliance_black.css +608 -0
  222. data/vendor/assets/stylesheets/brilliance_dull.css +602 -0
  223. data/vendor/assets/stylesheets/cobalt.css +152 -0
  224. data/vendor/assets/stylesheets/dawn.css +124 -0
  225. data/vendor/assets/stylesheets/eiffel.css +124 -0
  226. data/vendor/assets/stylesheets/espresso_libre.css +112 -0
  227. data/vendor/assets/stylesheets/idle.css +65 -0
  228. data/vendor/assets/stylesheets/iplastic.css +83 -0
  229. data/vendor/assets/stylesheets/lazy.css +76 -0
  230. data/vendor/assets/stylesheets/mac_classic.css +126 -0
  231. data/vendor/assets/stylesheets/magicwb_amiga.css +107 -0
  232. data/vendor/assets/stylesheets/pastels_on_dark.css +191 -0
  233. data/vendor/assets/stylesheets/railscasts.css +74 -0
  234. data/vendor/assets/stylesheets/slush_poppies.css +88 -0
  235. data/vendor/assets/stylesheets/spacecadet.css +54 -0
  236. data/vendor/assets/stylesheets/sunburst.css +183 -0
  237. data/vendor/assets/stylesheets/twilight.css +140 -0
  238. data/vendor/assets/stylesheets/zenburnesque.css +94 -0
  239. metadata +311 -0
@@ -0,0 +1,384 @@
1
+ ---
2
+ name: Shell Script (Bash)
3
+ fileTypes:
4
+ - sh
5
+ - ss
6
+ - bashrc
7
+ - bash_profile
8
+ - bash_login
9
+ - profile
10
+ - bash_logout
11
+ firstLineMatch: ^#!.*(bash|zsh|sh|tcsh)
12
+ scopeName: source.shell
13
+ repository:
14
+ interpolation:
15
+ patterns:
16
+ - name: string.interpolated.backtick.shell
17
+ endCaptures:
18
+ "0":
19
+ name: punctuation.definition.string.end.shell
20
+ begin: "`"
21
+ beginCaptures:
22
+ "0":
23
+ name: punctuation.definition.string.begin.shell
24
+ end: "`"
25
+ patterns:
26
+ - name: constant.character.escape.shell
27
+ match: \\[`\\$]
28
+ - name: string.interpolated.dollar.shell
29
+ endCaptures:
30
+ "0":
31
+ name: punctuation.definition.string.end.shell
32
+ begin: \$\(
33
+ beginCaptures:
34
+ "0":
35
+ name: punctuation.definition.string.begin.shell
36
+ end: \)
37
+ patterns:
38
+ - include: $self
39
+ variable:
40
+ patterns:
41
+ - name: variable.other.special.shell
42
+ captures:
43
+ "1":
44
+ name: punctuation.definition.variable.shell
45
+ match: (\$)[-*@#?$!0_]
46
+ - name: variable.other.positional.shell
47
+ captures:
48
+ "1":
49
+ name: punctuation.definition.variable.shell
50
+ match: (\$)[1-9]
51
+ - name: variable.other.normal.shell
52
+ captures:
53
+ "1":
54
+ name: punctuation.definition.variable.shell
55
+ match: (\$)[a-zA-Z_][a-zA-Z0-9_]*
56
+ - name: variable.other.bracket.shell
57
+ captures:
58
+ "0":
59
+ name: punctuation.definition.variable.shell
60
+ begin: \$\{
61
+ end: \}
62
+ uuid: DDEEA3ED-6B1C-11D9-8B10-000D93589AF6
63
+ foldingStartMarker: \{
64
+ patterns:
65
+ - name: support.function.shell
66
+ match: \b(time)\b
67
+ - name: keyword.operator.list.shell
68
+ match: ;|&&|&|\|\|
69
+ - name: keyword.operator.pipe.shell
70
+ match: "[|!]"
71
+ - name: meta.scope.logical-expression.shell
72
+ captures:
73
+ "1":
74
+ name: punctuation.definition.logical-expression.shell
75
+ begin: (\[{2})
76
+ end: (\]{2})
77
+ patterns:
78
+ - name: keyword.operator.logical.shell
79
+ match: ==|!=|&&|!|\|\|
80
+ comment: do we want a special rule for ( expr )?
81
+ - include: $self
82
+ - name: meta.scope.expression.shell
83
+ captures:
84
+ "1":
85
+ name: punctuation.definition.expression.shell
86
+ begin: (\({2})
87
+ end: (\){2})
88
+ patterns:
89
+ - include: $self
90
+ - name: meta.scope.subshell.shell
91
+ captures:
92
+ "1":
93
+ name: punctuation.definition.subshell.shell
94
+ begin: (\()
95
+ end: (\))
96
+ patterns:
97
+ - include: $self
98
+ - name: meta.scope.group.shell
99
+ captures:
100
+ "1":
101
+ name: punctuation.definition.group.shell
102
+ begin: (?<=\s|^)(\{)(?=\s|$)
103
+ end: (?<=^|;)\s*(\})
104
+ patterns:
105
+ - include: $self
106
+ - name: constant.character.escape.shell
107
+ match: \\.
108
+ - name: string.quoted.single.shell
109
+ endCaptures:
110
+ "0":
111
+ name: punctuation.definition.string.end.shell
112
+ begin: "'"
113
+ beginCaptures:
114
+ "0":
115
+ name: punctuation.definition.string.begin.shell
116
+ end: "'"
117
+ - name: string.quoted.double.shell
118
+ endCaptures:
119
+ "0":
120
+ name: punctuation.definition.string.end.shell
121
+ begin: \$?"
122
+ beginCaptures:
123
+ "0":
124
+ name: punctuation.definition.string.begin.shell
125
+ end: "\""
126
+ patterns:
127
+ - name: constant.character.escape.shell
128
+ match: \\[\$`"\\\n]
129
+ - include: "#variable"
130
+ - include: "#interpolation"
131
+ - name: string.quoted.single.dollar.shell
132
+ endCaptures:
133
+ "0":
134
+ name: punctuation.definition.string.end.shell
135
+ begin: \$'
136
+ beginCaptures:
137
+ "0":
138
+ name: punctuation.definition.string.begin.shell
139
+ end: "'"
140
+ patterns:
141
+ - name: constant.character.escape.ansi-c.shell
142
+ match: \\(a|b|e|f|n|r|t|v|\\|')
143
+ - name: constant.character.escape.octal.shell
144
+ match: \\[0-9]{3}
145
+ - name: constant.character.escape.hex.shell
146
+ match: \\x[0-9a-fA-F]{2}
147
+ - name: constant.character.escape.control-char.shell
148
+ match: \\c.
149
+ - name: keyword.operator.tilde.shell
150
+ match: (?<=\s|:|=|^)~
151
+ - include: "#variable"
152
+ - include: "#interpolation"
153
+ - name: string.other.math.shell
154
+ endCaptures:
155
+ "0":
156
+ name: punctuation.definition.string.end.shell
157
+ begin: \$\({2}
158
+ beginCaptures:
159
+ "0":
160
+ name: punctuation.definition.string.begin.shell
161
+ end: \){2}
162
+ - name: string.interpolated.process-substitution.shell
163
+ endCaptures:
164
+ "0":
165
+ name: punctuation.definition.string.end.shell
166
+ begin: "[><]\\("
167
+ beginCaptures:
168
+ "0":
169
+ name: punctuation.definition.string.begin.shell
170
+ end: \)
171
+ - name: string.unquoted.heredoc.no-indent.ruby.shell
172
+ endCaptures:
173
+ "1":
174
+ name: keyword.control.heredoc-token.shell
175
+ captures:
176
+ "0":
177
+ name: punctuation.definition.string.shell
178
+ begin: (<<)-("|'|)(RUBY)\2
179
+ contentName: source.ruby.embedded.shell
180
+ beginCaptures:
181
+ "1":
182
+ name: keyword.operator.heredoc.shell
183
+ "3":
184
+ name: keyword.control.heredoc-token.shell
185
+ end: ^\t*(RUBY)$
186
+ patterns:
187
+ - include: source.ruby
188
+ - name: string.unquoted.heredoc.ruby.shell
189
+ endCaptures:
190
+ "1":
191
+ name: keyword.control.heredoc-token.shell
192
+ captures:
193
+ "0":
194
+ name: punctuation.definition.string.shell
195
+ begin: (<<)("|'|)(RUBY)\2
196
+ contentName: source.ruby.embedded.shell
197
+ beginCaptures:
198
+ "1":
199
+ name: keyword.operator.heredoc.shell
200
+ "3":
201
+ name: keyword.control.heredoc-token.shell
202
+ end: ^(RUBY)$
203
+ patterns:
204
+ - include: source.ruby
205
+ - name: string.unquoted.heredoc.no-indent.applescript.shell
206
+ endCaptures:
207
+ "1":
208
+ name: keyword.control.heredoc-token.shell
209
+ captures:
210
+ "0":
211
+ name: punctuation.definition.string.shell
212
+ begin: (<<)-("|'|)(APPLESCRIPT)\2
213
+ contentName: source.applescript.embedded.shell
214
+ beginCaptures:
215
+ "1":
216
+ name: keyword.operator.heredoc.shell
217
+ "3":
218
+ name: keyword.control.heredoc-token.shell
219
+ end: ^\t*(APPLESCRIPT)$
220
+ patterns:
221
+ - include: source.applescript
222
+ - name: string.unquoted.heredoc.applescript.shell
223
+ endCaptures:
224
+ "1":
225
+ name: keyword.control.heredoc-token.shell
226
+ captures:
227
+ "0":
228
+ name: punctuation.definition.string.shell
229
+ begin: (<<)("|'|)(APPLESCRIPT)\2
230
+ contentName: source.applescript.embedded.shell
231
+ beginCaptures:
232
+ "1":
233
+ name: keyword.operator.heredoc.shell
234
+ "3":
235
+ name: keyword.control.heredoc-token.shell
236
+ end: ^(APPLESCRIPT)$
237
+ patterns:
238
+ - include: source.applescript
239
+ - name: string.unquoted.heredoc.no-indent.html.shell
240
+ endCaptures:
241
+ "1":
242
+ name: keyword.control.heredoc-token.shell
243
+ captures:
244
+ "0":
245
+ name: punctuation.definition.string.shell
246
+ begin: (<<)-("|'|)(HTML)\2
247
+ contentName: text.html.embedded.shell
248
+ beginCaptures:
249
+ "1":
250
+ name: keyword.operator.heredoc.shell
251
+ "3":
252
+ name: keyword.control.heredoc-token.shell
253
+ end: ^\t*(HTML)$
254
+ patterns:
255
+ - include: text.html.basic
256
+ - name: string.unquoted.heredoc.html.shell
257
+ endCaptures:
258
+ "1":
259
+ name: keyword.control.heredoc-token.shell
260
+ captures:
261
+ "0":
262
+ name: punctuation.definition.string.shell
263
+ begin: (<<)("|'|)(HTML)\2
264
+ contentName: text.html.embedded.shell
265
+ beginCaptures:
266
+ "1":
267
+ name: keyword.operator.heredoc.shell
268
+ "3":
269
+ name: keyword.control.heredoc-token.shell
270
+ end: ^(HTML)$
271
+ patterns:
272
+ - include: text.html.basic
273
+ - name: string.unquoted.heredoc.no-indent.markdown.shell
274
+ endCaptures:
275
+ "1":
276
+ name: keyword.control.heredoc-token.shell
277
+ captures:
278
+ "0":
279
+ name: punctuation.definition.string.shell
280
+ begin: (<<)-("|'|)(MARKDOWN)\2
281
+ contentName: text.html.markdown.embedded.shell
282
+ beginCaptures:
283
+ "1":
284
+ name: keyword.operator.heredoc.shell
285
+ "3":
286
+ name: keyword.control.heredoc-token.shell
287
+ end: ^\t*(MARKDOWN)$
288
+ patterns:
289
+ - include: text.html.markdown
290
+ - name: string.unquoted.heredoc.markdown.shell
291
+ endCaptures:
292
+ "1":
293
+ name: keyword.control.heredoc-token.shell
294
+ captures:
295
+ "0":
296
+ name: punctuation.definition.string.shell
297
+ begin: (<<)("|'|)(MARKDOWN)\2
298
+ contentName: text.html.markdown.embedded.shell
299
+ beginCaptures:
300
+ "1":
301
+ name: keyword.operator.heredoc.shell
302
+ "3":
303
+ name: keyword.control.heredoc-token.shell
304
+ end: ^(MARKDOWN)$
305
+ patterns:
306
+ - include: text.html.markdown
307
+ - name: string.unquoted.heredoc.no-indent.shell
308
+ endCaptures:
309
+ "1":
310
+ name: keyword.control.heredoc-token.shell
311
+ captures:
312
+ "0":
313
+ name: punctuation.definition.string.shell
314
+ begin: (<<)-("|'|)\\?(\w+)\2
315
+ beginCaptures:
316
+ "1":
317
+ name: keyword.operator.heredoc.shell
318
+ "3":
319
+ name: keyword.control.heredoc-token.shell
320
+ end: ^\t*(\3)$
321
+ - name: string.unquoted.heredoc.shell
322
+ endCaptures:
323
+ "1":
324
+ name: keyword.control.heredoc-token.shell
325
+ captures:
326
+ "0":
327
+ name: punctuation.definition.string.shell
328
+ begin: (<<)("|'|)\\?(\w+)\2
329
+ beginCaptures:
330
+ "1":
331
+ name: keyword.operator.heredoc.shell
332
+ "3":
333
+ name: keyword.control.heredoc-token.shell
334
+ end: ^(\3)$
335
+ - name: meta.herestring.shell
336
+ captures:
337
+ "1":
338
+ name: keyword.operator.herestring.shell
339
+ "2":
340
+ name: string.quoted.single.herestring.shell
341
+ "3":
342
+ name: punctuation.definition.string.begin.shell
343
+ "4":
344
+ name: punctuation.definition.string.end.shell
345
+ match: (<<<)((')[^']*('))
346
+ - name: meta.herestring.shell
347
+ captures:
348
+ "6":
349
+ name: punctuation.definition.string.end.shell
350
+ "1":
351
+ name: keyword.operator.herestring.shell
352
+ "2":
353
+ name: string.quoted.double.herestring.shell
354
+ "3":
355
+ name: punctuation.definition.string.begin.shell
356
+ match: (<<<)((")(\\("|\\)|[^"])*("))
357
+ - name: meta.herestring.shell
358
+ captures:
359
+ "1":
360
+ name: keyword.operator.herestring.shell
361
+ "2":
362
+ name: string.unquoted.herestring.shell
363
+ match: (<<<)(([^\s\\]|\\.)+)
364
+ - name: keyword.operator.redirect.shell
365
+ match: "&>|\\d*>&\\d*|\\d*(>>|>|<)|\\d*<&|\\d*<>"
366
+ comment: "valid: &>word >&word >word [n]>&[n] [n]<word [n]>word [n]>>word [n]<&word (last one is duplicate)"
367
+ - name: comment.line.number-sign.shell
368
+ captures:
369
+ "1":
370
+ name: punctuation.definition.comment.shell
371
+ match: (?<!\$)(#)(?!\{).*$\n?
372
+ - name: meta.function.shell
373
+ captures:
374
+ "1":
375
+ name: entity.name.function.shell
376
+ "2":
377
+ name: punctuation.definition.arguments.shell
378
+ match: \b([^ \t\n]*)\s*(\(\))
379
+ - name: keyword.control.shell
380
+ match: \b(?:if|then|else|elif|fi|for|in|do|done|select|case|continue|esac|while|until)\b
381
+ - name: storage.modifier.shell
382
+ match: \b(?:export)\b
383
+ foldingStopMarker: \}
384
+ keyEquivalent: ^~S
@@ -0,0 +1,160 @@
1
+ ---
2
+ fileTypes: []
3
+ foldingStartMarker: ! "(?x)^\n\t (\\s*+\n\t (module|class|def\n\t |unless|if\n\t
4
+ \ |case\n\t |begin\n\t |for|while|until\n\t |( \"(\\\\.|[^\"])*+\"
5
+ \ # eat a double quoted string\n\t | '(\\\\.|[^'])*+' # eat
6
+ a single quoted string\n\t | [^#\"'] # eat all but comments
7
+ and strings\n\t )*\n\t ( \\s (do|begin|case)\n\t
8
+ \ | [-+=&|*/~%^<>~] \\s*+ (if|unless)\n\t )\n\t )\\b\n\t (?!
9
+ [^;]*+ ; .*? \\bend\\b )\n\t |( \"(\\\\.|[^\"])*+\" # eat a double
10
+ quoted string\n\t | '(\\\\.|[^'])*+' # eat a single quoted string\n\t
11
+ \ | [^#\"'] # eat all but comments and strings\n\t )*\n\t
12
+ \ ( \\{ (?! [^}]*+ \\} )\n\t | \\[ (?! [^\\]]*+ \\] )\n\t )\n\t ).*$\n\t|
13
+ \ [#] .*? \\(fold\\) \\s*+ $ # Sune’s special marker\n\t"
14
+ foldingStopMarker: ! "(?x)\n\t\t( (^|;) \\s*+ end \\s*+ ([#].*)? $\n\t\t| ^
15
+ \ \\s*+ [}\\]] \\s*+ ([#].*)? $\n\t\t| [#] .*? \\(end\\) \\s*+ $ # Sune’s
16
+ special marker\n\t\t)"
17
+ keyEquivalent: ^~R
18
+ name: Ruby on Rails (Shoulda)
19
+ patterns:
20
+ - begin: (^\s*)(?=class\s+(([.a-zA-Z0-9_:]+ControllerTest(\s*<\s*[.a-zA-Z0-9_:]+)?)))
21
+ comment: Uses lookahead to match classes with the ControllerTest suffix; includes
22
+ 'source.ruby' to avoid infinite recursion
23
+ end: ^\1(?=end)\b
24
+ name: meta.rails.functional_test
25
+ patterns:
26
+ - include: source.ruby
27
+ - include: $self
28
+ - begin: (^\s*)(?=class\s+(([.a-zA-Z0-9_:]+Controller\b(\s*<\s*[.a-zA-Z0-9_:]+)?)|(<<\s*[.a-zA-Z0-9_:]+)))(?!.+\bend\b)
29
+ comment: Uses lookahead to match classes with the Controller suffix; includes 'source.ruby'
30
+ to avoid infinite recursion
31
+ end: ^\1(?=end)\b
32
+ name: meta.rails.controller
33
+ patterns:
34
+ - include: source.ruby
35
+ - include: $self
36
+ - begin: (^\s*)(?=module\s+((([A-Z]\w*::)*)[A-Z]\w*)Helper)
37
+ comment: Uses lookahead to match modules with the Helper suffix; includes 'source.ruby'
38
+ to avoid infinite recursion
39
+ end: ^\1(?=end)\b
40
+ name: meta.rails.helper
41
+ patterns:
42
+ - include: source.ruby
43
+ - include: $self
44
+ - begin: (^\s*)(?=class\s+(([.a-zA-Z0-9_:]+(\s*<\s*ActionMailer::Base))))
45
+ comment: Uses lookahead to match classes that inherit from ActionMailer::Base; includes
46
+ 'source.ruby' to avoid infinite recursion
47
+ end: ^\1(?=end)\b
48
+ name: meta.rails.mailer
49
+ patterns:
50
+ - include: source.ruby
51
+ - include: $self
52
+ - begin: (^\s*)(?=class\s+.+ActiveRecord::Base)
53
+ comment: Uses lookahead to match classes that (may) inherit from ActiveRecord::Base;
54
+ includes 'source.ruby' to avoid infinite recursion
55
+ end: ^\1(?=end)\b
56
+ name: meta.rails.model
57
+ patterns:
58
+ - include: source.ruby
59
+ - include: $self
60
+ - begin: (^\s*)(?=class\s+.+ActiveRecord::Migration)
61
+ comment: Uses lookahead to match classes that (may) inherit from ActiveRecord::Migration;
62
+ includes 'source.ruby' to avoid infinite recursion
63
+ end: ^\1(?=end)\b
64
+ name: meta.rails.migration
65
+ patterns:
66
+ - begin: (^\s*)(?=change_table)\b
67
+ comment: Uses lookahead to match methods change_table; includes 'source.ruby'
68
+ to avoid infinite recursion
69
+ contentName: meta.rails.migration.change_table
70
+ end: ^\1(?=end)\b
71
+ patterns:
72
+ - include: source.ruby
73
+ - include: $self
74
+ - begin: (^\s*)(?=create_table)\b
75
+ comment: Uses lookahead to match methods create_table; includes 'source.ruby'
76
+ to avoid infinite recursion
77
+ contentName: meta.rails.migration.create_table
78
+ end: ^\1(?=end)\b
79
+ patterns:
80
+ - include: source.ruby
81
+ - include: $self
82
+ - include: source.ruby
83
+ - include: $self
84
+ - begin: (^\s*)(?=ActiveRecord::Schema.define)
85
+ end: ^\1(?=end)\b
86
+ name: meta.rails.schema
87
+ patterns:
88
+ - begin: (^\s*)(?=create_table)\b
89
+ comment: Uses lookahead to match methods create_table; includes 'source.ruby'
90
+ to avoid infinite recursion
91
+ contentName: meta.rails.migration.create_table
92
+ end: ^\1(?=end)\b
93
+ patterns:
94
+ - include: source.ruby
95
+ - include: $self
96
+ - begin: (^\s*)(?=class\s+(?![.a-zA-Z0-9_:]+ControllerTest)(([.a-zA-Z0-9_:]+Test(\s*<\s*[.a-zA-Z0-9_:]+)?)|(<<\s*[.a-zA-Z0-9_:]+)))
97
+ comment: Uses lookahead to match classes with the Test suffix; includes 'source.ruby'
98
+ to avoid infinite recursion
99
+ end: ^\1(?=end)\b
100
+ name: meta.rails.unit_test
101
+ patterns:
102
+ - include: ! '#shoulda'
103
+ - include: source.ruby
104
+ - include: $self
105
+ - begin: (^\s*)ActionController::Routing::Routes
106
+ comment: Uses ActionController::Routing::Routes to determine it is a routes file;
107
+ includes 'source.ruby' to avoid infinite recursion
108
+ end: ^\1(?=end)\b
109
+ name: meta.rails.routes
110
+ patterns:
111
+ - include: source.ruby
112
+ - include: $self
113
+ - match: \b(before_filter|skip_before_filter|skip_after_filter|after_filter|around_filter|filter|filter_parameter_logging|layout|require_dependency|render|render_action|render_text|render_file|render_template|render_nothing|render_component|render_without_layout|rescue_from|url_for|redirect_to|redirect_to_path|redirect_to_url|respond_to|helper|helper_method|model|service|observer|serialize|scaffold|verify|hide_action)\b
114
+ name: support.function.actionpack.rails
115
+ - match: \b(check_box|content_for|error_messages_for|form_for|fields_for|file_field|hidden_field|image_submit_tag|label|link_to|password_field|radio_button|submit|text_field|text_area)\b
116
+ name: support.function.viewhelpers.rails
117
+ - match: \b(named_scope|after_create|after_destroy|after_save|after_update|after_validation|after_validation_on_create|after_validation_on_update|before_create|before_destroy|before_save|before_update|before_validation|before_validation_on_create|before_validation_on_update|composed_of|belongs_to|has_one|has_many|has_and_belongs_to_many|validate|validate_on_create|validates_numericality_of|validate_on_update|validates_acceptance_of|validates_associated|validates_confirmation_of|validates_each|validates_format_of|validates_inclusion_of|validates_exclusion_of|validates_length_of|validates_presence_of|validates_size_of|validates_uniqueness_of|attr_protected|attr_accessible|attr_readonly|accepts_nested_attributes_for|default_scope)\b
118
+ name: support.function.activerecord.rails
119
+ - match: \b(alias_method_chain|alias_attribute|delegate|cattr_accessor|mattr_accessor|returning|memoize)\b
120
+ name: support.function.activesupport.rails
121
+ - include: source.ruby
122
+ repository:
123
+ shoulda:
124
+ patterns:
125
+ - begin: (^\s*)(?=(context)\s+((")(.*)\4)\s+(do))\b
126
+ beginCaptures:
127
+ '2':
128
+ name: support.function.context.ruby.rails.shoulda
129
+ end: ^\1(?=end)\b
130
+ name: source.ruby.rails.shoulda
131
+ patterns:
132
+ - begin: ^\s*(context)\b
133
+ end: \b(do)\s*$
134
+ name: meta.context.ruby.shoulda
135
+ patterns:
136
+ - include: source.ruby
137
+ - match: \b(should_validate_presence_of|should_validate_uniqueness_of|should_not_allow_mass_assignment_of|should_not_allow_values_for|should_allow_values_for|should_ensure_length_in_range|should_ensure_length_at_least|should_ensure_value_in_range|should_validate_numericality_of|should_have_many|should_have_and_belong_to_many|should_have_one|should_belong_to|should_be_restful|should_set_the_flash_to|should_not_set_the_flash|should_assign_to|should_not_assign_to|should_respond_with|should_render_template|should_redirect_to|should_render_a_form|setup|teardown|fixtures|load_all_fixtures|should_have_db_column|should_have_db_columns|should_have_index|should_have_indices|should_validate_acceptance_of|shuold_set_the_flash_to|should_have_readonly_attributes|should_change|should_not_change|should_have_named_scope|should_ensure_length_is|should_filter_params|should_respond_with_content_type|should_route|should_return_from_session)\b
138
+ name: support.shoulda.macro
139
+ - begin: ^\s*(should|should_eventually)\b
140
+ end: \b(do)\s*$
141
+ endCaptures:
142
+ '1':
143
+ name: keyword.control.start-block.ruby.shoulda
144
+ name: meta.should.ruby.shoulda
145
+ patterns:
146
+ - include: source.ruby
147
+ - begin: ^\s*(setup)\b
148
+ beginCaptures:
149
+ '1':
150
+ name: keyword.other.setup.ruby.rails.shoulda
151
+ end: \b(do)\s*$
152
+ endCaptures:
153
+ '1':
154
+ name: keyword.control.start-block.ruby.shoulda
155
+ patterns:
156
+ - include: source.ruby
157
+ - include: ! '#shoulda'
158
+ - include: source.ruby
159
+ scopeName: source.ruby.rails
160
+ uuid: 7ED2CAAB-8CE7-4A09-9E66-1D622C60029B
@@ -0,0 +1,149 @@
1
+ ---
2
+ name: Slate
3
+ fileTypes:
4
+ - slate
5
+ scopeName: source.slate
6
+ repository:
7
+ unary-selector:
8
+ match: \b([A-Za-z_][A-Za-z_0-9]+)\b
9
+ escaped-char:
10
+ match: \\.
11
+ binary-selector:
12
+ match: \b([=+-\/?<>,;^*]+[A-Za-z0-9_=+-\/?<>,;^*]+[=+-\/?<>,;^*]+)\b
13
+ nest_parens:
14
+ begin: \(
15
+ end: \)
16
+ patterns:
17
+ - include: "#nest_parens"
18
+ keyword:
19
+ name: variable.other.slate
20
+ match: \b([A-Za-z_][A-Za-z_0-9]+:)\b
21
+ nest_curly:
22
+ begin: \{
23
+ end: \}
24
+ patterns:
25
+ - include: "#nest_curly"
26
+ uuid: A7676F36-C7D2-4C3E-8519-944577C66C6A
27
+ foldingStartMarker: ^\s*[_A-z0-9]+@.+$
28
+ patterns:
29
+ - name: keyword.control.slate
30
+ match: \b(ifTrue:|ifFalse:|whileTrue:|whileFalse:|loop|ifNil:|ifNotNil:|ifNotNilDo:|if:|then:|else:|do:|\^|error:|warn:|signal)\b
31
+ - name: keyword.operator.slate
32
+ match: \b(clone|new|copy|resend|forwardTo:|is:|isReally:|as:|[-+=<>,;/\\*]+)\b
33
+ - name: keyword.other.name-of-parameter.slate
34
+ match: "&[A-Za-z0-9_]+:?"
35
+ - name: variable.language.slate
36
+ match: \b(lobby|it|thisContext|here)\b
37
+ - name: string.quoted.double.slate
38
+ endCaptures:
39
+ "0":
40
+ name: punctuation.definition.string.end.slate
41
+ begin: "\""
42
+ beginCaptures:
43
+ "0":
44
+ name: punctuation.definition.string.begin.slate
45
+ end: "\""
46
+ patterns:
47
+ - name: constant.character.escape.slate
48
+ match: \\.
49
+ - name: string.quoted.single.slate
50
+ endCaptures:
51
+ "0":
52
+ name: punctuation.definition.string.end.slate
53
+ begin: "'"
54
+ beginCaptures:
55
+ "0":
56
+ name: punctuation.definition.string.begin.slate
57
+ end: "'"
58
+ patterns:
59
+ - name: constant.character.escape.slate
60
+ match: \\.
61
+ - name: meta.array.slate
62
+ endCaptures:
63
+ "0":
64
+ name: punctuation.definition.array.end.slate
65
+ begin: \#\{
66
+ beginCaptures:
67
+ "0":
68
+ name: punctuation.definition.array.begin.slate
69
+ end: \}
70
+ patterns:
71
+ - include: "#nest_curly"
72
+ - include: $self
73
+ - name: meta.array.literal.slate
74
+ endCaptures:
75
+ "0":
76
+ name: punctuation.definition.array.end.slate
77
+ begin: \#\(
78
+ beginCaptures:
79
+ "0":
80
+ name: punctuation.definition.array.begin.slate
81
+ end: \)
82
+ patterns:
83
+ - include: "#nest_parens"
84
+ comment: Should restrict contents to literals.
85
+ - name: meta.block.compact.slate
86
+ match: "#([[:lower:]]|_|[+=\\-/!%&*|><~?])(\\w|[+=\\-/!%&*|><~?:])*"
87
+ - name: meta.block.slate
88
+ captures:
89
+ "1":
90
+ name: punctuation.section.block.slate
91
+ "2":
92
+ name: variable.parameter.block.slate
93
+ begin: (\[)(?:\s*\|\s*((?::\w+\s+)*:\w+)\s*\|)?
94
+ end: (\])
95
+ patterns:
96
+ - name: meta.block.header.slate
97
+ match: \s+
98
+ - name: meta.block.content.slate
99
+ captures:
100
+ "1":
101
+ name: variable.other.local.slate
102
+ begin: (?:\|(\s*(?:\w+\s+)*\w+\s*)?\||(?=[^\s|]))
103
+ end: (?=\])
104
+ patterns:
105
+ - include: $base
106
+ - name: meta.definition.slate
107
+ begin: "define: #(\\w+)"
108
+ beginCaptures:
109
+ "1":
110
+ name: entity.name.type.slate
111
+ end: \s
112
+ - name: variable.parameter.slate
113
+ match: \b(:\w+|\w+@)
114
+ - name: keyword.operator.logical.slate
115
+ match: \b(/\\|\\/|and:|or:|not|xor:)\b
116
+ - name: constant.language.slate
117
+ match: \b(True|False|Nil|NoRole)\b
118
+ - name: constant.numeric.slate
119
+ match: \b[+-]?([0-9]+[Rr][0-9A-Za-z]+([.][0-9A-Za-z]+)?|[0-9]+([.][0-9]+)?)\b
120
+ - name: constant.character.slate
121
+ captures:
122
+ "1":
123
+ name: punctuation.definition.constant.slate
124
+ match: (\$)(\S|\\[\\ntsbre0avf])
125
+ - name: constant.other.slate
126
+ captures:
127
+ "1":
128
+ name: punctuation.definition.constant.slate
129
+ match: (#)\S+
130
+ - name: support.class.slate
131
+ match: (\b\w+ traits\b)
132
+ - name: keyword.control.import.slate
133
+ match: \`[-A-Za-z0-9+=*^<>?,;/\\]+:?
134
+ - name: invalid.deprecated.trailing-whitespace.slate
135
+ match: \s+$
136
+ - include: "#keyword"
137
+ - name: meta.function.unary.slate
138
+ endCaptures:
139
+ "1":
140
+ name: entity.name.function.slate
141
+ begin: (\w+)@
142
+ beginCaptures:
143
+ "1":
144
+ name: variable.parameter.function.slate
145
+ end: ($|\[)
146
+ patterns:
147
+ - include: $self
148
+ foldingStopMarker: ^.*(\])[A-z ]*\.$
149
+ keyEquivalent: ^~S