code_rippa 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (181) hide show
  1. data/.gitignore +6 -0
  2. data/Gemfile +6 -0
  3. data/LICENSE +22 -0
  4. data/README.md +35 -0
  5. data/Rakefile +2 -0
  6. data/bin/code_rippa +78 -0
  7. data/code_rippa.gemspec +21 -0
  8. data/lib/code_rippa/render/latex/active4d.render +132 -0
  9. data/lib/code_rippa/render/latex/all_hallows_eve.render +96 -0
  10. data/lib/code_rippa/render/latex/amy.render +171 -0
  11. data/lib/code_rippa/render/latex/blackboard.render +111 -0
  12. data/lib/code_rippa/render/latex/brilliance_black.render +552 -0
  13. data/lib/code_rippa/render/latex/brilliance_dull.render +561 -0
  14. data/lib/code_rippa/render/latex/cobalt.render +162 -0
  15. data/lib/code_rippa/render/latex/dawn.render +126 -0
  16. data/lib/code_rippa/render/latex/eiffel.render +132 -0
  17. data/lib/code_rippa/render/latex/espresso_libre.render +123 -0
  18. data/lib/code_rippa/render/latex/idle.render +93 -0
  19. data/lib/code_rippa/render/latex/iplastic.render +99 -0
  20. data/lib/code_rippa/render/latex/lazy.render +96 -0
  21. data/lib/code_rippa/render/latex/mac_classic.render +135 -0
  22. data/lib/code_rippa/render/latex/magicwb_amiga.render +117 -0
  23. data/lib/code_rippa/render/latex/moc.render +186 -0
  24. data/lib/code_rippa/render/latex/pastels_on_dark.render +204 -0
  25. data/lib/code_rippa/render/latex/slush_poppies.render +123 -0
  26. data/lib/code_rippa/render/latex/spacecadet.render +81 -0
  27. data/lib/code_rippa/render/latex/sunburst.render +186 -0
  28. data/lib/code_rippa/render/latex/twilight.render +153 -0
  29. data/lib/code_rippa/render/latex/zenburnesque.render +126 -0
  30. data/lib/code_rippa/syntax/actionscript.syntax +97 -0
  31. data/lib/code_rippa/syntax/active4d.syntax +276 -0
  32. data/lib/code_rippa/syntax/active4d_html.syntax +311 -0
  33. data/lib/code_rippa/syntax/active4d_ini.syntax +50 -0
  34. data/lib/code_rippa/syntax/active4d_library.syntax +21 -0
  35. data/lib/code_rippa/syntax/ada.syntax +33 -0
  36. data/lib/code_rippa/syntax/antlr.syntax +151 -0
  37. data/lib/code_rippa/syntax/apache.syntax +191 -0
  38. data/lib/code_rippa/syntax/applescript.syntax +384 -0
  39. data/lib/code_rippa/syntax/asp.syntax +70 -0
  40. data/lib/code_rippa/syntax/asp_vb.net.syntax +129 -0
  41. data/lib/code_rippa/syntax/bibtex.syntax +151 -0
  42. data/lib/code_rippa/syntax/blog_html.syntax +41 -0
  43. data/lib/code_rippa/syntax/blog_markdown.syntax +42 -0
  44. data/lib/code_rippa/syntax/blog_text.syntax +27 -0
  45. data/lib/code_rippa/syntax/blog_textile.syntax +27 -0
  46. data/lib/code_rippa/syntax/build.syntax +53 -0
  47. data/lib/code_rippa/syntax/bulletin_board.syntax +287 -0
  48. data/lib/code_rippa/syntax/cake.syntax +55 -0
  49. data/lib/code_rippa/syntax/camlp4.syntax +36 -0
  50. data/lib/code_rippa/syntax/cm.syntax +32 -0
  51. data/lib/code_rippa/syntax/coldfusion.syntax +119 -0
  52. data/lib/code_rippa/syntax/context_free.syntax +176 -0
  53. data/lib/code_rippa/syntax/cs.syntax +59 -0
  54. data/lib/code_rippa/syntax/css.syntax +195 -0
  55. data/lib/code_rippa/syntax/css_experimental.syntax +1925 -0
  56. data/lib/code_rippa/syntax/csv.syntax +68 -0
  57. data/lib/code_rippa/syntax/d.syntax +142 -0
  58. data/lib/code_rippa/syntax/diff.syntax +81 -0
  59. data/lib/code_rippa/syntax/dokuwiki.syntax +204 -0
  60. data/lib/code_rippa/syntax/dot.syntax +47 -0
  61. data/lib/code_rippa/syntax/doxygen.syntax +43 -0
  62. data/lib/code_rippa/syntax/dylan.syntax +62 -0
  63. data/lib/code_rippa/syntax/eiffel.syntax +78 -0
  64. data/lib/code_rippa/syntax/erlang.syntax +922 -0
  65. data/lib/code_rippa/syntax/f-script.syntax +80 -0
  66. data/lib/code_rippa/syntax/fortran.syntax +141 -0
  67. data/lib/code_rippa/syntax/fxscript.syntax +142 -0
  68. data/lib/code_rippa/syntax/greasemonkey.syntax +34 -0
  69. data/lib/code_rippa/syntax/gri.syntax +83 -0
  70. data/lib/code_rippa/syntax/groovy.syntax +191 -0
  71. data/lib/code_rippa/syntax/gtd.syntax +22 -0
  72. data/lib/code_rippa/syntax/gtdalt.syntax +143 -0
  73. data/lib/code_rippa/syntax/haml.syntax +88 -0
  74. data/lib/code_rippa/syntax/haskell.syntax +88 -0
  75. data/lib/code_rippa/syntax/html-asp.syntax +27 -0
  76. data/lib/code_rippa/syntax/html.syntax +362 -0
  77. data/lib/code_rippa/syntax/html_django.syntax +36 -0
  78. data/lib/code_rippa/syntax/html_for_asp.net.syntax +424 -0
  79. data/lib/code_rippa/syntax/html_mason.syntax +119 -0
  80. data/lib/code_rippa/syntax/html_rails.syntax +40 -0
  81. data/lib/code_rippa/syntax/html_tcl.syntax +26 -0
  82. data/lib/code_rippa/syntax/icalendar.syntax +32 -0
  83. data/lib/code_rippa/syntax/inform.syntax +48 -0
  84. data/lib/code_rippa/syntax/ini.syntax +55 -0
  85. data/lib/code_rippa/syntax/installer_distribution_script.syntax +77 -0
  86. data/lib/code_rippa/syntax/io.syntax +81 -0
  87. data/lib/code_rippa/syntax/java.syntax +211 -0
  88. data/lib/code_rippa/syntax/javaproperties.syntax +20 -0
  89. data/lib/code_rippa/syntax/javascript.syntax +256 -0
  90. data/lib/code_rippa/syntax/javascript_+_prototype.syntax +72 -0
  91. data/lib/code_rippa/syntax/javascript_+_prototype_bracketed.syntax +140 -0
  92. data/lib/code_rippa/syntax/jquery_javascript.syntax +114 -0
  93. data/lib/code_rippa/syntax/json.syntax +136 -0
  94. data/lib/code_rippa/syntax/languagedefinition.syntax +708 -0
  95. data/lib/code_rippa/syntax/latex.syntax +566 -0
  96. data/lib/code_rippa/syntax/latex_beamer.syntax +41 -0
  97. data/lib/code_rippa/syntax/latex_log.syntax +50 -0
  98. data/lib/code_rippa/syntax/latex_memoir.syntax +64 -0
  99. data/lib/code_rippa/syntax/lexflex.syntax +219 -0
  100. data/lib/code_rippa/syntax/lighttpd.syntax +54 -0
  101. data/lib/code_rippa/syntax/lilypond.syntax +492 -0
  102. data/lib/code_rippa/syntax/lisp.syntax +61 -0
  103. data/lib/code_rippa/syntax/literate_haskell.syntax +24 -0
  104. data/lib/code_rippa/syntax/logo.syntax +29 -0
  105. data/lib/code_rippa/syntax/logtalk.syntax +152 -0
  106. data/lib/code_rippa/syntax/lua.syntax +86 -0
  107. data/lib/code_rippa/syntax/m.syntax +142 -0
  108. data/lib/code_rippa/syntax/macports_portfile.syntax +163 -0
  109. data/lib/code_rippa/syntax/makefile.syntax +36 -0
  110. data/lib/code_rippa/syntax/man.syntax +17 -0
  111. data/lib/code_rippa/syntax/mediawiki.syntax +567 -0
  112. data/lib/code_rippa/syntax/mips.syntax +66 -0
  113. data/lib/code_rippa/syntax/mod_perl.syntax +50 -0
  114. data/lib/code_rippa/syntax/modula-3.syntax +47 -0
  115. data/lib/code_rippa/syntax/moinmoin.syntax +189 -0
  116. data/lib/code_rippa/syntax/mootools.syntax +572 -0
  117. data/lib/code_rippa/syntax/movable_type.syntax +162 -0
  118. data/lib/code_rippa/syntax/multimarkdown.syntax +39 -0
  119. data/lib/code_rippa/syntax/objective-c++.syntax +18 -0
  120. data/lib/code_rippa/syntax/objective-c.syntax +233 -0
  121. data/lib/code_rippa/syntax/ocaml.syntax +764 -0
  122. data/lib/code_rippa/syntax/ocamllex.syntax +167 -0
  123. data/lib/code_rippa/syntax/ocamlyacc.syntax +184 -0
  124. data/lib/code_rippa/syntax/opengl.syntax +14 -0
  125. data/lib/code_rippa/syntax/pascal.syntax +77 -0
  126. data/lib/code_rippa/syntax/perl.syntax +1115 -0
  127. data/lib/code_rippa/syntax/plain_text.syntax +32 -0
  128. data/lib/code_rippa/syntax/postscript.syntax +114 -0
  129. data/lib/code_rippa/syntax/processing.syntax +106 -0
  130. data/lib/code_rippa/syntax/prolog.syntax +40 -0
  131. data/lib/code_rippa/syntax/property_list.syntax +635 -0
  132. data/lib/code_rippa/syntax/python.syntax +868 -0
  133. data/lib/code_rippa/syntax/python_django.syntax +21 -0
  134. data/lib/code_rippa/syntax/qmake_project.syntax +114 -0
  135. data/lib/code_rippa/syntax/qt_c++.syntax +26 -0
  136. data/lib/code_rippa/syntax/quake3_config.syntax +32 -0
  137. data/lib/code_rippa/syntax/r.syntax +81 -0
  138. data/lib/code_rippa/syntax/r_console.syntax +16 -0
  139. data/lib/code_rippa/syntax/ragel.syntax +201 -0
  140. data/lib/code_rippa/syntax/rd_r_documentation.syntax +91 -0
  141. data/lib/code_rippa/syntax/regexp.syntax +50 -0
  142. data/lib/code_rippa/syntax/release_notes.syntax +46 -0
  143. data/lib/code_rippa/syntax/remind.syntax +253 -0
  144. data/lib/code_rippa/syntax/restructuredtext.syntax +250 -0
  145. data/lib/code_rippa/syntax/rez.syntax +80 -0
  146. data/lib/code_rippa/syntax/ruby.syntax +1035 -0
  147. data/lib/code_rippa/syntax/ruby_experimental.syntax +145 -0
  148. data/lib/code_rippa/syntax/ruby_on_rails.syntax +88 -0
  149. data/lib/code_rippa/syntax/s5.syntax +69 -0
  150. data/lib/code_rippa/syntax/scheme.syntax +347 -0
  151. data/lib/code_rippa/syntax/scilab.syntax +41 -0
  152. data/lib/code_rippa/syntax/setext.syntax +147 -0
  153. data/lib/code_rippa/syntax/shell-unix-generic.syntax +384 -0
  154. data/lib/code_rippa/syntax/slate.syntax +149 -0
  155. data/lib/code_rippa/syntax/sql.syntax +237 -0
  156. data/lib/code_rippa/syntax/sql_rails.syntax +18 -0
  157. data/lib/code_rippa/syntax/ssh-config.syntax +33 -0
  158. data/lib/code_rippa/syntax/standard_ml.syntax +121 -0
  159. data/lib/code_rippa/syntax/strings_file.syntax +39 -0
  160. data/lib/code_rippa/syntax/subversion_commit_message.syntax +36 -0
  161. data/lib/code_rippa/syntax/sweave.syntax +84 -0
  162. data/lib/code_rippa/syntax/swig.syntax +57 -0
  163. data/lib/code_rippa/syntax/tcl.syntax +152 -0
  164. data/lib/code_rippa/syntax/template_toolkit.syntax +121 -0
  165. data/lib/code_rippa/syntax/tex.syntax +86 -0
  166. data/lib/code_rippa/syntax/tex_math.syntax +49 -0
  167. data/lib/code_rippa/syntax/textile.syntax +215 -0
  168. data/lib/code_rippa/syntax/tsv.syntax +50 -0
  169. data/lib/code_rippa/syntax/twiki.syntax +241 -0
  170. data/lib/code_rippa/syntax/txt2tags.syntax +79 -0
  171. data/lib/code_rippa/syntax/vectorscript.syntax +57 -0
  172. data/lib/code_rippa/syntax/xhtml_1.0.syntax +4027 -0
  173. data/lib/code_rippa/syntax/xml.syntax +180 -0
  174. data/lib/code_rippa/syntax/xml_strict.syntax +92 -0
  175. data/lib/code_rippa/syntax/xsl.syntax +60 -0
  176. data/lib/code_rippa/syntax/yaml.syntax +160 -0
  177. data/lib/code_rippa/syntax/yui_javascript.syntax +176 -0
  178. data/lib/code_rippa/uv_overrides.rb +49 -0
  179. data/lib/code_rippa/version.rb +3 -0
  180. data/lib/code_rippa.rb +204 -0
  181. metadata +245 -0
