redcar 0.3.1dev → 0.3.2dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (316) hide show
  1. data/CHANGES +34 -1
  2. data/README.md +2 -1
  3. data/ROADMAP.md +13 -45
  4. data/Rakefile +15 -14
  5. data/bin/redcar +4 -1
  6. data/lib/plugin_manager/README.md +61 -0
  7. data/lib/plugin_manager/Rakefile +55 -0
  8. data/lib/plugin_manager/bin/plugin_manager +4 -0
  9. data/lib/plugin_manager/lib/plugin_manager.rb +107 -0
  10. data/lib/plugin_manager/lib/plugin_manager/definition_builder.rb +37 -0
  11. data/lib/plugin_manager/lib/plugin_manager/plugin.rb +9 -0
  12. data/lib/plugin_manager/lib/plugin_manager/plugin_definition.rb +50 -0
  13. data/lib/plugin_manager/plugin_manager.gemspec +33 -0
  14. data/lib/plugin_manager/spec/fixtures/error_in_definition/core/plugin.rb +2 -0
  15. data/lib/plugin_manager/spec/fixtures/error_in_plugin/core/core.rb +4 -0
  16. data/lib/plugin_manager/spec/fixtures/error_in_plugin/core/plugin.rb +7 -0
  17. data/lib/plugin_manager/spec/fixtures/example/core/core.rb +20 -0
  18. data/lib/plugin_manager/spec/fixtures/example/core/plugin.rb +7 -0
  19. data/lib/plugin_manager/spec/fixtures/example/debug/debug.rb +6 -0
  20. data/lib/plugin_manager/spec/fixtures/example/debug/plugin.rb +8 -0
  21. data/lib/plugin_manager/spec/fixtures/example/extras/extras.rb +6 -0
  22. data/lib/plugin_manager/spec/fixtures/example/extras/plugin.rb +8 -0
  23. data/lib/plugin_manager/spec/fixtures/two_versions1/core/core.rb +20 -0
  24. data/lib/plugin_manager/spec/fixtures/two_versions1/core/plugin.rb +7 -0
  25. data/lib/plugin_manager/spec/fixtures/two_versions1/core2/core.rb +20 -0
  26. data/lib/plugin_manager/spec/fixtures/two_versions1/core2/plugin.rb +7 -0
  27. data/lib/plugin_manager/spec/fixtures/two_versions2/core/core.rb +20 -0
  28. data/lib/plugin_manager/spec/fixtures/two_versions2/core/plugin.rb +7 -0
  29. data/lib/plugin_manager/spec/fixtures/two_versions2/core2/core.rb +20 -0
  30. data/lib/plugin_manager/spec/fixtures/two_versions2/core2/plugin.rb +8 -0
  31. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/core/core.rb +10 -0
  32. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/core/plugin.rb +7 -0
  33. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/debug/debug.rb +6 -0
  34. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/debug/plugin.rb +8 -0
  35. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/core/core.rb +10 -0
  36. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/core/plugin.rb +7 -0
  37. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/debug/debug.rb +6 -0
  38. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/debug/plugin.rb +8 -0
  39. data/lib/plugin_manager/spec/plugin_manager_spec.rb +208 -0
  40. data/lib/plugin_manager/spec/spec_helper.rb +3 -0
  41. data/lib/redcar.rb +8 -3
  42. data/lib/redcar/boot.rb +59 -56
  43. data/lib/redcar/installer.rb +1 -1
  44. data/lib/redcar/instance_exec.rb +25 -0
  45. data/lib/redcar/runner.rb +5 -1
  46. data/lib/redcar/usage.rb +5 -1
  47. data/plugins/application/icons/close.png +0 -0
  48. data/plugins/application/lib/application.rb +61 -28
  49. data/plugins/application/lib/application/clipboard.rb +71 -0
  50. data/plugins/application/lib/application/dialog.rb +63 -0
  51. data/plugins/application/lib/application/menu.rb +32 -1
  52. data/plugins/application/lib/application/menu/builder.rb +10 -4
  53. data/plugins/application/lib/application/menu/item.rb +16 -3
  54. data/plugins/application/lib/application/notebook.rb +5 -0
  55. data/plugins/application/lib/application/speedbar.rb +73 -0
  56. data/plugins/application/lib/application/window.rb +25 -0
  57. data/plugins/application/plugin.rb +8 -0
  58. data/plugins/application/spec/application/clipboard_spec.rb +36 -0
  59. data/plugins/application/spec/application/menu_spec.rb +73 -1
  60. data/plugins/application/spec/application/speedbar_spec.rb +46 -0
  61. data/plugins/application/spec/spec_helper.rb +1 -1
  62. data/plugins/application_swt/lib/application_swt.rb +18 -11
  63. data/plugins/application_swt/lib/application_swt/clipboard.rb +42 -0
  64. data/plugins/application_swt/lib/application_swt/dialog_adapter.rb +68 -0
  65. data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +1 -1
  66. data/plugins/application_swt/lib/application_swt/html_tab.rb +32 -0
  67. data/plugins/application_swt/lib/application_swt/menu.rb +57 -21
  68. data/plugins/application_swt/lib/application_swt/menu/binding_translator.rb +39 -2
  69. data/plugins/application_swt/lib/application_swt/notebook.rb +5 -0
  70. data/plugins/application_swt/lib/application_swt/speedbar.rb +187 -0
  71. data/plugins/application_swt/lib/application_swt/swt_wrapper.rb +24 -1
  72. data/plugins/application_swt/lib/application_swt/window.rb +33 -3
  73. data/plugins/application_swt/plugin.rb +8 -0
  74. data/plugins/application_swt/spec/spec_helper.rb +1 -1
  75. data/plugins/auto_completer/features/auto_complete.feature +65 -0
  76. data/plugins/auto_completer/features/step_definitions/auto_complete_steps.rb +4 -0
  77. data/plugins/auto_completer/features/support/env.rb +4 -0
  78. data/plugins/auto_completer/lib/auto_completer.rb +99 -0
  79. data/plugins/auto_completer/lib/auto_completer/document_controller.rb +52 -0
  80. data/plugins/auto_completer/lib/auto_completer/word_iterator.rb +48 -0
  81. data/plugins/auto_completer/lib/auto_completer/word_list.rb +40 -0
  82. data/plugins/auto_completer/plugin.rb +10 -0
  83. data/plugins/auto_indenter/lib/auto_indenter.rb +1 -1
  84. data/plugins/auto_indenter/lib/auto_indenter/document_controller.rb +1 -1
  85. data/plugins/auto_indenter/plugin.rb +8 -0
  86. data/plugins/core/lib/core.rb +6 -30
  87. data/plugins/core/lib/core/gui.rb +7 -2
  88. data/plugins/core/lib/core/logger.rb +7 -4
  89. data/plugins/core/lib/core/plugin/storage.rb +15 -5
  90. data/plugins/core/plugin.rb +7 -0
  91. data/plugins/core/spec/core/storage_spec.rb +0 -9
  92. data/plugins/edit_view/features/cut_and_paste.feature +45 -0
  93. data/plugins/edit_view/features/step_definitions/editing_steps.rb +22 -0
  94. data/plugins/edit_view/features/step_definitions/key_steps.rb +1 -1
  95. data/plugins/edit_view/features/step_definitions/notebook_steps.rb +1 -1
  96. data/plugins/edit_view/features/step_definitions/tab_steps.rb +2 -0
  97. data/plugins/edit_view/features/step_definitions/window_steps.rb +1 -1
  98. data/plugins/edit_view/features/support/env.rb +2 -2
  99. data/plugins/edit_view/lib/edit_view.rb +24 -13
  100. data/plugins/edit_view/lib/edit_view/document.rb +233 -15
  101. data/plugins/edit_view/lib/edit_view/edit_tab.rb +2 -2
  102. data/plugins/edit_view/plugin.rb +9 -0
  103. data/plugins/edit_view/spec/spec_helper.rb +1 -1
  104. data/plugins/edit_view_swt/lib/edit_view_swt.rb +37 -8
  105. data/plugins/edit_view_swt/lib/edit_view_swt/document.rb +59 -24
  106. data/plugins/edit_view_swt/lib/edit_view_swt/word_movement.rb +66 -0
  107. data/plugins/edit_view_swt/plugin.rb +9 -0
  108. data/plugins/edit_view_swt/spec/edit_view_swt/word_movement_spec.rb +29 -0
  109. data/plugins/edit_view_swt/spec/spec_helper.rb +6 -0
  110. data/plugins/html_view/assets/blueprint/ie.css +35 -0
  111. data/plugins/html_view/assets/blueprint/print.css +29 -0
  112. data/plugins/html_view/assets/blueprint/screen.css +257 -0
  113. data/plugins/html_view/assets/blueprint/src/forms.css +65 -0
  114. data/plugins/html_view/assets/blueprint/src/grid.css +281 -0
  115. data/plugins/html_view/assets/blueprint/src/grid.png +0 -0
  116. data/plugins/html_view/assets/blueprint/src/ie.css +76 -0
  117. data/plugins/html_view/assets/blueprint/src/print.css +85 -0
  118. data/plugins/html_view/assets/blueprint/src/reset.css +38 -0
  119. data/plugins/html_view/assets/blueprint/src/typography.css +106 -0
  120. data/plugins/html_view/assets/jquery-1.4.min.js +151 -0
  121. data/plugins/html_view/assets/redcar.css +12 -0
  122. data/plugins/html_view/lib/html_controller.rb +5 -0
  123. data/plugins/html_view/lib/html_view.rb +47 -0
  124. data/plugins/html_view/lib/html_view/html_tab.rb +16 -0
  125. data/plugins/html_view/plugin.rb +12 -0
  126. data/plugins/my_plugin/lib/my_plugin.rb +55 -0
  127. data/plugins/my_plugin/plugin.rb +8 -0
  128. data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +62 -0
  129. data/plugins/plugin_manager_ui/plugin.rb +12 -0
  130. data/plugins/plugin_manager_ui/views/index.html.erb +31 -0
  131. data/plugins/project/lib/project.rb +27 -13
  132. data/plugins/project/lib/project/find_file_dialog.rb +25 -19
  133. data/plugins/project/plugin.rb +8 -0
  134. data/plugins/project/spec/spec_helper.rb +1 -1
  135. data/plugins/redcar/plugin.rb +13 -0
  136. data/plugins/redcar/redcar.rb +249 -8
  137. data/plugins/repl/lib/repl.rb +22 -14
  138. data/plugins/repl/plugin.rb +8 -0
  139. data/plugins/repl/spec/spec_helper.rb +1 -1
  140. data/plugins/tree/plugin.rb +9 -0
  141. data/plugins/tree/spec/spec_helper.rb +1 -1
  142. data/plugins/tree_view_swt/plugin.rb +9 -0
  143. data/textmate/Bundles/Apache.tmbundle/Syntaxes/Apache.plist +544 -0
  144. data/textmate/Bundles/Apache.tmbundle/Syntaxes/mod_perl.tmLanguage +120 -0
  145. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___HTML__.plist +88 -0
  146. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Markdown__.plist +89 -0
  147. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Text__.plist +74 -0
  148. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Textile__.plist +74 -0
  149. data/textmate/Bundles/Bundle Development.tmbundle/Syntaxes/LanguageGrammar.tmLanguage +1829 -0
  150. data/textmate/Bundles/C Sharp.tmbundle/Syntaxes/Build.tmLanguage +142 -0
  151. data/textmate/Bundles/C Sharp.tmbundle/Syntaxes/C__.tmLanguage +524 -0
  152. data/textmate/Bundles/C++ Qt.tmbundle/Syntaxes/Qt_C____.tmLanguage +62 -0
  153. data/textmate/Bundles/C++ Qt.tmbundle/Syntaxes/qmake_Project.tmLanguage +308 -0
  154. data/textmate/Bundles/C.tmbundle/Syntaxes/C.plist +90 -48
  155. data/textmate/Bundles/Clojure.tmbundle/Syntaxes/Clojure.tmLanguage +427 -0
  156. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/Cucumber_Plain_Text_Feature.tmLanguage +106 -13
  157. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/Cucumber_Steps.tmLanguage +177 -2
  158. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/plaintext_template.erb +109 -17
  159. data/textmate/Bundles/D.tmbundle/Syntaxes/D.tmLanguage +908 -0
  160. data/textmate/Bundles/Diff.tmbundle/Syntaxes/Diff.plist +229 -0
  161. data/textmate/Bundles/DokuWiki.tmbundle/Syntaxes/DokuWiki.tmLanguage +649 -0
  162. data/textmate/Bundles/F-Script.tmbundle/Syntaxes/F__Script.plist +219 -0
  163. data/textmate/Bundles/Haskell.tmbundle/Syntaxes/Haskell.plist +646 -0
  164. data/textmate/Bundles/Haskell.tmbundle/Syntaxes/Literate_Haskell.plist +90 -0
  165. data/textmate/Bundles/Io.tmbundle/Syntaxes/Io.plist +225 -0
  166. data/textmate/Bundles/JSON.tmbundle/Syntaxes/JSON.tmLanguage +285 -0
  167. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Syntaxes/JavaScript____Prototype.tmLanguage +193 -0
  168. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Syntaxes/JavaScript____Prototype_Bracketed.tmLanguage +394 -0
  169. data/textmate/Bundles/JavaScript jQuery.tmbundle/Syntaxes/jQuery___JavaScript__.tmLanguage +440 -0
  170. data/textmate/Bundles/JavaScript.tmbundle/Syntaxes/JavaScript.plist +712 -0
  171. data/textmate/Bundles/Latex.tmbundle/Syntaxes/Bibtex.plist +406 -0
  172. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX.plist +1601 -0
  173. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Beamer.plist +106 -0
  174. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Log.plist +141 -0
  175. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Memoir.tmLanguage +165 -0
  176. data/textmate/Bundles/Latex.tmbundle/Syntaxes/TeX.plist +246 -0
  177. data/textmate/Bundles/Latex.tmbundle/Syntaxes/TeX_Math.plist +132 -0
  178. data/textmate/Bundles/Lisp.tmbundle/Syntaxes/Lisp.plist +160 -0
  179. data/textmate/Bundles/Makefile.tmbundle/Syntaxes/Makefile.plist +103 -0
  180. data/textmate/Bundles/Markdown.tmbundle/Syntaxes/Markdown.plist +1192 -0
  181. data/textmate/Bundles/Markdown.tmbundle/Syntaxes/MultiMarkdown.tmLanguage +80 -0
  182. data/textmate/Bundles/PHP.tmbundle/Syntaxes/PHP.plist +3481 -0
  183. data/textmate/Bundles/Perl HTML-Template.tmbundle/Syntaxes/Perl_HTML__Template.tmLanguage +217 -0
  184. data/textmate/Bundles/Perl Template Toolkit.tmbundle/Syntaxes/HTML___Template_Toolkit__.tmLanguage +339 -0
  185. data/textmate/Bundles/Postscript.tmbundle/Syntaxes/Postscript.tmLanguage +321 -0
  186. data/textmate/Bundles/Processing.tmbundle/Syntaxes/Processing.plist +296 -0
  187. data/textmate/Bundles/Property List.tmbundle/Syntaxes/Property_List.tmLanguage +1650 -0
  188. data/textmate/Bundles/Python Django Templates.tmbundle/Syntaxes/HTML___Django__.tmLanguage +104 -0
  189. data/textmate/Bundles/Python Django.tmbundle/Syntaxes/Python_Django.tmLanguage +57 -0
  190. data/textmate/Bundles/Python.tmbundle/Syntaxes/Python.tmLanguage +3016 -0
  191. data/textmate/Bundles/Python.tmbundle/Syntaxes/Regular_Expressions___Python__.tmLanguage +299 -0
  192. data/textmate/Bundles/Rez.tmbundle/Syntaxes/Rez.plist +219 -0
  193. data/textmate/Bundles/Ruby Haml.tmbundle/Syntaxes/Ruby_Haml.tmLanguage +403 -0
  194. data/textmate/Bundles/Ruby RSpec.tmbundle/Syntaxes/RSpec.tmLanguage +142 -0
  195. data/textmate/Bundles/Ruby.tmbundle/Syntaxes/Ruby.plist +139 -49
  196. data/textmate/Bundles/SQL.tmbundle/Syntaxes/SQL.plist +705 -0
  197. data/textmate/Bundles/SSH-Config.tmbundle/Syntaxes/SSH__Config.tmLanguage +88 -0
  198. data/textmate/Bundles/Scala.tmbundle/Syntaxes/Scala.tmLanguage +609 -0
  199. data/textmate/Bundles/Scala.tmbundle/Syntaxes/Scala_Properties.tmLanguage +54 -0
  200. data/textmate/Bundles/ShellScript.tmbundle/Syntaxes/Shell__Unix__Generic.plist +1855 -0
  201. data/textmate/Bundles/Tabular.tmbundle/Syntaxes/CSV.tmLanguage +178 -0
  202. data/textmate/Bundles/Tabular.tmbundle/Syntaxes/TSV.tmLanguage +135 -0
  203. data/textmate/Bundles/TextMate.tmbundle/Syntaxes/Regular_Expressions___Oniguruma__.tmLanguage +295 -0
  204. data/textmate/Bundles/TextMate.tmbundle/Syntaxes/Release_Notes.tmLanguage +126 -0
  205. data/textmate/Bundles/Textile.tmbundle/Syntaxes/Textile.plist +490 -0
  206. data/textmate/Bundles/Thrift.tmbundle/Syntaxes/Thrift.tmLanguage +1024 -0
  207. data/textmate/Bundles/XML.tmbundle/Syntaxes/XML.plist +576 -0
  208. data/textmate/Bundles/XML.tmbundle/Syntaxes/XSL.plist +157 -0
  209. data/textmate/Bundles/YAML.tmbundle/Syntaxes/YAML.plist +466 -0
  210. data/textmate/Themes/Django.tmTheme +436 -0
  211. metadata +371 -325
  212. data/config/default.yaml +0 -15
  213. data/lib/freebase2/README.txt +0 -47
  214. data/lib/freebase2/bin/default.yaml +0 -15
  215. data/lib/freebase2/bin/install.rb +0 -42
  216. data/lib/freebase2/bin/run.rb +0 -48
  217. data/lib/freebase2/lib/freebase/configuration.rb +0 -535
  218. data/lib/freebase2/lib/freebase/core.rb +0 -197
  219. data/lib/freebase2/lib/freebase/databus.rb +0 -1128
  220. data/lib/freebase2/lib/freebase/freebase.rb +0 -60
  221. data/lib/freebase2/lib/freebase/logger.rb +0 -117
  222. data/lib/freebase2/lib/freebase/plugin.rb +0 -384
  223. data/lib/freebase2/lib/freebase/properties.rb +0 -130
  224. data/lib/freebase2/lib/freebase/readers.rb +0 -328
  225. data/lib/freebase2/notes +0 -61
  226. data/lib/freebase2/plugins/raa_webrick/httpd.rb +0 -125
  227. data/lib/freebase2/plugins/raa_webrick/plugin.yaml +0 -7
  228. data/lib/freebase2/plugins/raa_webrick/web_root/test.html +0 -5
  229. data/lib/freebase2/plugins/raa_webrick/webserver.yaml +0 -6
  230. data/lib/freebase2/plugins/raa_xmlrpc4r/plugin.xml +0 -8
  231. data/lib/freebase2/plugins/raa_xmlrpc4r/rpcd.rb +0 -54
  232. data/lib/freebase2/regress/README +0 -1
  233. data/lib/little_plugger/History.txt +0 -20
  234. data/lib/little_plugger/Rakefile +0 -34
  235. data/lib/little_plugger/lib/little-plugger.rb +0 -323
  236. data/lib/little_plugger/spec/little-plugger_spec.rb +0 -26
  237. data/lib/little_plugger/spec/spec_helper.rb +0 -16
  238. data/lib/logging/History.txt +0 -240
  239. data/lib/logging/Rakefile +0 -37
  240. data/lib/logging/data/bad_logging_1.rb +0 -13
  241. data/lib/logging/data/bad_logging_2.rb +0 -21
  242. data/lib/logging/data/logging.rb +0 -42
  243. data/lib/logging/data/logging.yaml +0 -63
  244. data/lib/logging/data/simple_logging.rb +0 -13
  245. data/lib/logging/examples/appenders.rb +0 -47
  246. data/lib/logging/examples/classes.rb +0 -41
  247. data/lib/logging/examples/consolidation.rb +0 -83
  248. data/lib/logging/examples/formatting.rb +0 -51
  249. data/lib/logging/examples/hierarchies.rb +0 -73
  250. data/lib/logging/examples/layouts.rb +0 -48
  251. data/lib/logging/examples/loggers.rb +0 -29
  252. data/lib/logging/examples/names.rb +0 -43
  253. data/lib/logging/examples/simple.rb +0 -17
  254. data/lib/logging/lib/logging.rb +0 -501
  255. data/lib/logging/lib/logging/appender.rb +0 -251
  256. data/lib/logging/lib/logging/appenders.rb +0 -131
  257. data/lib/logging/lib/logging/appenders/buffering.rb +0 -168
  258. data/lib/logging/lib/logging/appenders/console.rb +0 -60
  259. data/lib/logging/lib/logging/appenders/email.rb +0 -75
  260. data/lib/logging/lib/logging/appenders/file.rb +0 -58
  261. data/lib/logging/lib/logging/appenders/growl.rb +0 -197
  262. data/lib/logging/lib/logging/appenders/io.rb +0 -69
  263. data/lib/logging/lib/logging/appenders/rolling_file.rb +0 -293
  264. data/lib/logging/lib/logging/appenders/string_io.rb +0 -68
  265. data/lib/logging/lib/logging/appenders/syslog.rb +0 -194
  266. data/lib/logging/lib/logging/config/configurator.rb +0 -188
  267. data/lib/logging/lib/logging/config/yaml_configurator.rb +0 -191
  268. data/lib/logging/lib/logging/layout.rb +0 -117
  269. data/lib/logging/lib/logging/layouts.rb +0 -47
  270. data/lib/logging/lib/logging/layouts/basic.rb +0 -32
  271. data/lib/logging/lib/logging/layouts/parseable.rb +0 -211
  272. data/lib/logging/lib/logging/layouts/pattern.rb +0 -311
  273. data/lib/logging/lib/logging/log_event.rb +0 -45
  274. data/lib/logging/lib/logging/logger.rb +0 -503
  275. data/lib/logging/lib/logging/repository.rb +0 -232
  276. data/lib/logging/lib/logging/root_logger.rb +0 -61
  277. data/lib/logging/lib/logging/stats.rb +0 -278
  278. data/lib/logging/lib/logging/utils.rb +0 -153
  279. data/lib/logging/lib/spec/logging_helper.rb +0 -34
  280. data/lib/logging/test/appenders/test_buffered_io.rb +0 -176
  281. data/lib/logging/test/appenders/test_console.rb +0 -66
  282. data/lib/logging/test/appenders/test_email.rb +0 -170
  283. data/lib/logging/test/appenders/test_file.rb +0 -95
  284. data/lib/logging/test/appenders/test_growl.rb +0 -127
  285. data/lib/logging/test/appenders/test_io.rb +0 -129
  286. data/lib/logging/test/appenders/test_rolling_file.rb +0 -200
  287. data/lib/logging/test/appenders/test_syslog.rb +0 -194
  288. data/lib/logging/test/benchmark.rb +0 -86
  289. data/lib/logging/test/config/test_configurator.rb +0 -70
  290. data/lib/logging/test/config/test_yaml_configurator.rb +0 -40
  291. data/lib/logging/test/layouts/test_basic.rb +0 -42
  292. data/lib/logging/test/layouts/test_json.rb +0 -112
  293. data/lib/logging/test/layouts/test_pattern.rb +0 -198
  294. data/lib/logging/test/layouts/test_yaml.rb +0 -121
  295. data/lib/logging/test/setup.rb +0 -44
  296. data/lib/logging/test/test_appender.rb +0 -152
  297. data/lib/logging/test/test_consolidate.rb +0 -46
  298. data/lib/logging/test/test_layout.rb +0 -110
  299. data/lib/logging/test/test_log_event.rb +0 -80
  300. data/lib/logging/test/test_logger.rb +0 -699
  301. data/lib/logging/test/test_logging.rb +0 -267
  302. data/lib/logging/test/test_repository.rb +0 -158
  303. data/lib/logging/test/test_root_logger.rb +0 -81
  304. data/lib/logging/test/test_stats.rb +0 -274
  305. data/lib/logging/test/test_utils.rb +0 -116
  306. data/plugins/application/plugin.yaml +0 -11
  307. data/plugins/application_swt/plugin.yaml +0 -11
  308. data/plugins/auto_indenter/plugin.yaml +0 -12
  309. data/plugins/core/plugin.yaml +0 -7
  310. data/plugins/edit_view/plugin.yaml +0 -14
  311. data/plugins/edit_view_swt/plugin.yaml +0 -14
  312. data/plugins/project/plugin.yaml +0 -12
  313. data/plugins/redcar/plugin.yaml +0 -18
  314. data/plugins/repl/plugin.yaml +0 -12
  315. data/plugins/tree/plugin.yaml +0 -14
  316. data/plugins/tree_view_swt/plugin.yaml +0 -14