@@ -0,0 +1,151 @@
1
+ ---
2
+ name: BibTeX
3
+ fileTypes:
4
+ - bib
5
+ scopeName: text.bibtex
6
+ repository:
7
+ nested_braces:
8
+ endCaptures:
9
+ "0":
10
+ name: punctuation.definition.group.end.bibtex
11
+ begin: \{
12
+ beginCaptures:
13
+ "0":
14
+ name: punctuation.definition.group.begin.bibtex
15
+ end: \}
16
+ patterns:
17
+ - include: "#nested_braces"
18
+ integer:
19
+ name: constant.numeric.bibtex
20
+ match: \d+
21
+ string_content:
22
+ patterns:
23
+ - name: string.quoted.double.bibtex
24
+ endCaptures:
25
+ "0":
26
+ name: punctuation.definition.string.end.bibtex
27
+ begin: "\""
28
+ beginCaptures:
29
+ "0":
30
+ name: punctuation.definition.string.begin.bibtex
31
+ end: "\""
32
+ patterns:
33
+ - include: "#nested_braces"
34
+ - name: string.quoted.other.braces.bibtex
35
+ endCaptures:
36
+ "0":
37
+ name: punctuation.definition.string.end.bibtex
38
+ begin: \{
39
+ beginCaptures:
40
+ "0":
41
+ name: punctuation.definition.string.begin.bibtex
42
+ end: \}
43
+ patterns:
44
+ - name: invalid.illegal.at-sign.bibtex
45
+ match: "@"
46
+ - include: "#nested_braces"
47
+ uuid: 47F30BA1-6B1D-11D9-9A60-000D93589AF6
48
+ foldingStartMarker: \@[a-zA-Z]+\s*[{(].+,
49
+ patterns:
50
+ - name: comment.line.at-sign.bibtex
51
+ begin: "@Comment"
52
+ beginCaptures:
53
+ "0":
54
+ name: punctuation.definition.comment.bibtex
55
+ end: $\n?
56
+ - name: meta.string-constant.braces.bibtex
57
+ endCaptures:
58
+ "0":
59
+ name: punctuation.section.string-constant.end.bibtex
60
+ begin: ((@)String)\s*(\{)\s*([a-zA-Z]*)
61
+ beginCaptures:
62
+ "1":
63
+ name: keyword.other.string-constant.bibtex
64
+ "2":
65
+ name: punctuation.definition.keyword.bibtex
66
+ "3":
67
+ name: punctuation.section.string-constant.begin.bibtex
68
+ "4":
69
+ name: variable.other.bibtex
70
+ end: \}
71
+ patterns:
72
+ - include: "#string_content"
73
+ - name: meta.string-constant.parenthesis.bibtex
74
+ endCaptures:
75
+ "0":
76
+ name: punctuation.section.string-constant.end.bibtex
77
+ begin: ((@)String)\s*(\()\s*([a-zA-Z]*)
78
+ beginCaptures:
79
+ "1":
80
+ name: keyword.other.string-constant.bibtex
81
+ "2":
82
+ name: punctuation.definition.keyword.bibtex
83
+ "3":
84
+ name: punctuation.section.string-constant.begin.bibtex
85
+ "4":
86
+ name: variable.other.bibtex
87
+ end: \)
88
+ patterns:
89
+ - include: "#string_content"
90
+ - name: meta.entry.braces.bibtex
91
+ endCaptures:
92
+ "0":
93
+ name: punctuation.section.entry.end.bibtex
94
+ begin: ((@)[a-zA-Z]+)\s*(\{)\s*([^\s,]*)
95
+ beginCaptures:
96
+ "1":
97
+ name: keyword.other.entry-type.bibtex
98
+ "2":
99
+ name: punctuation.definition.keyword.bibtex
100
+ "3":
101
+ name: punctuation.section.entry.begin.bibtex
102
+ "4":
103
+ name: entity.name.type.entry-key.bibtex
104
+ end: \}
105
+ patterns:
106
+ - name: meta.key-assignment.bibtex
107
+ begin: ([a-zA-Z]+)\s*(\=)
108
+ beginCaptures:
109
+ "1":
110
+ name: string.unquoted.key.bibtex
111
+ "2":
112
+ name: punctuation.separator.key-value.bibtex
113
+ end: (?=[,}])
114
+ patterns:
115
+ - include: "#string_content"
116
+ - include: "#integer"
117
+ - name: meta.entry.parenthesis.bibtex
118
+ endCaptures:
119
+ "0":
120
+ name: punctuation.section.entry.end.bibtex
121
+ begin: ((@)[a-zA-Z]+)\s*(\()\s*([^\s,]*)
122
+ beginCaptures:
123
+ "1":
124
+ name: keyword.other.entry-type.bibtex
125
+ "2":
126
+ name: punctuation.definition.keyword.bibtex
127
+ "3":
128
+ name: punctuation.section.entry.begin.bibtex
129
+ "4":
130
+ name: entity.name.type.entry-key.bibtex
131
+ end: \)
132
+ patterns:
133
+ - name: meta.key-assignment.bibtex
134
+ begin: ([a-zA-Z]+)\s*(\=)
135
+ beginCaptures:
136
+ "1":
137
+ name: string.unquoted.key.bibtex
138
+ "2":
139
+ name: punctuation.separator.key-value.bibtex
140
+ end: (?=[,)])
141
+ patterns:
142
+ - include: "#string_content"
143
+ - include: "#integer"
144
+ - name: comment.block.bibtex
145
+ begin: "[^@\\n]"
146
+ end: (?=@)
147
+ foldingStopMarker: ^\s*[)}]\s*$
148
+ comment: "Grammar based on description from http://artis.imag.fr/~Xavier.Decoret/resources/xdkbibtex/bibtex_summary.html#comment\n\
149
+ \t\n\
150
+ \tTODO: Does not support @preamble\n\
151
+ \t"
@@ -0,0 +1,41 @@
1
+ ---
2
+ name: "Blog \xE2\x80\x94 HTML"
3
+ fileTypes:
4
+ - blog.html
5
+ firstLineMatch: "^Type: Blog Post \\(HTML\\)"
6
+ scopeName: text.blog.html
7
+ uuid: E46F5C50-5D16-4B5C-8FBB-686BD3768284
8
+ foldingStartMarker: |-
9
+ (?x)
10
+ (<(?i:head|body|table|thead|tbody|tfoot|tr|div|select|fieldset|style|script|ul|ol|form|dl)\b.*?>
11
+ |<!--(?!.*--\s*>)
12
+ |\{\{?(if|foreach|capture|literal|foreach|php|section|strip)
13
+ |\{\s*($|\?>\s*$|//|/\*(.*\*/\s*$|(?!.*?\*/)))
14
+ )
15
+ patterns:
16
+ - name: meta.header.blog
17
+ captures:
18
+ "1":
19
+ name: keyword.other.blog
20
+ "2":
21
+ name: punctuation.separator.key-value.blog
22
+ "3":
23
+ name: string.unquoted.blog
24
+ match: ^([Tt]itle|[Dd]ate|[Bb]asename|[Kk]eywords|[Bb]log|[Tt]ype|[Ll]ink|[Pp]ost|[Tt]ags|[Cc]omments|[Pp]ings?|[Cc]ategory|[Ss]tatus|[Ff]ormat)(:)\s*(.*)$\n?
25
+ - name: invalid.illegal.meta.header.blog
26
+ match: ^([A-Za-z0-9]+):\s*(.*)$\n?
27
+ - name: text.html
28
+ begin: ^(?![A-Za-z0-9]+:)
29
+ end: ^(?=not)possible$
30
+ patterns:
31
+ - name: meta.separator.blog
32
+ match: "^\xE2\x9C\x82-[\xE2\x9C\x82-]+$\\n"
33
+ - include: text.html.basic
34
+ foldingStopMarker: |-
35
+ (?x)
36
+ (</(?i:head|body|table|thead|tbody|tfoot|tr|div|select|fieldset|style|script|ul|ol|form|dl)>
37
+ |^(?!.*?<!--).*?--\s*>
38
+ |\{\{?/(if|foreach|capture|literal|foreach|php|section|strip)
39
+ |^[^{]*\}
40
+ )
41
+ keyEquivalent: ^~B
@@ -0,0 +1,42 @@
1
+ ---
2
+ name: "Blog \xE2\x80\x94 Markdown"
3
+ fileTypes:
4
+ - blog.markdown
5
+ - blog.mdown
6
+ - blog.mkdn
7
+ - blog.md
8
+ firstLineMatch: "^Type: Blog Post \\(Markdown\\)"
9
+ scopeName: text.blog.markdown
10
+ uuid: 6AA68B5B-18B8-4922-9CED-0E2295582955
11
+ foldingStartMarker: |-
12
+ (?x)
13
+ (<(?i:head|body|table|thead|tbody|tfoot|tr|div|select|fieldset|style|script|ul|ol|form|dl)\b.*?>
14
+ |<!--(?!.*-->)
15
+ |\{\s*($|\?>\s*$|//|/\*(.*\*/\s*$|(?!.*?\*/)))
16
+ )
17
+ patterns:
18
+ - name: meta.header.blog
19
+ captures:
20
+ "1":
21
+ name: keyword.other.blog
22
+ "2":
23
+ name: punctuation.separator.key-value.blog
24
+ "3":
25
+ name: string.unquoted.blog
26
+ match: ^([Tt]itle|[Dd]ate|[Bb]asename|[Kk]eywords|[Bb]log|[Tt]ype|[Ll]ink|[Pp]ost|[Tt]ags|[Cc]omments|[Pp]ings?|[Cc]ategory|[Ss]tatus|[Ff]ormat)(:)\s*(.*)$\n?
27
+ - name: invalid.illegal.meta.header.blog
28
+ match: ^([A-Za-z0-9]+):\s*(.*)$\n?
29
+ - name: text.html.markdown
30
+ begin: ^(?![A-Za-z0-9]+:)
31
+ end: ^(?=not)possible$
32
+ patterns:
33
+ - name: meta.separator.blog
34
+ match: "^\xE2\x9C\x82-[\xE2\x9C\x82-]+$\\n"
35
+ - include: text.html.markdown
36
+ foldingStopMarker: |-
37
+ (?x)
38
+ (</(?i:head|body|table|thead|tbody|tfoot|tr|div|select|fieldset|style|script|ul|ol|form|dl)>
39
+ |^\s*-->
40
+ |(^|\s)\}
41
+ )
42
+ keyEquivalent: ^~B
@@ -0,0 +1,27 @@
1
+ ---
2
+ name: "Blog \xE2\x80\x94 Text"
3
+ fileTypes:
4
+ - blog.txt
5
+ firstLineMatch: "^Type: Blog Post \\(Text\\)"
6
+ scopeName: text.blog
7
+ uuid: B2CCDFF8-0FB3-492A-8761-D31FF0FAC448
8
+ patterns:
9
+ - name: meta.header.blog
10
+ captures:
11
+ "1":
12
+ name: keyword.other.blog
13
+ "2":
14
+ name: punctuation.separator.key-value.blog
15
+ "3":
16
+ name: string.unquoted.blog
17
+ match: ^([Tt]itle|[Dd]ate|[Bb]asename|[Kk]eywords|[Bb]log|[Tt]ype|[Ll]ink|[Pp]ost|[Tt]ags|[Cc]omments|[Pp]ings?|[Cc]ategory|[Ss]tatus|[Ff]ormat)(:)\s*(.*)$\n?
18
+ - name: invalid.illegal.meta.header.blog
19
+ match: ^([A-Za-z0-9]+):\s*(.*)$\n?
20
+ - name: text.plain
21
+ begin: ^(?![A-Za-z0-9]+:)
22
+ end: ^(?=not)possible$
23
+ patterns:
24
+ - name: meta.separator.blog
25
+ match: "^\xE2\x9C\x82-[\xE2\x9C\x82-]+$\\n"
26
+ - include: text.plain
27
+ keyEquivalent: ^~B
@@ -0,0 +1,27 @@
1
+ ---
2
+ name: "Blog \xE2\x80\x94 Textile"
3
+ fileTypes:
4
+ - blog.textile
5
+ firstLineMatch: "^Type: Blog Post \\(Textile\\)"
6
+ scopeName: text.blog.textile
7
+ uuid: 32E65853-CDBD-401A-ADBE-F94F195249BE
8
+ patterns:
9
+ - name: meta.header.blog
10
+ captures:
11
+ "1":
12
+ name: keyword.other.blog
13
+ "2":
14
+ name: punctuation.separator.key-value.blog
15
+ "3":
16
+ name: string.unquoted.blog
17
+ match: ^([Tt]itle|[Dd]ate|[Bb]asename|[Kk]eywords|[Bb]log|[Tt]ype|[Ll]ink|[Pp]ost|[Tt]ags|[Cc]omments|[Pp]ings?|[Cc]ategory|[Ss]tatus|[Ff]ormat)(:)\s*(.*)$\n?
18
+ - name: invalid.illegal.meta.header.blog
19
+ match: ^([A-Za-z0-9]+):\s*(.*)$\n?
20
+ - name: text.html.textile
21
+ begin: ^(?![A-Za-z0-9]+:)
22
+ end: ^(?=not)possible$
23
+ patterns:
24
+ - name: meta.separator.blog
25
+ match: "^\xE2\x9C\x82-[\xE2\x9C\x82-]+$\\n"
26
+ - include: text.html.textile
27
+ keyEquivalent: ^~B
@@ -0,0 +1,53 @@
1
+ ---
2
+ name: NAnt Build File
3
+ fileTypes:
4
+ - build
5
+ scopeName: source.nant-build
6
+ uuid: 1BA72668-707C-11D9-A928-000D93589AF6
7
+ foldingStartMarker: <[^!?/>]+|<!--
8
+ patterns:
9
+ - name: comment.block.nant
10
+ captures:
11
+ "0":
12
+ name: punctuation.definition.comment.nant
13
+ begin: <!--
14
+ end: -->
15
+ - name: meta.tag.nant
16
+ captures:
17
+ "1":
18
+ name: punctuation.definition.tag.nant
19
+ "2":
20
+ name: entity.name.tag.nant
21
+ begin: (</?)([-_a-zA-Z0-9:]+)
22
+ end: (/?>)
23
+ patterns:
24
+ - name: entity.other.attribute-name.nant
25
+ match: " ([a-zA-Z-]+)"
26
+ - name: string.quoted.double.nant
27
+ endCaptures:
28
+ "0":
29
+ name: punctuation.definition.string.end.nant
30
+ begin: "\""
31
+ beginCaptures:
32
+ "0":
33
+ name: punctuation.definition.string.begin.nant
34
+ end: "\""
35
+ - name: string.quoted.single.nant
36
+ endCaptures:
37
+ "0":
38
+ name: punctuation.definition.string.end.nant
39
+ begin: "'"
40
+ beginCaptures:
41
+ "0":
42
+ name: punctuation.definition.string.begin.nant
43
+ end: "'"
44
+ - name: constant.character.entity.nant
45
+ captures:
46
+ "1":
47
+ name: punctuation.definition.constant.nant
48
+ "3":
49
+ name: punctuation.definition.constant.nant
50
+ match: (&)([a-zA-Z]+|#[0-9]+|#x[0-9a-fA-F]+)(;)
51
+ - name: invalid.illegal.bad-ampersand.nant
52
+ match: "&"
53
+ foldingStopMarker: />|</[^?>]+|-->
@@ -0,0 +1,287 @@
1
+ ---
2
+ name: Bulletin Board
3
+ fileTypes:
4
+ - bbcode
5
+ scopeName: text.bbcode
6
+ uuid: AC4E0E7E-CC15-4394-A858-6C7E3C09C414
7
+ foldingStartMarker: |-
8
+ (?x)
9
+ (\[(?i:quote|code|list)\b.*?\]
10
+ |<!--(?!.*-->)
11
+ |\{\s*($|\?>\s*$|//|/\*(.*\*/\s*$|(?!.*?\*/)))
12
+ )
13
+ patterns:
14
+ - captures:
15
+ "0":
16
+ name: meta.tag.bbcode
17
+ "1":
18
+ name: punctuation.definition.tag.bbcode
19
+ "2":
20
+ name: punctuation.definition.tag.bbcode
21
+ begin: (\[)(?i:list)(\])
22
+ end: (\[/)(?i:list)(\])
23
+ patterns:
24
+ - captures:
25
+ "0":
26
+ name: meta.tag.bbcode
27
+ "1":
28
+ name: punctuation.definition.tag.bbcode
29
+ begin: (\[\*\])
30
+ contentName: markup.list.unnumbered.bbcode
31
+ end: (?=\[\*\]|\[/(?i:list)\])
32
+ patterns:
33
+ - include: $self
34
+ - endCaptures:
35
+ "0":
36
+ name: meta.tag.bbcode
37
+ "1":
38
+ name: punctuation.definition.tag.bbcode
39
+ "2":
40
+ name: punctuation.definition.tag.bbcode
41
+ begin: (\[)(?i:list)=(1|a)(\])
42
+ beginCaptures:
43
+ "0":
44
+ name: meta.tag.bbcode
45
+ "1":
46
+ name: punctuation.definition.tag.bbcode
47
+ "2":
48
+ name: constant.other.list-type.bbcode
49
+ "3":
50
+ name: punctuation.definition.tag.bbcode
51
+ end: (\[/)(?i:list)(\])
52
+ patterns:
53
+ - captures:
54
+ "0":
55
+ name: meta.tag.bbcode
56
+ "1":
57
+ name: punctuation.definition.tag.bbcode
58
+ begin: (\[\*\])
59
+ contentName: markup.list.numbered.bbcode
60
+ end: (?=\[\*\]|\[/(?i:list)\])
61
+ patterns:
62
+ - include: $self
63
+ - captures:
64
+ "0":
65
+ name: meta.tag.bbcode
66
+ "1":
67
+ name: punctuation.definition.tag.bbcode
68
+ "2":
69
+ name: punctuation.definition.tag.bbcode
70
+ begin: (\[)(?i:quote)(?:=[^\]]+)?(\])
71
+ contentName: markup.quote.bbcode
72
+ end: (\[/)(?i:quote)(\])
73
+ patterns:
74
+ - include: $self
75
+ - captures:
76
+ "0":
77
+ name: meta.tag.bbcode
78
+ "1":
79
+ name: punctuation.definition.tag.bbcode
80
+ "2":
81
+ name: punctuation.definition.tag.bbcode
82
+ begin: (\[)(?i:code)(\])
83
+ contentName: markup.raw.block.bbcode
84
+ end: (\[/)(?i:code)(\])
85
+ - captures:
86
+ "0":
87
+ name: meta.tag.bbcode
88
+ "1":
89
+ name: punctuation.definition.tag.bbcode
90
+ "2":
91
+ name: punctuation.definition.tag.bbcode
92
+ begin: (\[)(?i:i)(\])
93
+ contentName: markup.italic.bbcode
94
+ end: (\[/)(?i:i)(\])
95
+ patterns:
96
+ - include: $self
97
+ - captures:
98
+ "0":
99
+ name: meta.tag.bbcode
100
+ "1":
101
+ name: punctuation.definition.tag.bbcode
102
+ "2":
103
+ name: punctuation.definition.tag.bbcode
104
+ begin: (\[)(?i:b)(\])
105
+ contentName: markup.bold.bbcode
106
+ end: (\[/)(?i:b)(\])
107
+ patterns:
108
+ - include: $self
109
+ - captures:
110
+ "0":
111
+ name: meta.tag.bbcode
112
+ "1":
113
+ name: punctuation.definition.tag.bbcode
114
+ "2":
115
+ name: punctuation.definition.tag.bbcode
116
+ begin: (\[)(?i:u)(\])
117
+ contentName: markup.underline.bbcode
118
+ end: (\[/)(?i:u)(\])
119
+ patterns:
120
+ - include: $self
121
+ - captures:
122
+ "0":
123
+ name: meta.tag.bbcode
124
+ "1":
125
+ name: punctuation.definition.tag.bbcode
126
+ "2":
127
+ name: punctuation.definition.tag.bbcode
128
+ begin: (\[)(?i:strike)(\])
129
+ contentName: markup.other.strikethrough.bbcode
130
+ end: (\[/)(?i:strike)(\])
131
+ patterns:
132
+ - include: $self
133
+ - endCaptures:
134
+ "0":
135
+ name: meta.tag.bbcode
136
+ "1":
137
+ name: punctuation.definition.tag.bbcode
138
+ "2":
139
+ name: punctuation.definition.tag.bbcode
140
+ begin: |-
141
+ (?x)(\[)(?i:color)=(
142
+ (?i:(red|green|blue|yellow
143
+ |white|black|pink
144
+ |purple|brown|grey))
145
+ |(\#([0-9a-fA-F]{6}))
146
+ |([^\]]+))
147
+ (\])
148
+ contentName: markup.other.colored.bbcode
149
+ beginCaptures:
150
+ "6":
151
+ name: invalid.illegal.expected-a-color.bbcode
152
+ "7":
153
+ name: punctuation.definition.tag.bbcode
154
+ "0":
155
+ name: meta.tag.bbcode
156
+ "1":
157
+ name: punctuation.definition.tag.bbcode
158
+ "2":
159
+ name: constant.other.named-color.bbcode
160
+ "3":
161
+ name: constant.other.rgb-value.bbcode
162
+ end: (\[/)(?i:color)(\])
163
+ patterns:
164
+ - include: $self
165
+ - endCaptures:
166
+ "0":
167
+ name: meta.tag.bbcode
168
+ "1":
169
+ name: punctuation.definition.tag.bbcode
170
+ "2":
171
+ name: punctuation.definition.tag.bbcode
172
+ begin: |-
173
+ (?x)(\[)(?i:size)=
174
+ (?i:([0-9]{1,3})\b
175
+ |([^\]]+))
176
+ (\])
177
+ contentName: markup.other.resized.bbcode
178
+ beginCaptures:
179
+ "0":
180
+ name: meta.tag.bbcode
181
+ "1":
182
+ name: punctuation.definition.tag.bbcode
183
+ "2":
184
+ name: constant.numeric.size.bbcode
185
+ "3":
186
+ name: invalid.illegal.expected-a-size.bbcode
187
+ "4":
188
+ name: punctuation.definition.tag.bbcode
189
+ end: (\[/)(?i:size)(\])
190
+ patterns:
191
+ - include: $self
192
+ - name: meta.link.inline.bbcode
193
+ endCaptures:
194
+ "0":
195
+ name: meta.tag.bbcode
196
+ "1":
197
+ name: punctuation.definition.tag.bbcode
198
+ "2":
199
+ name: punctuation.definition.tag.bbcode
200
+ begin: (\[)(?i:url)=([^\]]+)(\])
201
+ contentName: string.other.link.title.bbcode
202
+ beginCaptures:
203
+ "0":
204
+ name: meta.tag.bbcode
205
+ "1":
206
+ name: punctuation.definition.tag.bbcode
207
+ "2":
208
+ name: markup.underline.link.bbcode
209
+ "3":
210
+ name: punctuation.definition.tag.bbcode
211
+ end: (\[/)(?i:url)(\])
212
+ patterns:
213
+ - include: $self
214
+ - name: meta.link.inline.bbcode
215
+ captures:
216
+ "0":
217
+ name: meta.tag.bbcode
218
+ "1":
219
+ name: punctuation.definition.tag.bbcode
220
+ "2":
221
+ name: punctuation.definition.tag.bbcode
222
+ begin: (\[)(?i:url)(\])
223
+ contentName: markup.underline.link.bbcode
224
+ end: (\[/)(?i:url)(\])
225
+ patterns:
226
+ - match: "[\\[]]+"
227
+ - name: meta.link.inline.bbcode
228
+ captures:
229
+ "0":
230
+ name: meta.tag.bbcode
231
+ "1":
232
+ name: punctuation.definition.tag.bbcode
233
+ "2":
234
+ name: punctuation.definition.tag.bbcode
235
+ begin: (\[)(?i:email)(\])
236
+ contentName: markup.underline.link.email.bbcode
237
+ end: (\[/)(?i:email)(\])
238
+ patterns:
239
+ - match: "[\\[]]+"
240
+ - name: meta.link.image.bbcode
241
+ endCaptures:
242
+ "0":
243
+ name: meta.tag.bbcode
244
+ "1":
245
+ name: punctuation.definition.tag.bbcode
246
+ "2":
247
+ name: punctuation.definition.tag.bbcode
248
+ begin: (\[)(?i:img)(:((?i:right|left|top))|([^\]]+))?(\])
249
+ contentName: markup.underline.link.image.bbcode
250
+ beginCaptures:
251
+ "0":
252
+ name: meta.tag.bbcode
253
+ "1":
254
+ name: punctuation.definition.tag.bbcode
255
+ "3":
256
+ name: constant.other.alignment.bbcode
257
+ "4":
258
+ name: invalid.illegal.expected-an-alignment.bbcode
259
+ "5":
260
+ name: punctuation.definition.tag.bbcode
261
+ end: (\[/)(?i:img)(\])
262
+ patterns:
263
+ - match: "[\\[]]+?"
264
+ - name: constant.other.smiley.bbcode
265
+ captures:
266
+ "3":
267
+ name: punctuation.definition.constant.bbcode
268
+ "5":
269
+ name: punctuation.definition.constant.bbcode
270
+ match: |-
271
+ (?x)
272
+ (
273
+ (
274
+ (:)
275
+ (mad|rolleyes|cool|eek|confused|devious|
276
+ judge|scared|eyebrow|bigdumbgrin)
277
+ (:)
278
+ )
279
+ | (?::\)|;\)|:D|:\(|:p|:o)
280
+ )
281
+ foldingStopMarker: |-
282
+ (?x)
283
+ (\[/(?i:quote|code|list)\b.*?\]
284
+ |^\s*-->
285
+ |(^|\s)\}
286
+ )
287
+ keyEquivalent: ^~B
@@ -0,0 +1,55 @@
1
+ ---
2
+ name: Cake
3
+ fileTypes:
4
+ - thtml
5
+ scopeName: source.php.cake
6
+ uuid: 3DF2FE0B-94CC-4EE2-A50A-BD4823D1B09D
7
+ foldingStartMarker: (/\*|\{|\()
8
+ patterns:
9
+ - name: support.function.model.cake
10
+ match: \b(bindModel|unbindModel|hasField|read|field|save|saveField|remove|del|delete|exists|hasAny|find|findAll|findCount|execute|query|validates|invalidate|invalidFields|isForeignKey|getDisplayField|generateList|getID|getLastInsertID|getInsertID|getNumRows|getAffectedRows|setDatasource|beforeFind|afterFind|beforeSave|afterSave|beforeDelete|afterDelete)\b
11
+ - name: support.function.controller.cake
12
+ match: \b(redirect|set|setAction|validate|validateErrors|render|referer|flash|flashOut|generateFieldNames|postCondtions|cleanUpFields|beforeFilter|beforeRender|afterFilter)\b
13
+ - name: support.constant.core.cake
14
+ match: \b(ACL_CLASSNAME|ACL_FILENAME|APP|APP_DIR|APP_PATH|AUTO_OUTPUT|AUTO_SESSION|CACHE|CACHE_CHECK|CAKE|CAKE_CORE_INCLUDE_PATH|CAKE_SECURITY|CAKE_SESSION_COOKIE|CAKE_SESSION_SAVE|CAKE_SESSION_STRING|CAKE_SESSION_TIMEOUT|COMPONENTS|COMPRESS_CSS|CONFIGS|CONTROLLER_TESTS|CONTROLLERS|CORE_PATH|CSS|DAY|DEBUG|DS|ELEMENTS|HELPER_TESTS|HELPERS|HOUR|INFLECTIONS|JS|LAYOUTS|LIB_TESTS|LIBS|LOG_ERROR|LOGS|MAX_MD5SIZE|MINUTE|MODEL_TESTS|MODELS|MODULES|MONTH|PEAR|ROOT|SCRIPTS|SECOND|TAG_DIV|TAG_FIELDSET|TAG_LABEL|TAG_P_CLASS|TESTS|TMP|VALID_EMAIL|VALID_NOT_EMPTY|VALID_NUMBER|VALID_YEAR|VENDORS|VIEWS|WEBROOT_DIR|WEBSERVICES|WEEK|WWW_ROOT|YEAR)\b
15
+ - name: invalid.deprecated.model.cake
16
+ match: \b(setId|findBySql)\b
17
+ - name: invalid.deprecated.helper.html.cake
18
+ match: \b(areaTag|charsetTag|checkboxTag|contentTag|cssTag|fileTag|formTag|guiListTag|hiddenTag|imageTag|inputTag|javascriptIncludeTag|javascriptTag|linkEmail|linkOut|linkTo|parseHtmlOptions|passwordTag|radioTags|submitTag|tag|urlFor)\b
19
+ - name: invalid.deprecated.helper.ajax.cake
20
+ match: \b(linkToRemote)\b
21
+ - name: support.function.helper.cake
22
+ match: \b(isFieldError|labelTag|divTag|pTag|generate(Input|Checkbox|Area|Select|submit)Div|generate(Date|DateTime|Fields))\b
23
+ - name: support.function.helper.html.cake
24
+ match: \b(addCrumb|charset|url|link|submit|password|textarea|checkbox|css|file|getCrumbs|hidden|image|input|radio|tableHeaders|tableCells|validate|tagIsValid|validateErrors|tagErrorMsg|selectTag|(day|year|month|hour|minute|meridian|date)OptionTag)\b
25
+ - name: support.function.helper.ajax.cake
26
+ match: \b(link|remoteFunction|remoteTimer|form|submit|observe(Field|Form)|autoComplete|drag|drop|dropRemote|slider|editor|sortable)\b
27
+ - name: support.function.file.cake
28
+ match: \b(read|append|write|get(Md5|Size|Ext|Name|Owner|Group|Folder|Chmod|FullPath)|create|exists|delete|writable|executable|readable|last(Access|Change))\b
29
+ - name: support.function.log.cake
30
+ match: \b(write)\b
31
+ - name: support.function.helper.number.cake
32
+ match: \b(precision|toReadableSize|toPercentage)\b
33
+ - name: support.function.component.requestHandler.cake
34
+ match: \b(startup|setAjax|is(Ajax|Xml|Rss|Atom|Post|Get|Delete|Mobile)|getAjaxVersion|setContent|get(Referer|ClientIP)|strip(WhiteSpace|Images|Scripts|All|tags)|accepts|prefers)\b
35
+ - name: support.function.component.session.cake
36
+ match: \b(write|read|del|delete|check|error|setFlash|flash|renew|valid)\b
37
+ - name: support.function.component.security.cake
38
+ match: \b(startup|blackHole|requirePost|requireAuth)\b
39
+ - name: support.function.component.sanitize.cake
40
+ match: \b(paranoid|sql|html|cleanArray|cleanArrayR|cleanValue|formatColumns)\b
41
+ - name: support.function.helper.time.cake
42
+ match: \b(trim|fromString|nice|niceShort|isToday|daysAsSql|dayAsSql|isThisYear|wasYesterday|isTomorrow|toUnix|toAtom|toRSS|timeAgoInWords|relativeTime|wasWithinLast)\b
43
+ - name: support.function.helper.text.cake
44
+ match: \b(highlight|stripLinks|autoLinkUrls|autoLinkEmails|autoLink|truncate|excerpt|flay)\b
45
+ - name: support.function.helper.javascript.cake
46
+ match: \b(codeBlock|link|linkOut|escape(String|Script)|event|(cache|write)Events|includeScript|object)\b
47
+ - name: support.function.neatArray.cake
48
+ match: \b(findIn|cleanup|add|plus|totals|filter|walk|sprintf|extract|unique|makeUnique|joinWith|threaded|multi_search)\b
49
+ - name: support.function.neatString.cake
50
+ match: \b(toArray|toRoman|toCompressed|randomPassword)\b
51
+ - name: support.function.basics.cake
52
+ match: \b(load(Models|PluginModels|View|Model|Controllers|PluginController)|listClasses|config|gendor|debug|aa|ha|a|e|low|up|r|pr|params|am|setUri|env|cache|clearCache|stripslashes_deep|countDim|LogError|fileExistsInPAth|convertSlash)\b
53
+ - include: source.php
54
+ - include: text.html.basic
55
+ foldingStopMarker: (\*/|\}|\))