@@ -0,0 +1,1829 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>fileTypes</key>
6
+ <array>
7
+ <string>textmate</string>
8
+ </array>
9
+ <key>firstLineMatch</key>
10
+ <string>^\{\s*scopeName = .*$</string>
11
+ <key>foldingStartMarker</key>
12
+ <string>^\s*([a-zA-Z_-]+ = )?[{(](?!.*[)}][;,]?\s*$)</string>
13
+ <key>foldingStopMarker</key>
14
+ <string>^\s*(\}|\))</string>
15
+ <key>keyEquivalent</key>
16
+ <string>^~L</string>
17
+ <key>name</key>
18
+ <string>Language Grammar</string>
19
+ <key>patterns</key>
20
+ <array>
21
+ <dict>
22
+ <key>begin</key>
23
+ <string>(\{)</string>
24
+ <key>captures</key>
25
+ <dict>
26
+ <key>1</key>
27
+ <dict>
28
+ <key>name</key>
29
+ <string>punctuation.section.dictionary.tm-grammar</string>
30
+ </dict>
31
+ </dict>
32
+ <key>end</key>
33
+ <string>(\})</string>
34
+ <key>patterns</key>
35
+ <array>
36
+ <dict>
37
+ <key>include</key>
38
+ <string>#comment</string>
39
+ </dict>
40
+ <dict>
41
+ <key>begin</key>
42
+ <string>\b(scopeName)\s*(=)</string>
43
+ <key>beginCaptures</key>
44
+ <dict>
45
+ <key>1</key>
46
+ <dict>
47
+ <key>name</key>
48
+ <string>support.constant.tm-grammar</string>
49
+ </dict>
50
+ <key>2</key>
51
+ <dict>
52
+ <key>name</key>
53
+ <string>punctuation.section.dictionary.tm-grammar</string>
54
+ </dict>
55
+ </dict>
56
+ <key>comment</key>
57
+ <string>scopeName</string>
58
+ <key>end</key>
59
+ <string>(;)</string>
60
+ <key>endCaptures</key>
61
+ <dict>
62
+ <key>1</key>
63
+ <dict>
64
+ <key>name</key>
65
+ <string>punctuation.section.dictionary.tm-grammar</string>
66
+ </dict>
67
+ </dict>
68
+ <key>name</key>
69
+ <string>meta.value-pair.scopename.tm-grammar</string>
70
+ <key>patterns</key>
71
+ <array>
72
+ <dict>
73
+ <key>include</key>
74
+ <string>#comment</string>
75
+ </dict>
76
+ <dict>
77
+ <key>include</key>
78
+ <string>#scope-root</string>
79
+ </dict>
80
+ <dict>
81
+ <key>include</key>
82
+ <string>#catch-all</string>
83
+ </dict>
84
+ </array>
85
+ </dict>
86
+ <dict>
87
+ <key>begin</key>
88
+ <string>\b(fileTypes)\s*(=)</string>
89
+ <key>beginCaptures</key>
90
+ <dict>
91
+ <key>1</key>
92
+ <dict>
93
+ <key>name</key>
94
+ <string>support.constant.tm-grammar</string>
95
+ </dict>
96
+ <key>2</key>
97
+ <dict>
98
+ <key>name</key>
99
+ <string>punctuation.separator.key-value.tm-grammar</string>
100
+ </dict>
101
+ </dict>
102
+ <key>comment</key>
103
+ <string>fileTypes</string>
104
+ <key>end</key>
105
+ <string>(;)</string>
106
+ <key>endCaptures</key>
107
+ <dict>
108
+ <key>1</key>
109
+ <dict>
110
+ <key>name</key>
111
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
112
+ </dict>
113
+ </dict>
114
+ <key>patterns</key>
115
+ <array>
116
+ <dict>
117
+ <key>begin</key>
118
+ <string>(\()</string>
119
+ <key>captures</key>
120
+ <dict>
121
+ <key>1</key>
122
+ <dict>
123
+ <key>name</key>
124
+ <string>punctuation.section.array.tm-grammar</string>
125
+ </dict>
126
+ </dict>
127
+ <key>end</key>
128
+ <string>(\))</string>
129
+ <key>patterns</key>
130
+ <array>
131
+ <dict>
132
+ <key>include</key>
133
+ <string>#comment</string>
134
+ </dict>
135
+ <dict>
136
+ <key>begin</key>
137
+ <string>(?=[^\s,])</string>
138
+ <key>end</key>
139
+ <string>(,)|(?=\))</string>
140
+ <key>endCaptures</key>
141
+ <dict>
142
+ <key>1</key>
143
+ <dict>
144
+ <key>name</key>
145
+ <string>punctuation.separator.array.tm-grammar</string>
146
+ </dict>
147
+ </dict>
148
+ <key>patterns</key>
149
+ <array>
150
+ <dict>
151
+ <key>include</key>
152
+ <string>#comment</string>
153
+ </dict>
154
+ <dict>
155
+ <key>match</key>
156
+ <string>\s+(?=//|/\*)</string>
157
+ </dict>
158
+ <dict>
159
+ <key>begin</key>
160
+ <string>[[^\n]&amp;&amp;\s](?!\s*(,|\)|$)).*</string>
161
+ <key>end</key>
162
+ <string>^$not possible$^</string>
163
+ <key>name</key>
164
+ <string>invalid.illegal.missing-comma.tm-grammar</string>
165
+ </dict>
166
+ <dict>
167
+ <key>include</key>
168
+ <string>#string</string>
169
+ </dict>
170
+ </array>
171
+ </dict>
172
+ <dict>
173
+ <key>include</key>
174
+ <string>#catch-all</string>
175
+ </dict>
176
+ </array>
177
+ </dict>
178
+ </array>
179
+ </dict>
180
+ <dict>
181
+ <key>begin</key>
182
+ <string>\b(firstLineMatch|folding(Start|Stop)Marker)\s*(=)</string>
183
+ <key>beginCaptures</key>
184
+ <dict>
185
+ <key>1</key>
186
+ <dict>
187
+ <key>name</key>
188
+ <string>support.constant.tm-grammar</string>
189
+ </dict>
190
+ <key>3</key>
191
+ <dict>
192
+ <key>name</key>
193
+ <string>punctuation.separator.key-value.tm-grammar</string>
194
+ </dict>
195
+ </dict>
196
+ <key>comment</key>
197
+ <string>firstLineMatch, foldingStartMarker, foldingStopMarker</string>
198
+ <key>end</key>
199
+ <string>(;)</string>
200
+ <key>endCaptures</key>
201
+ <dict>
202
+ <key>1</key>
203
+ <dict>
204
+ <key>name</key>
205
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
206
+ </dict>
207
+ </dict>
208
+ <key>patterns</key>
209
+ <array>
210
+ <dict>
211
+ <key>include</key>
212
+ <string>#comment</string>
213
+ </dict>
214
+ <dict>
215
+ <key>include</key>
216
+ <string>#regexp</string>
217
+ </dict>
218
+ <dict>
219
+ <key>include</key>
220
+ <string>#catch-all</string>
221
+ </dict>
222
+ </array>
223
+ </dict>
224
+ <dict>
225
+ <key>include</key>
226
+ <string>#patterns</string>
227
+ </dict>
228
+ <dict>
229
+ <key>begin</key>
230
+ <string>\b(repository)\s*(=)</string>
231
+ <key>beginCaptures</key>
232
+ <dict>
233
+ <key>1</key>
234
+ <dict>
235
+ <key>name</key>
236
+ <string>support.constant.repository.tm-grammar</string>
237
+ </dict>
238
+ <key>2</key>
239
+ <dict>
240
+ <key>name</key>
241
+ <string>punctuation.separator.key-value.tm-grammar</string>
242
+ </dict>
243
+ </dict>
244
+ <key>comment</key>
245
+ <string>repository</string>
246
+ <key>end</key>
247
+ <string>(;)</string>
248
+ <key>endCaptures</key>
249
+ <dict>
250
+ <key>1</key>
251
+ <dict>
252
+ <key>name</key>
253
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
254
+ </dict>
255
+ </dict>
256
+ <key>name</key>
257
+ <string>meta.dictionary.repository.tm-grammar</string>
258
+ <key>patterns</key>
259
+ <array>
260
+ <dict>
261
+ <key>begin</key>
262
+ <string>(\{)</string>
263
+ <key>captures</key>
264
+ <dict>
265
+ <key>1</key>
266
+ <dict>
267
+ <key>name</key>
268
+ <string>punctuation.section.dictionary.tm-grammar</string>
269
+ </dict>
270
+ </dict>
271
+ <key>end</key>
272
+ <string>(\})</string>
273
+ <key>patterns</key>
274
+ <array>
275
+ <dict>
276
+ <key>include</key>
277
+ <string>#comment</string>
278
+ </dict>
279
+ <dict>
280
+ <key>begin</key>
281
+ <string>(["']?)([-a-zA-Z0-9._]+)\1\s*(=)</string>
282
+ <key>beginCaptures</key>
283
+ <dict>
284
+ <key>2</key>
285
+ <dict>
286
+ <key>name</key>
287
+ <string>entity.name.section.repository.tm-grammar</string>
288
+ </dict>
289
+ <key>3</key>
290
+ <dict>
291
+ <key>name</key>
292
+ <string>punctuation.separator.key-value.tm-grammar</string>
293
+ </dict>
294
+ </dict>
295
+ <key>end</key>
296
+ <string>(;)</string>
297
+ <key>endCaptures</key>
298
+ <dict>
299
+ <key>1</key>
300
+ <dict>
301
+ <key>name</key>
302
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
303
+ </dict>
304
+ </dict>
305
+ <key>name</key>
306
+ <string>meta.value-pair.repository-item.tm-grammar</string>
307
+ <key>patterns</key>
308
+ <array>
309
+ <dict>
310
+ <key>include</key>
311
+ <string>#comment</string>
312
+ </dict>
313
+ <dict>
314
+ <key>include</key>
315
+ <string>#rule</string>
316
+ </dict>
317
+ <dict>
318
+ <key>include</key>
319
+ <string>#catch-all</string>
320
+ </dict>
321
+ </array>
322
+ </dict>
323
+ <dict>
324
+ <key>include</key>
325
+ <string>#string</string>
326
+ </dict>
327
+ <dict>
328
+ <key>begin</key>
329
+ <string>(=)</string>
330
+ <key>beginCaptures</key>
331
+ <dict>
332
+ <key>1</key>
333
+ <dict>
334
+ <key>name</key>
335
+ <string>punctuation.separator.key-value.tm-grammar</string>
336
+ </dict>
337
+ </dict>
338
+ <key>end</key>
339
+ <string>(;)</string>
340
+ <key>endCaptures</key>
341
+ <dict>
342
+ <key>1</key>
343
+ <dict>
344
+ <key>name</key>
345
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
346
+ </dict>
347
+ </dict>
348
+ <key>patterns</key>
349
+ <array>
350
+ <dict>
351
+ <key>include</key>
352
+ <string>#any</string>
353
+ </dict>
354
+ </array>
355
+ </dict>
356
+ <dict>
357
+ <key>match</key>
358
+ <string>;</string>
359
+ <key>name</key>
360
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
361
+ </dict>
362
+ <dict>
363
+ <key>include</key>
364
+ <string>#catch-all</string>
365
+ </dict>
366
+ </array>
367
+ </dict>
368
+ </array>
369
+ </dict>
370
+ <dict>
371
+ <key>include</key>
372
+ <string>#comment-keyword</string>
373
+ </dict>
374
+ <dict>
375
+ <key>include</key>
376
+ <string>#invalid-keyword</string>
377
+ </dict>
378
+ <dict>
379
+ <key>include</key>
380
+ <string>#string</string>
381
+ </dict>
382
+ <dict>
383
+ <key>begin</key>
384
+ <string>(=)</string>
385
+ <key>beginCaptures</key>
386
+ <dict>
387
+ <key>1</key>
388
+ <dict>
389
+ <key>name</key>
390
+ <string>punctuation.separator.key-value.tm-grammar</string>
391
+ </dict>
392
+ </dict>
393
+ <key>end</key>
394
+ <string>(;)</string>
395
+ <key>endCaptures</key>
396
+ <dict>
397
+ <key>1</key>
398
+ <dict>
399
+ <key>name</key>
400
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
401
+ </dict>
402
+ </dict>
403
+ <key>patterns</key>
404
+ <array>
405
+ <dict>
406
+ <key>include</key>
407
+ <string>#any</string>
408
+ </dict>
409
+ </array>
410
+ </dict>
411
+ <dict>
412
+ <key>match</key>
413
+ <string>;</string>
414
+ <key>name</key>
415
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
416
+ </dict>
417
+ <dict>
418
+ <key>include</key>
419
+ <string>#catch-all</string>
420
+ </dict>
421
+ </array>
422
+ </dict>
423
+ </array>
424
+ <key>repository</key>
425
+ <dict>
426
+ <key>any</key>
427
+ <dict>
428
+ <key>patterns</key>
429
+ <array>
430
+ <dict>
431
+ <key>include</key>
432
+ <string>#comment</string>
433
+ </dict>
434
+ <dict>
435
+ <key>include</key>
436
+ <string>#string</string>
437
+ </dict>
438
+ <dict>
439
+ <key>include</key>
440
+ <string>#array</string>
441
+ </dict>
442
+ <dict>
443
+ <key>include</key>
444
+ <string>#dictionary</string>
445
+ </dict>
446
+ <dict>
447
+ <key>include</key>
448
+ <string>#catch-all</string>
449
+ </dict>
450
+ </array>
451
+ </dict>
452
+ <key>array</key>
453
+ <dict>
454
+ <key>begin</key>
455
+ <string>(\()</string>
456
+ <key>captures</key>
457
+ <dict>
458
+ <key>1</key>
459
+ <dict>
460
+ <key>name</key>
461
+ <string>punctuation.section.array.tm-grammar</string>
462
+ </dict>
463
+ </dict>
464
+ <key>end</key>
465
+ <string>(\))</string>
466
+ <key>patterns</key>
467
+ <array>
468
+ <dict>
469
+ <key>include</key>
470
+ <string>#comment</string>
471
+ </dict>
472
+ <dict>
473
+ <key>begin</key>
474
+ <string>(?=[^\s,])</string>
475
+ <key>end</key>
476
+ <string>(,)|(?=\))</string>
477
+ <key>endCaptures</key>
478
+ <dict>
479
+ <key>1</key>
480
+ <dict>
481
+ <key>name</key>
482
+ <string>punctuation.separator.array.tm-grammar</string>
483
+ </dict>
484
+ </dict>
485
+ <key>patterns</key>
486
+ <array>
487
+ <dict>
488
+ <key>include</key>
489
+ <string>#comment</string>
490
+ </dict>
491
+ <dict>
492
+ <key>match</key>
493
+ <string>\s+(?=//|/\*)</string>
494
+ </dict>
495
+ <dict>
496
+ <key>begin</key>
497
+ <string>[[^\n]&amp;&amp;\s](?!\s*(,|\)|$)).*</string>
498
+ <key>end</key>
499
+ <string>^$not possible$^</string>
500
+ <key>name</key>
501
+ <string>invalid.illegal.missing-comma.tm-grammar</string>
502
+ </dict>
503
+ <dict>
504
+ <key>include</key>
505
+ <string>#any</string>
506
+ </dict>
507
+ </array>
508
+ </dict>
509
+ <dict>
510
+ <key>include</key>
511
+ <string>#catch-all</string>
512
+ </dict>
513
+ </array>
514
+ </dict>
515
+ <key>catch-all</key>
516
+ <dict>
517
+ <key>patterns</key>
518
+ <array>
519
+ <dict>
520
+ <key>match</key>
521
+ <string>\s+</string>
522
+ </dict>
523
+ <dict>
524
+ <key>match</key>
525
+ <string>.</string>
526
+ <key>name</key>
527
+ <string>invalid.illegal.unrecognized-character.tm-grammar</string>
528
+ </dict>
529
+ </array>
530
+ </dict>
531
+ <key>comment</key>
532
+ <dict>
533
+ <key>patterns</key>
534
+ <array>
535
+ <dict>
536
+ <key>begin</key>
537
+ <string>/\*</string>
538
+ <key>end</key>
539
+ <string>\*/</string>
540
+ <key>name</key>
541
+ <string>comment.block.tm-grammar</string>
542
+ </dict>
543
+ <dict>
544
+ <key>match</key>
545
+ <string>//.*$\n?</string>
546
+ <key>name</key>
547
+ <string>comment.line.double-slash.tm-grammar</string>
548
+ </dict>
549
+ </array>
550
+ </dict>
551
+ <key>comment-keyword</key>
552
+ <dict>
553
+ <key>begin</key>
554
+ <string>\b(comment)\s*(=)</string>
555
+ <key>beginCaptures</key>
556
+ <dict>
557
+ <key>1</key>
558
+ <dict>
559
+ <key>name</key>
560
+ <string>support.constant.tm-grammar</string>
561
+ </dict>
562
+ <key>2</key>
563
+ <dict>
564
+ <key>name</key>
565
+ <string>punctuation.separator.key-value.tm-grammar</string>
566
+ </dict>
567
+ </dict>
568
+ <key>end</key>
569
+ <string>(;)</string>
570
+ <key>endCaptures</key>
571
+ <dict>
572
+ <key>1</key>
573
+ <dict>
574
+ <key>name</key>
575
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
576
+ </dict>
577
+ </dict>
578
+ <key>patterns</key>
579
+ <array>
580
+ <dict>
581
+ <key>include</key>
582
+ <string>#comment</string>
583
+ </dict>
584
+ <dict>
585
+ <key>applyEndPatternLast</key>
586
+ <integer>1</integer>
587
+ <key>begin</key>
588
+ <string>(')</string>
589
+ <key>beginCaptures</key>
590
+ <dict>
591
+ <key>1</key>
592
+ <dict>
593
+ <key>name</key>
594
+ <string>punctuation.definition.string.begin.tm-grammar</string>
595
+ </dict>
596
+ </dict>
597
+ <key>contentName</key>
598
+ <string>comment.block.string.tm-grammar</string>
599
+ <key>end</key>
600
+ <string>(')(?!')</string>
601
+ <key>endCaptures</key>
602
+ <dict>
603
+ <key>1</key>
604
+ <dict>
605
+ <key>name</key>
606
+ <string>punctuation.definition.string.end.tm-grammar</string>
607
+ </dict>
608
+ </dict>
609
+ <key>name</key>
610
+ <string>string.quoted.single.tm-grammar</string>
611
+ <key>patterns</key>
612
+ <array>
613
+ <dict>
614
+ <key>match</key>
615
+ <string>''</string>
616
+ <key>name</key>
617
+ <string>constant.character.escape.apostrophe.tm-grammar</string>
618
+ </dict>
619
+ </array>
620
+ </dict>
621
+ <dict>
622
+ <key>begin</key>
623
+ <string>(")</string>
624
+ <key>beginCaptures</key>
625
+ <dict>
626
+ <key>1</key>
627
+ <dict>
628
+ <key>name</key>
629
+ <string>punctuation.definition.string.begin.tm-grammar</string>
630
+ </dict>
631
+ </dict>
632
+ <key>contentName</key>
633
+ <string>comment.block.string.tm-grammar</string>
634
+ <key>end</key>
635
+ <string>(")</string>
636
+ <key>endCaptures</key>
637
+ <dict>
638
+ <key>1</key>
639
+ <dict>
640
+ <key>name</key>
641
+ <string>punctuation.definition.string.end.tm-grammar</string>
642
+ </dict>
643
+ </dict>
644
+ <key>name</key>
645
+ <string>string.quoted.double.tm-grammar</string>
646
+ <key>patterns</key>
647
+ <array>
648
+ <dict>
649
+ <key>match</key>
650
+ <string>\\[\\"]</string>
651
+ <key>name</key>
652
+ <string>constant.character.escape.tm-grammar</string>
653
+ </dict>
654
+ </array>
655
+ </dict>
656
+ <dict>
657
+ <key>include</key>
658
+ <string>#catch-all</string>
659
+ </dict>
660
+ </array>
661
+ </dict>
662
+ <key>dictionary</key>
663
+ <dict>
664
+ <key>begin</key>
665
+ <string>(\{)</string>
666
+ <key>captures</key>
667
+ <dict>
668
+ <key>1</key>
669
+ <dict>
670
+ <key>name</key>
671
+ <string>punctuation.section.dictionary.tm-grammar</string>
672
+ </dict>
673
+ </dict>
674
+ <key>end</key>
675
+ <string>(\})</string>
676
+ <key>patterns</key>
677
+ <array>
678
+ <dict>
679
+ <key>include</key>
680
+ <string>#comment</string>
681
+ </dict>
682
+ <dict>
683
+ <key>include</key>
684
+ <string>#string</string>
685
+ </dict>
686
+ <dict>
687
+ <key>begin</key>
688
+ <string>(=)</string>
689
+ <key>beginCaptures</key>
690
+ <dict>
691
+ <key>1</key>
692
+ <dict>
693
+ <key>name</key>
694
+ <string>punctuation.separator.key-value.tm-grammar</string>
695
+ </dict>
696
+ </dict>
697
+ <key>end</key>
698
+ <string>(;)</string>
699
+ <key>endCaptures</key>
700
+ <dict>
701
+ <key>1</key>
702
+ <dict>
703
+ <key>name</key>
704
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
705
+ </dict>
706
+ </dict>
707
+ <key>patterns</key>
708
+ <array>
709
+ <dict>
710
+ <key>include</key>
711
+ <string>#any</string>
712
+ </dict>
713
+ </array>
714
+ </dict>
715
+ <dict>
716
+ <key>match</key>
717
+ <string>;</string>
718
+ <key>name</key>
719
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
720
+ </dict>
721
+ <dict>
722
+ <key>include</key>
723
+ <string>#catch-all</string>
724
+ </dict>
725
+ </array>
726
+ </dict>
727
+ <key>invalid-keyword</key>
728
+ <dict>
729
+ <key>patterns</key>
730
+ <array>
731
+ <dict>
732
+ <key>match</key>
733
+ <string>\b(fileTypes|foldingStartMarker|foldingStopMarker|patterns|match|begin|end|include|scopeName|captures|beginCaptures|endCaptures|firstLineMatch|comment|repository|disabled|contentName|applyEndPatternLast)\b(?=\s*=)</string>
734
+ <key>name</key>
735
+ <string>invalid.illegal.constant.misplaced-keyword.tm-grammar</string>
736
+ </dict>
737
+ <dict>
738
+ <key>match</key>
739
+ <string>\b(swallow|mode)\b(?=\s*=)</string>
740
+ <key>name</key>
741
+ <string>invalid.deprecated.constant.tm-grammar</string>
742
+ </dict>
743
+ <dict>
744
+ <key>match</key>
745
+ <string>\b(foregroundColor|backgroundColor|fontStyle|elementForegroundColor|elementBackgroundColor|elementFontStyle|highlightPairs|smartTypingPairs|increaseIndentPattern)\b(?=\s*=)</string>
746
+ <key>name</key>
747
+ <string>invalid.illegal.constant.outdated.tm-grammar</string>
748
+ </dict>
749
+ <dict>
750
+ <key>match</key>
751
+ <string>[-a-zA-Z_.]+(?=\s*=)</string>
752
+ <key>name</key>
753
+ <string>invalid.illegal.constant.unknown-keyword.tm-grammar</string>
754
+ </dict>
755
+ </array>
756
+ </dict>
757
+ <key>patterns</key>
758
+ <dict>
759
+ <key>begin</key>
760
+ <string>\b(patterns)\s*(=)</string>
761
+ <key>beginCaptures</key>
762
+ <dict>
763
+ <key>1</key>
764
+ <dict>
765
+ <key>name</key>
766
+ <string>support.constant.tm-grammar</string>
767
+ </dict>
768
+ <key>2</key>
769
+ <dict>
770
+ <key>name</key>
771
+ <string>punctuation.separator.key-value.tm-grammar</string>
772
+ </dict>
773
+ </dict>
774
+ <key>end</key>
775
+ <string>(;)</string>
776
+ <key>endCaptures</key>
777
+ <dict>
778
+ <key>1</key>
779
+ <dict>
780
+ <key>name</key>
781
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
782
+ </dict>
783
+ </dict>
784
+ <key>name</key>
785
+ <string>meta.array.patterns.tm-grammar</string>
786
+ <key>patterns</key>
787
+ <array>
788
+ <dict>
789
+ <key>include</key>
790
+ <string>#comment</string>
791
+ </dict>
792
+ <dict>
793
+ <key>begin</key>
794
+ <string>(\()</string>
795
+ <key>captures</key>
796
+ <dict>
797
+ <key>1</key>
798
+ <dict>
799
+ <key>name</key>
800
+ <string>punctuation.section.array.tm-grammar</string>
801
+ </dict>
802
+ </dict>
803
+ <key>end</key>
804
+ <string>(\))</string>
805
+ <key>patterns</key>
806
+ <array>
807
+ <dict>
808
+ <key>include</key>
809
+ <string>#comment</string>
810
+ </dict>
811
+ <dict>
812
+ <key>begin</key>
813
+ <string>(?=[^\s,])</string>
814
+ <key>end</key>
815
+ <string>(,)|(?=\))</string>
816
+ <key>endCaptures</key>
817
+ <dict>
818
+ <key>1</key>
819
+ <dict>
820
+ <key>name</key>
821
+ <string>punctuation.separator.array.tm-grammar</string>
822
+ </dict>
823
+ </dict>
824
+ <key>patterns</key>
825
+ <array>
826
+ <dict>
827
+ <key>include</key>
828
+ <string>#comment</string>
829
+ </dict>
830
+ <dict>
831
+ <key>match</key>
832
+ <string>\s+(?=//|/\*)</string>
833
+ </dict>
834
+ <dict>
835
+ <key>begin</key>
836
+ <string>[[^\n]&amp;&amp;\s](?!\s*(,|\)|$)).*</string>
837
+ <key>end</key>
838
+ <string>^$not possible$^</string>
839
+ <key>name</key>
840
+ <string>invalid.illegal.missing-comma.tm-grammar</string>
841
+ </dict>
842
+ <dict>
843
+ <key>include</key>
844
+ <string>#rule</string>
845
+ </dict>
846
+ <dict>
847
+ <key>include</key>
848
+ <string>#catch-all</string>
849
+ </dict>
850
+ </array>
851
+ </dict>
852
+ <dict>
853
+ <key>include</key>
854
+ <string>#catch-all</string>
855
+ </dict>
856
+ </array>
857
+ </dict>
858
+ <dict>
859
+ <key>include</key>
860
+ <string>#catch-all</string>
861
+ </dict>
862
+ </array>
863
+ </dict>
864
+ <key>regexp</key>
865
+ <dict>
866
+ <key>patterns</key>
867
+ <array>
868
+ <dict>
869
+ <key>begin</key>
870
+ <string>(')</string>
871
+ <key>beginCaptures</key>
872
+ <dict>
873
+ <key>1</key>
874
+ <dict>
875
+ <key>name</key>
876
+ <string>punctuation.definition.string.begin.tm-grammar</string>
877
+ </dict>
878
+ </dict>
879
+ <key>end</key>
880
+ <string>(')(?!')</string>
881
+ <key>endCaptures</key>
882
+ <dict>
883
+ <key>1</key>
884
+ <dict>
885
+ <key>name</key>
886
+ <string>punctuation.definition.string.end.tm-grammar</string>
887
+ </dict>
888
+ </dict>
889
+ <key>name</key>
890
+ <string>string.regexp.oniguruma.single.tm-grammar</string>
891
+ <key>patterns</key>
892
+ <array>
893
+ <dict>
894
+ <key>match</key>
895
+ <string>''</string>
896
+ <key>name</key>
897
+ <string>constant.character.escape.apostrophe.tm-grammar</string>
898
+ </dict>
899
+ <dict>
900
+ <key>include</key>
901
+ <string>source.regexp.oniguruma</string>
902
+ </dict>
903
+ </array>
904
+ </dict>
905
+ <dict>
906
+ <key>begin</key>
907
+ <string>(")</string>
908
+ <key>beginCaptures</key>
909
+ <dict>
910
+ <key>1</key>
911
+ <dict>
912
+ <key>name</key>
913
+ <string>punctuation.definition.string.begin.tm-grammar</string>
914
+ </dict>
915
+ </dict>
916
+ <key>end</key>
917
+ <string>(")</string>
918
+ <key>endCaptures</key>
919
+ <dict>
920
+ <key>1</key>
921
+ <dict>
922
+ <key>name</key>
923
+ <string>punctuation.definition.string.end.tm-grammar</string>
924
+ </dict>
925
+ </dict>
926
+ <key>name</key>
927
+ <string>string.regexp.oniguruma.double.tm-grammar</string>
928
+ <key>patterns</key>
929
+ <array>
930
+ <dict>
931
+ <key>match</key>
932
+ <string>\\\\|\\"</string>
933
+ <key>name</key>
934
+ <string>constant.character.escape.tm-grammar</string>
935
+ </dict>
936
+ <dict>
937
+ <key>include</key>
938
+ <string>source.regexp.oniguruma</string>
939
+ </dict>
940
+ </array>
941
+ </dict>
942
+ </array>
943
+ </dict>
944
+ <key>rule</key>
945
+ <dict>
946
+ <key>begin</key>
947
+ <string>(\{)</string>
948
+ <key>captures</key>
949
+ <dict>
950
+ <key>1</key>
951
+ <dict>
952
+ <key>name</key>
953
+ <string>punctuation.section.dictionary.tm-grammar</string>
954
+ </dict>
955
+ </dict>
956
+ <key>end</key>
957
+ <string>(\})</string>
958
+ <key>name</key>
959
+ <string>meta.dictionary.rule.tm-grammar</string>
960
+ <key>patterns</key>
961
+ <array>
962
+ <dict>
963
+ <key>include</key>
964
+ <string>#comment</string>
965
+ </dict>
966
+ <dict>
967
+ <key>begin</key>
968
+ <string>\b((contentN|n)ame)\s*(=)</string>
969
+ <key>beginCaptures</key>
970
+ <dict>
971
+ <key>1</key>
972
+ <dict>
973
+ <key>name</key>
974
+ <string>support.constant.tm-grammar</string>
975
+ </dict>
976
+ <key>3</key>
977
+ <dict>
978
+ <key>name</key>
979
+ <string>punctuation.separator.key-value.tm-grammar</string>
980
+ </dict>
981
+ </dict>
982
+ <key>comment</key>
983
+ <string>name, contentName</string>
984
+ <key>end</key>
985
+ <string>(;)</string>
986
+ <key>endCaptures</key>
987
+ <dict>
988
+ <key>1</key>
989
+ <dict>
990
+ <key>name</key>
991
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
992
+ </dict>
993
+ </dict>
994
+ <key>name</key>
995
+ <string>meta.value-pair.tm-grammar</string>
996
+ <key>patterns</key>
997
+ <array>
998
+ <dict>
999
+ <key>include</key>
1000
+ <string>#comment</string>
1001
+ </dict>
1002
+ <dict>
1003
+ <key>include</key>
1004
+ <string>#scope</string>
1005
+ </dict>
1006
+ <dict>
1007
+ <key>include</key>
1008
+ <string>#catch-all</string>
1009
+ </dict>
1010
+ </array>
1011
+ </dict>
1012
+ <dict>
1013
+ <key>begin</key>
1014
+ <string>\b(begin|end|while|match)\s*(=)</string>
1015
+ <key>beginCaptures</key>
1016
+ <dict>
1017
+ <key>1</key>
1018
+ <dict>
1019
+ <key>name</key>
1020
+ <string>support.constant.tm-grammar</string>
1021
+ </dict>
1022
+ <key>2</key>
1023
+ <dict>
1024
+ <key>name</key>
1025
+ <string>punctuation.separator.key-value.tm-grammar</string>
1026
+ </dict>
1027
+ </dict>
1028
+ <key>comment</key>
1029
+ <string>begin, end, while, match</string>
1030
+ <key>end</key>
1031
+ <string>(;)</string>
1032
+ <key>endCaptures</key>
1033
+ <dict>
1034
+ <key>1</key>
1035
+ <dict>
1036
+ <key>name</key>
1037
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
1038
+ </dict>
1039
+ </dict>
1040
+ <key>patterns</key>
1041
+ <array>
1042
+ <dict>
1043
+ <key>include</key>
1044
+ <string>#comment</string>
1045
+ </dict>
1046
+ <dict>
1047
+ <key>include</key>
1048
+ <string>#regexp</string>
1049
+ </dict>
1050
+ <dict>
1051
+ <key>include</key>
1052
+ <string>#catch-all</string>
1053
+ </dict>
1054
+ </array>
1055
+ </dict>
1056
+ <dict>
1057
+ <key>begin</key>
1058
+ <string>\b(include)\s*(=)</string>
1059
+ <key>beginCaptures</key>
1060
+ <dict>
1061
+ <key>1</key>
1062
+ <dict>
1063
+ <key>name</key>
1064
+ <string>support.constant.tm-grammar</string>
1065
+ </dict>
1066
+ <key>2</key>
1067
+ <dict>
1068
+ <key>name</key>
1069
+ <string>punctuation.separator.key-value.tm-grammar</string>
1070
+ </dict>
1071
+ </dict>
1072
+ <key>comment</key>
1073
+ <string>include</string>
1074
+ <key>end</key>
1075
+ <string>(;)</string>
1076
+ <key>endCaptures</key>
1077
+ <dict>
1078
+ <key>1</key>
1079
+ <dict>
1080
+ <key>name</key>
1081
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
1082
+ </dict>
1083
+ </dict>
1084
+ <key>patterns</key>
1085
+ <array>
1086
+ <dict>
1087
+ <key>include</key>
1088
+ <string>#comment</string>
1089
+ </dict>
1090
+ <dict>
1091
+ <key>captures</key>
1092
+ <dict>
1093
+ <key>1</key>
1094
+ <dict>
1095
+ <key>name</key>
1096
+ <string>punctuation.definition.string.begin.tm-grammar</string>
1097
+ </dict>
1098
+ <key>2</key>
1099
+ <dict>
1100
+ <key>name</key>
1101
+ <string>constant.other.reference.repository-item.tm-grammar</string>
1102
+ </dict>
1103
+ <key>3</key>
1104
+ <dict>
1105
+ <key>name</key>
1106
+ <string>punctuation.definition.constant.tm-grammar</string>
1107
+ </dict>
1108
+ <key>4</key>
1109
+ <dict>
1110
+ <key>name</key>
1111
+ <string>constant.other.reference.grammar.tm-grammar</string>
1112
+ </dict>
1113
+ <key>5</key>
1114
+ <dict>
1115
+ <key>name</key>
1116
+ <string>punctuation.definition.constant.tm-grammar</string>
1117
+ </dict>
1118
+ <key>6</key>
1119
+ <dict>
1120
+ <key>name</key>
1121
+ <string>punctuation.definition.string.end.tm-grammar</string>
1122
+ </dict>
1123
+ </dict>
1124
+ <key>match</key>
1125
+ <string>(')(?:((#)[-a-zA-Z0-9._]+)|((\$)(?:base|self)))?(')</string>
1126
+ <key>name</key>
1127
+ <string>string.quoted.single.include.tm-grammar</string>
1128
+ </dict>
1129
+ <dict>
1130
+ <key>captures</key>
1131
+ <dict>
1132
+ <key>1</key>
1133
+ <dict>
1134
+ <key>name</key>
1135
+ <string>punctuation.definition.string.begin.tm-grammar</string>
1136
+ </dict>
1137
+ <key>2</key>
1138
+ <dict>
1139
+ <key>name</key>
1140
+ <string>constant.other.reference.repository-item.tm-grammar</string>
1141
+ </dict>
1142
+ <key>3</key>
1143
+ <dict>
1144
+ <key>name</key>
1145
+ <string>punctuation.definition.constant.tm-grammar</string>
1146
+ </dict>
1147
+ <key>4</key>
1148
+ <dict>
1149
+ <key>name</key>
1150
+ <string>constant.other.reference.grammar.tm-grammar</string>
1151
+ </dict>
1152
+ <key>5</key>
1153
+ <dict>
1154
+ <key>name</key>
1155
+ <string>punctuation.definition.constant.tm-grammar</string>
1156
+ </dict>
1157
+ <key>6</key>
1158
+ <dict>
1159
+ <key>name</key>
1160
+ <string>punctuation.definition.string.end.tm-grammar</string>
1161
+ </dict>
1162
+ </dict>
1163
+ <key>match</key>
1164
+ <string>(')(?:((#)[-a-zA-Z0-9._]+)|((\$)(?:base|self)))?(')</string>
1165
+ <key>name</key>
1166
+ <string>string.quoted.double.include.tm-grammar</string>
1167
+ </dict>
1168
+ <dict>
1169
+ <key>include</key>
1170
+ <string>#scope-root</string>
1171
+ </dict>
1172
+ <dict>
1173
+ <key>include</key>
1174
+ <string>#catch-all</string>
1175
+ </dict>
1176
+ </array>
1177
+ </dict>
1178
+ <dict>
1179
+ <key>begin</key>
1180
+ <string>\b((beginC|endC|whileC|c)aptures)\s*(=)</string>
1181
+ <key>beginCaptures</key>
1182
+ <dict>
1183
+ <key>1</key>
1184
+ <dict>
1185
+ <key>name</key>
1186
+ <string>support.constant.tm-grammar</string>
1187
+ </dict>
1188
+ <key>3</key>
1189
+ <dict>
1190
+ <key>name</key>
1191
+ <string>punctuation.separator.key-value.tm-grammar</string>
1192
+ </dict>
1193
+ </dict>
1194
+ <key>comment</key>
1195
+ <string>captures</string>
1196
+ <key>end</key>
1197
+ <string>(;)</string>
1198
+ <key>endCaptures</key>
1199
+ <dict>
1200
+ <key>1</key>
1201
+ <dict>
1202
+ <key>name</key>
1203
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
1204
+ </dict>
1205
+ </dict>
1206
+ <key>name</key>
1207
+ <string>meta.dictionary.captures.tm-grammar</string>
1208
+ <key>patterns</key>
1209
+ <array>
1210
+ <dict>
1211
+ <key>begin</key>
1212
+ <string>(\{)</string>
1213
+ <key>captures</key>
1214
+ <dict>
1215
+ <key>1</key>
1216
+ <dict>
1217
+ <key>name</key>
1218
+ <string>punctuation.section.dictionary.tm-grammar</string>
1219
+ </dict>
1220
+ </dict>
1221
+ <key>end</key>
1222
+ <string>(\})</string>
1223
+ <key>patterns</key>
1224
+ <array>
1225
+ <dict>
1226
+ <key>include</key>
1227
+ <string>#comment</string>
1228
+ </dict>
1229
+ <dict>
1230
+ <key>include</key>
1231
+ <string>#string</string>
1232
+ </dict>
1233
+ <dict>
1234
+ <key>begin</key>
1235
+ <string>(=)</string>
1236
+ <key>beginCaptures</key>
1237
+ <dict>
1238
+ <key>1</key>
1239
+ <dict>
1240
+ <key>name</key>
1241
+ <string>punctuation.separator.key-value.tm-grammar</string>
1242
+ </dict>
1243
+ </dict>
1244
+ <key>end</key>
1245
+ <string>(;)</string>
1246
+ <key>endCaptures</key>
1247
+ <dict>
1248
+ <key>1</key>
1249
+ <dict>
1250
+ <key>name</key>
1251
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
1252
+ </dict>
1253
+ </dict>
1254
+ <key>patterns</key>
1255
+ <array>
1256
+ <dict>
1257
+ <key>include</key>
1258
+ <string>#comment</string>
1259
+ </dict>
1260
+ <dict>
1261
+ <key>begin</key>
1262
+ <string>(\{)</string>
1263
+ <key>captures</key>
1264
+ <dict>
1265
+ <key>1</key>
1266
+ <dict>
1267
+ <key>name</key>
1268
+ <string>punctuation.section.dictionary.tm-grammar</string>
1269
+ </dict>
1270
+ </dict>
1271
+ <key>end</key>
1272
+ <string>(\})</string>
1273
+ <key>patterns</key>
1274
+ <array>
1275
+ <dict>
1276
+ <key>include</key>
1277
+ <string>#comment</string>
1278
+ </dict>
1279
+ <dict>
1280
+ <key>include</key>
1281
+ <string>#comment-keyword</string>
1282
+ </dict>
1283
+ <dict>
1284
+ <key>begin</key>
1285
+ <string>\b(name)\s*(=)</string>
1286
+ <key>beginCaptures</key>
1287
+ <dict>
1288
+ <key>1</key>
1289
+ <dict>
1290
+ <key>name</key>
1291
+ <string>support.constant.tm-grammar</string>
1292
+ </dict>
1293
+ <key>2</key>
1294
+ <dict>
1295
+ <key>name</key>
1296
+ <string>punctuation.separator.key-value.tm-grammar</string>
1297
+ </dict>
1298
+ </dict>
1299
+ <key>comment</key>
1300
+ <string>name</string>
1301
+ <key>end</key>
1302
+ <string>(;)</string>
1303
+ <key>endCaptures</key>
1304
+ <dict>
1305
+ <key>1</key>
1306
+ <dict>
1307
+ <key>name</key>
1308
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
1309
+ </dict>
1310
+ </dict>
1311
+ <key>name</key>
1312
+ <string>meta.value-pair.tm-grammar</string>
1313
+ <key>patterns</key>
1314
+ <array>
1315
+ <dict>
1316
+ <key>include</key>
1317
+ <string>#comment</string>
1318
+ </dict>
1319
+ <dict>
1320
+ <key>include</key>
1321
+ <string>#scope</string>
1322
+ </dict>
1323
+ <dict>
1324
+ <key>include</key>
1325
+ <string>#catch-all</string>
1326
+ </dict>
1327
+ </array>
1328
+ </dict>
1329
+ </array>
1330
+ </dict>
1331
+ <dict>
1332
+ <key>include</key>
1333
+ <string>#catch-all</string>
1334
+ </dict>
1335
+ </array>
1336
+ </dict>
1337
+ <dict>
1338
+ <key>match</key>
1339
+ <string>;</string>
1340
+ <key>name</key>
1341
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
1342
+ </dict>
1343
+ <dict>
1344
+ <key>include</key>
1345
+ <string>#catch-all</string>
1346
+ </dict>
1347
+ </array>
1348
+ </dict>
1349
+ </array>
1350
+ </dict>
1351
+ <dict>
1352
+ <key>captures</key>
1353
+ <dict>
1354
+ <key>1</key>
1355
+ <dict>
1356
+ <key>name</key>
1357
+ <string>support.constant.tm-grammar</string>
1358
+ </dict>
1359
+ <key>10</key>
1360
+ <dict>
1361
+ <key>name</key>
1362
+ <string>constant.numeric.tm-grammar</string>
1363
+ </dict>
1364
+ <key>11</key>
1365
+ <dict>
1366
+ <key>name</key>
1367
+ <string>punctuation.definition.string.end.tm-grammar</string>
1368
+ </dict>
1369
+ <key>12</key>
1370
+ <dict>
1371
+ <key>name</key>
1372
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
1373
+ </dict>
1374
+ <key>2</key>
1375
+ <dict>
1376
+ <key>name</key>
1377
+ <string>punctuation.separator.key-value.tm-grammar</string>
1378
+ </dict>
1379
+ <key>3</key>
1380
+ <dict>
1381
+ <key>name</key>
1382
+ <string>constant.numeric.tm-grammar</string>
1383
+ </dict>
1384
+ <key>4</key>
1385
+ <dict>
1386
+ <key>name</key>
1387
+ <string>string.quoted.double.tm-grammar</string>
1388
+ </dict>
1389
+ <key>5</key>
1390
+ <dict>
1391
+ <key>name</key>
1392
+ <string>punctuation.definition.string.begin.tm-grammar</string>
1393
+ </dict>
1394
+ <key>6</key>
1395
+ <dict>
1396
+ <key>name</key>
1397
+ <string>constant.numeric.tm-grammar</string>
1398
+ </dict>
1399
+ <key>7</key>
1400
+ <dict>
1401
+ <key>name</key>
1402
+ <string>punctuation.definition.string.end.tm-grammar</string>
1403
+ </dict>
1404
+ <key>8</key>
1405
+ <dict>
1406
+ <key>name</key>
1407
+ <string>string.quoted.single.tm-grammar</string>
1408
+ </dict>
1409
+ <key>9</key>
1410
+ <dict>
1411
+ <key>name</key>
1412
+ <string>punctuation.definition.string.begin.tm-grammar</string>
1413
+ </dict>
1414
+ </dict>
1415
+ <key>comment</key>
1416
+ <string>disabled, applyEndPatternLast</string>
1417
+ <key>match</key>
1418
+ <string>\b(disabled|applyEndPatternLast)\s*(=)\s*(?:(0|1)|((")(0|1)("))|((')(0|1)(')))\s*(;)</string>
1419
+ </dict>
1420
+ <dict>
1421
+ <key>include</key>
1422
+ <string>#patterns</string>
1423
+ </dict>
1424
+ <dict>
1425
+ <key>include</key>
1426
+ <string>#comment-keyword</string>
1427
+ </dict>
1428
+ <dict>
1429
+ <key>include</key>
1430
+ <string>#invalid-keyword</string>
1431
+ </dict>
1432
+ <dict>
1433
+ <key>include</key>
1434
+ <string>#string</string>
1435
+ </dict>
1436
+ <dict>
1437
+ <key>begin</key>
1438
+ <string>(=)</string>
1439
+ <key>beginCaptures</key>
1440
+ <dict>
1441
+ <key>1</key>
1442
+ <dict>
1443
+ <key>name</key>
1444
+ <string>punctuation.separator.key-value.tm-grammar</string>
1445
+ </dict>
1446
+ </dict>
1447
+ <key>end</key>
1448
+ <string>(;)</string>
1449
+ <key>endCaptures</key>
1450
+ <dict>
1451
+ <key>1</key>
1452
+ <dict>
1453
+ <key>name</key>
1454
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
1455
+ </dict>
1456
+ </dict>
1457
+ <key>patterns</key>
1458
+ <array>
1459
+ <dict>
1460
+ <key>include</key>
1461
+ <string>#any</string>
1462
+ </dict>
1463
+ </array>
1464
+ </dict>
1465
+ <dict>
1466
+ <key>match</key>
1467
+ <string>;</string>
1468
+ <key>name</key>
1469
+ <string>punctuation.terminator.dictionary.tm-grammar</string>
1470
+ </dict>
1471
+ <dict>
1472
+ <key>include</key>
1473
+ <string>#catch-all</string>
1474
+ </dict>
1475
+ </array>
1476
+ </dict>
1477
+ <key>scope</key>
1478
+ <dict>
1479
+ <key>patterns</key>
1480
+ <array>
1481
+ <dict>
1482
+ <key>captures</key>
1483
+ <dict>
1484
+ <key>1</key>
1485
+ <dict>
1486
+ <key>name</key>
1487
+ <string>punctuation.definition.string.begin.tm-grammar</string>
1488
+ </dict>
1489
+ <key>2</key>
1490
+ <dict>
1491
+ <key>name</key>
1492
+ <string>constant.other.scope.tm-grammar</string>
1493
+ </dict>
1494
+ <key>3</key>
1495
+ <dict>
1496
+ <key>name</key>
1497
+ <string>constant.other.scope.tm-grammar</string>
1498
+ </dict>
1499
+ <key>4</key>
1500
+ <dict>
1501
+ <key>name</key>
1502
+ <string>invalid.deprecated.scope_not_allowed.tm-grammar</string>
1503
+ </dict>
1504
+ <key>5</key>
1505
+ <dict>
1506
+ <key>name</key>
1507
+ <string>punctuation.definition.string.end.tm-grammar</string>
1508
+ </dict>
1509
+ </dict>
1510
+ <key>match</key>
1511
+ <string>(?x)
1512
+ (') # Open String
1513
+ ( # Optionally match the valid
1514
+ # scopes, and the following
1515
+ # part of the scope, meaning
1516
+ # anything else is invalid
1517
+ comment(?:
1518
+ \.(?:line|block)
1519
+ )?
1520
+ | constant(?:
1521
+ \.(?:numeric|character|language|other)
1522
+ )?
1523
+ | entity(?:
1524
+ \.name(?:
1525
+ \.(?:function|type|tag|section)
1526
+ )?
1527
+ | \.other(?:
1528
+ \.(?:inherited-class|attribute-name)
1529
+ )?
1530
+ )?
1531
+ | invalid(?:
1532
+ \.(?:illegal|deprecated)
1533
+ )?
1534
+ | keyword(?:
1535
+ \.(?:control|operator|other)
1536
+ )?
1537
+ | markup(?:
1538
+ \.(?:underline|bold|heading|italic|list|quote|raw|other)
1539
+ )?
1540
+ | meta
1541
+ | punctuation(?:
1542
+ \.(?:definition|section|separator|terminator|whitespace)
1543
+ )?
1544
+ | source
1545
+ | storage(?:
1546
+ \.(?:type|modifier)
1547
+ )?
1548
+ | string(?:
1549
+ \.(?:
1550
+ quoted(?:
1551
+ \.(?:single|double|triple|other)
1552
+ )?
1553
+ | (?:unquoted|interpolated|regexp|other)
1554
+ )
1555
+ )?
1556
+ | support(?:
1557
+ \.(?:function|class|type|constant|variable|other)
1558
+ )?
1559
+ | text
1560
+ | variable(?:
1561
+ \.(?:parameter|language|other)
1562
+ )?
1563
+ )?
1564
+ ((?&lt;!')[^\s,()&amp;|\[\]:"'{}&lt;&gt;*?=^;#]*(?&lt;!\.))?
1565
+ ([^']*)?
1566
+ (') # Close String
1567
+ </string>
1568
+ <key>name</key>
1569
+ <string>string.quoted.single.scope.tm-grammar</string>
1570
+ </dict>
1571
+ <dict>
1572
+ <key>captures</key>
1573
+ <dict>
1574
+ <key>1</key>
1575
+ <dict>
1576
+ <key>name</key>
1577
+ <string>punctuation.definition.string.begin.tm-grammar</string>
1578
+ </dict>
1579
+ <key>2</key>
1580
+ <dict>
1581
+ <key>name</key>
1582
+ <string>constant.other.scope.tm-grammar</string>
1583
+ </dict>
1584
+ <key>3</key>
1585
+ <dict>
1586
+ <key>name</key>
1587
+ <string>constant.other.scope.tm-grammar</string>
1588
+ </dict>
1589
+ <key>4</key>
1590
+ <dict>
1591
+ <key>name</key>
1592
+ <string>invalid.deprecated.scope_not_allowed.tm-grammar</string>
1593
+ </dict>
1594
+ <key>5</key>
1595
+ <dict>
1596
+ <key>name</key>
1597
+ <string>punctuation.definition.string.end.tm-grammar</string>
1598
+ </dict>
1599
+ </dict>
1600
+ <key>match</key>
1601
+ <string>(?x)
1602
+ (") # Open String
1603
+ ( # Optionally match the valid
1604
+ # scopes, and the following
1605
+ # part of the scope, meaning
1606
+ # anything else is invalid
1607
+ comment(?:
1608
+ \.(?:line|block)
1609
+ )?
1610
+ | constant(?:
1611
+ \.(?:numeric|character|language|other)
1612
+ )?
1613
+ | entity(?:
1614
+ \.name(?:
1615
+ \.(?:function|type|tag|section)
1616
+ )?
1617
+ | \.other(?:
1618
+ \.(?:inherited-class|attribute-name)
1619
+ )?
1620
+ )?
1621
+ | invalid(?:
1622
+ \.(?:illegal|deprecated)
1623
+ )?
1624
+ | keyword(?:
1625
+ \.(?:control|operator|other)
1626
+ )?
1627
+ | markup(?:
1628
+ \.(?:underline|bold|heading|italic|list|quote|raw|other)
1629
+ )?
1630
+ | meta
1631
+ | punctuation(?:
1632
+ \.(?:definition|section|separator|terminator|whitespace)
1633
+ )?
1634
+ | source
1635
+ | storage(?:
1636
+ \.(?:type|modifier)
1637
+ )?
1638
+ | string(?:
1639
+ \.(?:
1640
+ quoted(?:
1641
+ \.(?:single|double|triple|other)
1642
+ )?
1643
+ | (?:unquoted|interpolated|regexp|other)
1644
+ )
1645
+ )?
1646
+ | support(?:
1647
+ \.(?:function|class|type|constant|variable|other)
1648
+ )?
1649
+ | text
1650
+ | variable(?:
1651
+ \.(?:parameter|language|other)
1652
+ )?
1653
+ )?
1654
+ ((?&lt;!")[^\s,()&amp;|\[\]:"'{}&lt;&gt;*?=^;#]*(?&lt;!\.))?
1655
+ ([^"]*)?
1656
+ (") # Close String
1657
+ </string>
1658
+ <key>name</key>
1659
+ <string>string.quoted.double.scope.tm-grammar</string>
1660
+ </dict>
1661
+ </array>
1662
+ </dict>
1663
+ <key>scope-root</key>
1664
+ <dict>
1665
+ <key>patterns</key>
1666
+ <array>
1667
+ <dict>
1668
+ <key>captures</key>
1669
+ <dict>
1670
+ <key>1</key>
1671
+ <dict>
1672
+ <key>name</key>
1673
+ <string>punctuation.definition.string.begin.tm-grammar</string>
1674
+ </dict>
1675
+ <key>2</key>
1676
+ <dict>
1677
+ <key>name</key>
1678
+ <string>constant.other.scope.tm-grammar</string>
1679
+ </dict>
1680
+ <key>3</key>
1681
+ <dict>
1682
+ <key>name</key>
1683
+ <string>invalid.deprecated.scope_not_allowed.tm-grammar</string>
1684
+ </dict>
1685
+ <key>4</key>
1686
+ <dict>
1687
+ <key>name</key>
1688
+ <string>invalid.deprecated.scope_not_allowed.tm-grammar</string>
1689
+ </dict>
1690
+ <key>5</key>
1691
+ <dict>
1692
+ <key>name</key>
1693
+ <string>punctuation.definition.string.end.tm-grammar</string>
1694
+ </dict>
1695
+ </dict>
1696
+ <key>match</key>
1697
+ <string>(')(?:((?:source|text)\.[^\s,()&amp;|\[\]:"'{}&lt;&gt;*?=^;#]*)([^']*)|([^']*))(')</string>
1698
+ <key>name</key>
1699
+ <string>string.quoted.single.scope.root.tm-grammar</string>
1700
+ </dict>
1701
+ <dict>
1702
+ <key>captures</key>
1703
+ <dict>
1704
+ <key>1</key>
1705
+ <dict>
1706
+ <key>name</key>
1707
+ <string>punctuation.definition.string.begin.tm-grammar</string>
1708
+ </dict>
1709
+ <key>2</key>
1710
+ <dict>
1711
+ <key>name</key>
1712
+ <string>constant.other.scope.tm-grammar</string>
1713
+ </dict>
1714
+ <key>3</key>
1715
+ <dict>
1716
+ <key>name</key>
1717
+ <string>invalid.deprecated.scope_not_allowed.tm-grammar</string>
1718
+ </dict>
1719
+ <key>4</key>
1720
+ <dict>
1721
+ <key>name</key>
1722
+ <string>invalid.deprecated.scope_not_allowed.tm-grammar</string>
1723
+ </dict>
1724
+ <key>5</key>
1725
+ <dict>
1726
+ <key>name</key>
1727
+ <string>punctuation.definition.string.end.tm-grammar</string>
1728
+ </dict>
1729
+ </dict>
1730
+ <key>match</key>
1731
+ <string>(")(?:((?:source|text)\.[^\s,()&amp;|\[\]:"'{}&lt;&gt;*?=^;#]*)([^"]*)|([^"]*))(")</string>
1732
+ <key>name</key>
1733
+ <string>string.quoted.double.scope.root.tm-grammar</string>
1734
+ </dict>
1735
+ </array>
1736
+ </dict>
1737
+ <key>string</key>
1738
+ <dict>
1739
+ <key>patterns</key>
1740
+ <array>
1741
+ <dict>
1742
+ <key>match</key>
1743
+ <string>\b[0-9]+\b</string>
1744
+ <key>name</key>
1745
+ <string>constant.numeric.tm-grammar</string>
1746
+ </dict>
1747
+ <dict>
1748
+ <key>match</key>
1749
+ <string>[-a-zA-Z0-9_.]+</string>
1750
+ <key>name</key>
1751
+ <string>string.unquoted.tm-grammar</string>
1752
+ </dict>
1753
+ <dict>
1754
+ <key>applyEndPatternLast</key>
1755
+ <integer>1</integer>
1756
+ <key>begin</key>
1757
+ <string>(')</string>
1758
+ <key>beginCaptures</key>
1759
+ <dict>
1760
+ <key>1</key>
1761
+ <dict>
1762
+ <key>name</key>
1763
+ <string>punctuation.definition.string.begin.tm-grammar</string>
1764
+ </dict>
1765
+ </dict>
1766
+ <key>end</key>
1767
+ <string>('(?!'))</string>
1768
+ <key>endCaptures</key>
1769
+ <dict>
1770
+ <key>1</key>
1771
+ <dict>
1772
+ <key>name</key>
1773
+ <string>punctuation.definition.string.end.tm-grammar</string>
1774
+ </dict>
1775
+ </dict>
1776
+ <key>name</key>
1777
+ <string>string.quoted.single.tm-grammar</string>
1778
+ <key>patterns</key>
1779
+ <array>
1780
+ <dict>
1781
+ <key>match</key>
1782
+ <string>''</string>
1783
+ <key>name</key>
1784
+ <string>constant.character.escape.apostrophe.tm-grammar</string>
1785
+ </dict>
1786
+ </array>
1787
+ </dict>
1788
+ <dict>
1789
+ <key>begin</key>
1790
+ <string>(")</string>
1791
+ <key>beginCaptures</key>
1792
+ <dict>
1793
+ <key>1</key>
1794
+ <dict>
1795
+ <key>name</key>
1796
+ <string>punctuation.definition.string.begin.tm-grammar</string>
1797
+ </dict>
1798
+ </dict>
1799
+ <key>end</key>
1800
+ <string>(")</string>
1801
+ <key>endCaptures</key>
1802
+ <dict>
1803
+ <key>1</key>
1804
+ <dict>
1805
+ <key>name</key>
1806
+ <string>punctuation.definition.string.end.tm-grammar</string>
1807
+ </dict>
1808
+ </dict>
1809
+ <key>name</key>
1810
+ <string>string.quoted.double.tm-grammar</string>
1811
+ <key>patterns</key>
1812
+ <array>
1813
+ <dict>
1814
+ <key>match</key>
1815
+ <string>\\[\\"]</string>
1816
+ <key>name</key>
1817
+ <string>constant.character.escape.tm-grammar</string>
1818
+ </dict>
1819
+ </array>
1820
+ </dict>
1821
+ </array>
1822
+ </dict>
1823
+ </dict>
1824
+ <key>scopeName</key>
1825
+ <string>source.plist.tm-grammar</string>
1826
+ <key>uuid</key>
1827
+ <string>101D6FC2-6CBD-11D9-B329-000D93347A42</string>
1828
+ </dict>
1829
+ </plist>