redcar 0.3.1dev → 0.3.2dev

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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,1650 @@
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>plist</string>
8
+ <string>dict</string>
9
+ <string>tmCommand</string>
10
+ <string>tmDelta</string>
11
+ <string>tmDragCommand</string>
12
+ <string>tmLanguage</string>
13
+ <string>tmMacro</string>
14
+ <string>tmPreferences</string>
15
+ <string>tmSnippet</string>
16
+ <string>tmTheme</string>
17
+ <string>scriptSuite</string>
18
+ <string>scriptTerminology</string>
19
+ <string>savedSearch</string>
20
+ </array>
21
+ <key>foldingStartMarker</key>
22
+ <string>(?x)
23
+ (
24
+ (^|=|=[ ]|\s\s|\t) # Openstep foldings
25
+ (\{|\()(?!.*(\)|\})) # spaces before them to
26
+ # limit false positives
27
+ | (
28
+ ^\s*
29
+ (
30
+ &lt;[^!?%/](?!.+?(/&gt;
31
+ | &lt;/.+?&gt;))
32
+ | &lt;[!%]--(?!.+?--%?&gt;)
33
+ )
34
+ )
35
+ )
36
+ </string>
37
+ <key>foldingStopMarker</key>
38
+ <string>(?x)
39
+ (
40
+ (\}|\))(,|;)? # Openstep foldings
41
+ .*$ # limit false positives
42
+ | (^\s*(&lt;/[^&gt;]+&gt;|/&gt;|--&gt;)\s*$) # XML
43
+ )
44
+ </string>
45
+ <key>keyEquivalent</key>
46
+ <string>^~P</string>
47
+ <key>name</key>
48
+ <string>Property List</string>
49
+ <key>patterns</key>
50
+ <array>
51
+ <dict>
52
+ <key>begin</key>
53
+ <string>xml|plist</string>
54
+ <key>comment</key>
55
+ <string>This gives us the proper scope for the xml or plist snippet.</string>
56
+ <key>end</key>
57
+ <string>(?=not)possible</string>
58
+ <key>name</key>
59
+ <string>text.xml.plist</string>
60
+ </dict>
61
+ <dict>
62
+ <key>begin</key>
63
+ <string>^bplist00</string>
64
+ <key>comment</key>
65
+ <string>This gives us the proper scope for the convert plist command.</string>
66
+ <key>end</key>
67
+ <string>(?=not)possible</string>
68
+ <key>name</key>
69
+ <string>source.plist.binary</string>
70
+ </dict>
71
+ <dict>
72
+ <key>begin</key>
73
+ <string>(?=\s*(&lt;\?xml|&lt;!DOCTYPE\s*plist))</string>
74
+ <key>end</key>
75
+ <string>(?=not)possible</string>
76
+ <key>name</key>
77
+ <string>text.xml.plist</string>
78
+ <key>patterns</key>
79
+ <array>
80
+ <dict>
81
+ <key>include</key>
82
+ <string>#xml</string>
83
+ </dict>
84
+ </array>
85
+ </dict>
86
+ <dict>
87
+ <key>begin</key>
88
+ <string>(?=\s*({|\(|//|/\*))</string>
89
+ <key>end</key>
90
+ <string>(?=not)possible</string>
91
+ <key>name</key>
92
+ <string>source.plist</string>
93
+ <key>patterns</key>
94
+ <array>
95
+ <dict>
96
+ <key>include</key>
97
+ <string>#openstep</string>
98
+ </dict>
99
+ </array>
100
+ </dict>
101
+ </array>
102
+ <key>repository</key>
103
+ <dict>
104
+ <key>openstep</key>
105
+ <dict>
106
+ <key>patterns</key>
107
+ <array>
108
+ <dict>
109
+ <key>include</key>
110
+ <string>#openstep_comment</string>
111
+ </dict>
112
+ <dict>
113
+ <key>include</key>
114
+ <string>#openstep_dictionary</string>
115
+ </dict>
116
+ <dict>
117
+ <key>include</key>
118
+ <string>#openstep_array</string>
119
+ </dict>
120
+ <dict>
121
+ <key>include</key>
122
+ <string>#openstep_stray-char</string>
123
+ </dict>
124
+ </array>
125
+ </dict>
126
+ <key>openstep_array</key>
127
+ <dict>
128
+ <key>begin</key>
129
+ <string>(\()</string>
130
+ <key>captures</key>
131
+ <dict>
132
+ <key>1</key>
133
+ <dict>
134
+ <key>name</key>
135
+ <string>punctuation.section.array.plist</string>
136
+ </dict>
137
+ </dict>
138
+ <key>end</key>
139
+ <string>(\))</string>
140
+ <key>name</key>
141
+ <string>meta.group.array.plist</string>
142
+ <key>patterns</key>
143
+ <array>
144
+ <dict>
145
+ <key>include</key>
146
+ <string>#openstep_array-item</string>
147
+ </dict>
148
+ <dict>
149
+ <key>include</key>
150
+ <string>#openstep_comment</string>
151
+ </dict>
152
+ <dict>
153
+ <key>include</key>
154
+ <string>#openstep_stray-char</string>
155
+ </dict>
156
+ </array>
157
+ </dict>
158
+ <key>openstep_array-item</key>
159
+ <dict>
160
+ <key>begin</key>
161
+ <string>(?={|\(|"|'|[-a-zA-Z0-9_.]|&lt;)</string>
162
+ <key>end</key>
163
+ <string>(,)|(?=\))</string>
164
+ <key>endCaptures</key>
165
+ <dict>
166
+ <key>1</key>
167
+ <dict>
168
+ <key>name</key>
169
+ <string>punctuation.separator.array.plist</string>
170
+ </dict>
171
+ </dict>
172
+ <key>patterns</key>
173
+ <array>
174
+ <dict>
175
+ <key>include</key>
176
+ <string>#openstep_string</string>
177
+ </dict>
178
+ <dict>
179
+ <key>include</key>
180
+ <string>#openstep_data</string>
181
+ </dict>
182
+ <dict>
183
+ <key>include</key>
184
+ <string>#openstep_dictionary</string>
185
+ </dict>
186
+ <dict>
187
+ <key>include</key>
188
+ <string>#openstep_array</string>
189
+ </dict>
190
+ <dict>
191
+ <key>begin</key>
192
+ <string>(?&lt;="|'|\}|\))</string>
193
+ <key>comment</key>
194
+ <string>Catch stray chars</string>
195
+ <key>end</key>
196
+ <string>(?=,|\))</string>
197
+ <key>patterns</key>
198
+ <array>
199
+ <dict>
200
+ <key>include</key>
201
+ <string>#openstep_comment</string>
202
+ </dict>
203
+ <dict>
204
+ <key>include</key>
205
+ <string>#openstep_stray-char</string>
206
+ </dict>
207
+ </array>
208
+ </dict>
209
+ </array>
210
+ </dict>
211
+ <key>openstep_comment</key>
212
+ <dict>
213
+ <key>patterns</key>
214
+ <array>
215
+ <dict>
216
+ <key>begin</key>
217
+ <string>/\*</string>
218
+ <key>captures</key>
219
+ <dict>
220
+ <key>0</key>
221
+ <dict>
222
+ <key>name</key>
223
+ <string>punctuation.definition.comment.plist</string>
224
+ </dict>
225
+ </dict>
226
+ <key>end</key>
227
+ <string>\*/</string>
228
+ <key>name</key>
229
+ <string>comment.block.plist</string>
230
+ </dict>
231
+ <dict>
232
+ <key>captures</key>
233
+ <dict>
234
+ <key>1</key>
235
+ <dict>
236
+ <key>name</key>
237
+ <string>punctuation.definition.comment.plist</string>
238
+ </dict>
239
+ </dict>
240
+ <key>match</key>
241
+ <string>(//).*$\n?</string>
242
+ <key>name</key>
243
+ <string>comment.line.double-slash.plist</string>
244
+ </dict>
245
+ </array>
246
+ </dict>
247
+ <key>openstep_data</key>
248
+ <dict>
249
+ <key>begin</key>
250
+ <string>(&lt;)</string>
251
+ <key>beginCaptures</key>
252
+ <dict>
253
+ <key>1</key>
254
+ <dict>
255
+ <key>name</key>
256
+ <string>punctuation.definition.data.plist</string>
257
+ </dict>
258
+ </dict>
259
+ <key>end</key>
260
+ <string>(=?)\s*?(&gt;)</string>
261
+ <key>endCaptures</key>
262
+ <dict>
263
+ <key>1</key>
264
+ <dict>
265
+ <key>name</key>
266
+ <string>punctuation.terminator.data.plist</string>
267
+ </dict>
268
+ <key>2</key>
269
+ <dict>
270
+ <key>name</key>
271
+ <string>punctuation.definition.data.plist</string>
272
+ </dict>
273
+ </dict>
274
+ <key>name</key>
275
+ <string>meta.binary-data.plist</string>
276
+ <key>patterns</key>
277
+ <array>
278
+ <dict>
279
+ <key>match</key>
280
+ <string>[A-Za-z0-9+/]</string>
281
+ <key>name</key>
282
+ <string>constant.numeric.base64.plist</string>
283
+ </dict>
284
+ <dict>
285
+ <key>match</key>
286
+ <string>[^ \n]</string>
287
+ <key>name</key>
288
+ <string>invalid.illegal.invalid-character.plist</string>
289
+ </dict>
290
+ </array>
291
+ </dict>
292
+ <key>openstep_dictionary</key>
293
+ <dict>
294
+ <key>begin</key>
295
+ <string>(\{)</string>
296
+ <key>captures</key>
297
+ <dict>
298
+ <key>1</key>
299
+ <dict>
300
+ <key>name</key>
301
+ <string>punctuation.section.dictionary.plist</string>
302
+ </dict>
303
+ </dict>
304
+ <key>end</key>
305
+ <string>(\})</string>
306
+ <key>name</key>
307
+ <string>meta.group.dictionary.plist</string>
308
+ <key>patterns</key>
309
+ <array>
310
+ <dict>
311
+ <key>include</key>
312
+ <string>#openstep_name</string>
313
+ </dict>
314
+ <dict>
315
+ <key>include</key>
316
+ <string>#openstep_comment</string>
317
+ </dict>
318
+ <dict>
319
+ <key>include</key>
320
+ <string>#openstep_stray-char</string>
321
+ </dict>
322
+ </array>
323
+ </dict>
324
+ <key>openstep_name</key>
325
+ <dict>
326
+ <key>patterns</key>
327
+ <array>
328
+ <dict>
329
+ <key>begin</key>
330
+ <string>(?=([-a-zA-Z0-9_.]+)|("|'))</string>
331
+ <key>end</key>
332
+ <string>((?&lt;=\));)|((?&lt;=\});)|(;)</string>
333
+ <key>endCaptures</key>
334
+ <dict>
335
+ <key>1</key>
336
+ <dict>
337
+ <key>name</key>
338
+ <string>punctuation.terminator.array.plist</string>
339
+ </dict>
340
+ <key>2</key>
341
+ <dict>
342
+ <key>name</key>
343
+ <string>punctuation.terminator.dictionary.plist</string>
344
+ </dict>
345
+ <key>3</key>
346
+ <dict>
347
+ <key>name</key>
348
+ <string>punctuation.terminator.rule.plist</string>
349
+ </dict>
350
+ </dict>
351
+ <key>name</key>
352
+ <string>meta.rule.named.plist</string>
353
+ <key>patterns</key>
354
+ <array>
355
+ <dict>
356
+ <key>match</key>
357
+ <string>[-a-zA-Z0-9_.]+</string>
358
+ <key>name</key>
359
+ <string>constant.other.key.plist</string>
360
+ </dict>
361
+ <dict>
362
+ <key>begin</key>
363
+ <string>(?&lt;=('|"|[-a-zA-Z0-9_.]))(?!=)|\s</string>
364
+ <key>comment</key>
365
+ <string>Mark anything between the name and the =
366
+ as invalid.</string>
367
+ <key>end</key>
368
+ <string>(?==)</string>
369
+ <key>patterns</key>
370
+ <array>
371
+ <dict>
372
+ <key>include</key>
373
+ <string>#openstep_stray-char</string>
374
+ </dict>
375
+ </array>
376
+ </dict>
377
+ <dict>
378
+ <key>begin</key>
379
+ <string>("|')</string>
380
+ <key>beginCaptures</key>
381
+ <dict>
382
+ <key>0</key>
383
+ <dict>
384
+ <key>name</key>
385
+ <string>punctuation.definition.string.begin.plist</string>
386
+ </dict>
387
+ </dict>
388
+ <key>end</key>
389
+ <string>(\1)</string>
390
+ <key>endCaptures</key>
391
+ <dict>
392
+ <key>0</key>
393
+ <dict>
394
+ <key>name</key>
395
+ <string>punctuation.definition.string.end.plist</string>
396
+ </dict>
397
+ </dict>
398
+ <key>name</key>
399
+ <string>constant.other.key.plist</string>
400
+ <key>patterns</key>
401
+ <array>
402
+ <dict>
403
+ <key>include</key>
404
+ <string>#openstep_string-contents</string>
405
+ </dict>
406
+ </array>
407
+ </dict>
408
+ <dict>
409
+ <key>begin</key>
410
+ <string>(=)(?!;)</string>
411
+ <key>beginCaptures</key>
412
+ <dict>
413
+ <key>1</key>
414
+ <dict>
415
+ <key>name</key>
416
+ <string>punctuation.separator.key-value.plist</string>
417
+ </dict>
418
+ </dict>
419
+ <key>end</key>
420
+ <string>(?=;)</string>
421
+ <key>patterns</key>
422
+ <array>
423
+ <dict>
424
+ <key>include</key>
425
+ <string>#openstep_post-value</string>
426
+ </dict>
427
+ <dict>
428
+ <key>include</key>
429
+ <string>#openstep_string</string>
430
+ </dict>
431
+ <dict>
432
+ <key>include</key>
433
+ <string>#openstep_data</string>
434
+ </dict>
435
+ <dict>
436
+ <key>include</key>
437
+ <string>#openstep_array</string>
438
+ </dict>
439
+ <dict>
440
+ <key>include</key>
441
+ <string>#openstep_dictionary</string>
442
+ </dict>
443
+ </array>
444
+ </dict>
445
+ </array>
446
+ </dict>
447
+ </array>
448
+ </dict>
449
+ <key>openstep_post-value</key>
450
+ <dict>
451
+ <key>begin</key>
452
+ <string>(?&lt;='|"|\}|\)|&gt;|[-a-zA-Z0-9_.])(?!;)</string>
453
+ <key>end</key>
454
+ <string>(?=;)</string>
455
+ <key>patterns</key>
456
+ <array>
457
+ <dict>
458
+ <key>include</key>
459
+ <string>#openstep_stray-char</string>
460
+ </dict>
461
+ </array>
462
+ </dict>
463
+ <key>openstep_stray-char</key>
464
+ <dict>
465
+ <key>match</key>
466
+ <string>[^\s\n]</string>
467
+ <key>name</key>
468
+ <string>invalid.illegal.character-not-allowed-here.plist</string>
469
+ </dict>
470
+ <key>openstep_string</key>
471
+ <dict>
472
+ <key>patterns</key>
473
+ <array>
474
+ <dict>
475
+ <key>begin</key>
476
+ <string>'</string>
477
+ <key>beginCaptures</key>
478
+ <dict>
479
+ <key>0</key>
480
+ <dict>
481
+ <key>name</key>
482
+ <string>punctuation.definition.string.begin.plist</string>
483
+ </dict>
484
+ </dict>
485
+ <key>end</key>
486
+ <string>'</string>
487
+ <key>endCaptures</key>
488
+ <dict>
489
+ <key>0</key>
490
+ <dict>
491
+ <key>name</key>
492
+ <string>punctuation.definition.string.end.plist</string>
493
+ </dict>
494
+ </dict>
495
+ <key>name</key>
496
+ <string>string.quoted.single.plist</string>
497
+ <key>patterns</key>
498
+ <array>
499
+ <dict>
500
+ <key>include</key>
501
+ <string>#openstep_string-contents</string>
502
+ </dict>
503
+ </array>
504
+ </dict>
505
+ <dict>
506
+ <key>begin</key>
507
+ <string>"</string>
508
+ <key>beginCaptures</key>
509
+ <dict>
510
+ <key>0</key>
511
+ <dict>
512
+ <key>name</key>
513
+ <string>punctuation.definition.string.begin.plist</string>
514
+ </dict>
515
+ </dict>
516
+ <key>end</key>
517
+ <string>"</string>
518
+ <key>endCaptures</key>
519
+ <dict>
520
+ <key>0</key>
521
+ <dict>
522
+ <key>name</key>
523
+ <string>punctuation.definition.string.end.plist</string>
524
+ </dict>
525
+ </dict>
526
+ <key>name</key>
527
+ <string>string.quoted.double.plist</string>
528
+ <key>patterns</key>
529
+ <array>
530
+ <dict>
531
+ <key>include</key>
532
+ <string>#openstep_string-contents</string>
533
+ </dict>
534
+ </array>
535
+ </dict>
536
+ <dict>
537
+ <key>match</key>
538
+ <string>[-+]?\d+(\.\d*)?(E[-+]\d+)?(?!\w)</string>
539
+ <key>name</key>
540
+ <string>constant.numeric.plist</string>
541
+ </dict>
542
+ <dict>
543
+ <key>match</key>
544
+ <string>[-a-zA-Z0-9_.]+</string>
545
+ <key>name</key>
546
+ <string>string.unquoted.plist</string>
547
+ </dict>
548
+ </array>
549
+ </dict>
550
+ <key>openstep_string-contents</key>
551
+ <dict>
552
+ <key>match</key>
553
+ <string>\\([uU](\h{4}|\h{2})|\d{1,3}|.)</string>
554
+ <key>name</key>
555
+ <string>constant.character.escape.plist</string>
556
+ </dict>
557
+ <key>xml</key>
558
+ <dict>
559
+ <key>patterns</key>
560
+ <array>
561
+ <dict>
562
+ <key>begin</key>
563
+ <string>((&lt;)((plist\b)))</string>
564
+ <key>captures</key>
565
+ <dict>
566
+ <key>1</key>
567
+ <dict>
568
+ <key>name</key>
569
+ <string>meta.tag.plist.xml.plist</string>
570
+ </dict>
571
+ <key>2</key>
572
+ <dict>
573
+ <key>name</key>
574
+ <string>punctuation.definition.tag.xml.plist</string>
575
+ </dict>
576
+ <key>3</key>
577
+ <dict>
578
+ <key>name</key>
579
+ <string>entity.name.tag.xml.plist</string>
580
+ </dict>
581
+ <key>4</key>
582
+ <dict>
583
+ <key>name</key>
584
+ <string>entity.name.tag.localname.xml.plist</string>
585
+ </dict>
586
+ <key>5</key>
587
+ <dict>
588
+ <key>name</key>
589
+ <string>punctuation.definition.tag.xml.plist</string>
590
+ </dict>
591
+ </dict>
592
+ <key>end</key>
593
+ <string>((/)((plist))(&gt;))</string>
594
+ <key>patterns</key>
595
+ <array>
596
+ <dict>
597
+ <key>begin</key>
598
+ <string>(?&lt;=&lt;plist)(?!&gt;)\s*(?:(version)(=)(?:((").*?("))|((').*?('))))?</string>
599
+ <key>beginCaptures</key>
600
+ <dict>
601
+ <key>1</key>
602
+ <dict>
603
+ <key>name</key>
604
+ <string>entity.other.attribute-name.version.xml.plist</string>
605
+ </dict>
606
+ <key>2</key>
607
+ <dict>
608
+ <key>name</key>
609
+ <string>punctuation.separator.key-value.xml.plist</string>
610
+ </dict>
611
+ <key>3</key>
612
+ <dict>
613
+ <key>name</key>
614
+ <string>string.quoted.double.xml.plist</string>
615
+ </dict>
616
+ <key>4</key>
617
+ <dict>
618
+ <key>name</key>
619
+ <string>punctuation.definition.string.begin.xml.plist</string>
620
+ </dict>
621
+ <key>5</key>
622
+ <dict>
623
+ <key>name</key>
624
+ <string>punctuation.definition.string.end.xml.plist</string>
625
+ </dict>
626
+ <key>6</key>
627
+ <dict>
628
+ <key>name</key>
629
+ <string>string.quoted.single.xml.plist</string>
630
+ </dict>
631
+ <key>7</key>
632
+ <dict>
633
+ <key>name</key>
634
+ <string>punctuation.definition.string.begin.xml.plist</string>
635
+ </dict>
636
+ <key>8</key>
637
+ <dict>
638
+ <key>name</key>
639
+ <string>punctuation.definition.string.end.xml.plist</string>
640
+ </dict>
641
+ </dict>
642
+ <key>end</key>
643
+ <string>(?=&gt;)</string>
644
+ <key>name</key>
645
+ <string>meta.tag.plist.xml.plist</string>
646
+ </dict>
647
+ <dict>
648
+ <key>captures</key>
649
+ <dict>
650
+ <key>1</key>
651
+ <dict>
652
+ <key>name</key>
653
+ <string>meta.tag.plist.xml.plist</string>
654
+ </dict>
655
+ <key>2</key>
656
+ <dict>
657
+ <key>name</key>
658
+ <string>punctuation.definition.tag.xml.plist</string>
659
+ </dict>
660
+ <key>3</key>
661
+ <dict>
662
+ <key>name</key>
663
+ <string>meta.scope.between-tag-pair.xml.plist</string>
664
+ </dict>
665
+ </dict>
666
+ <key>comment</key>
667
+ <string>Tag with no content</string>
668
+ <key>match</key>
669
+ <string>((&gt;(&lt;)))(?=/plist)</string>
670
+ </dict>
671
+ <dict>
672
+ <key>begin</key>
673
+ <string>((&gt;))(?!&lt;/plist)</string>
674
+ <key>beginCaptures</key>
675
+ <dict>
676
+ <key>1</key>
677
+ <dict>
678
+ <key>name</key>
679
+ <string>meta.tag.plist.xml.plist</string>
680
+ </dict>
681
+ <key>2</key>
682
+ <dict>
683
+ <key>name</key>
684
+ <string>punctuation.definition.tag.xml.plist</string>
685
+ </dict>
686
+ </dict>
687
+ <key>end</key>
688
+ <string>(&lt;)(?=/plist)</string>
689
+ <key>endCaptures</key>
690
+ <dict>
691
+ <key>0</key>
692
+ <dict>
693
+ <key>name</key>
694
+ <string>meta.tag.plist.xml.plist</string>
695
+ </dict>
696
+ <key>1</key>
697
+ <dict>
698
+ <key>name</key>
699
+ <string>punctuation.definition.tag.xml.plist</string>
700
+ </dict>
701
+ </dict>
702
+ <key>patterns</key>
703
+ <array>
704
+ <dict>
705
+ <key>include</key>
706
+ <string>#xml_tags</string>
707
+ </dict>
708
+ </array>
709
+ </dict>
710
+ </array>
711
+ </dict>
712
+ <dict>
713
+ <key>include</key>
714
+ <string>#xml_invalid</string>
715
+ </dict>
716
+ <dict>
717
+ <key>include</key>
718
+ <string>#xml_comment</string>
719
+ </dict>
720
+ <dict>
721
+ <key>include</key>
722
+ <string>text.xml</string>
723
+ </dict>
724
+ <dict>
725
+ <key>include</key>
726
+ <string>#xml_stray-char</string>
727
+ </dict>
728
+ </array>
729
+ </dict>
730
+ <key>xml_comment</key>
731
+ <dict>
732
+ <key>begin</key>
733
+ <string>&lt;!--</string>
734
+ <key>captures</key>
735
+ <dict>
736
+ <key>0</key>
737
+ <dict>
738
+ <key>name</key>
739
+ <string>punctuation.definition.comment.xml.plist</string>
740
+ </dict>
741
+ </dict>
742
+ <key>end</key>
743
+ <string>(?&lt;!-)--&gt;</string>
744
+ <key>name</key>
745
+ <string>comment.block.xml.plist</string>
746
+ <key>patterns</key>
747
+ <array>
748
+ <dict>
749
+ <key>match</key>
750
+ <string>-(?=--&gt;)|--</string>
751
+ <key>name</key>
752
+ <string>invalid.illegal.double-dash-not-allowed.xml.plist</string>
753
+ </dict>
754
+ </array>
755
+ </dict>
756
+ <key>xml_innertag</key>
757
+ <dict>
758
+ <key>patterns</key>
759
+ <array>
760
+ <dict>
761
+ <key>match</key>
762
+ <string>&amp;([a-zA-Z0-9_-]+|#[0-9]+|#x[0-9a-fA-F]+);</string>
763
+ <key>name</key>
764
+ <string>constant.character.entity.xml.plist</string>
765
+ </dict>
766
+ <dict>
767
+ <key>match</key>
768
+ <string>&amp;</string>
769
+ <key>name</key>
770
+ <string>invalid.illegal.bad-ampersand.xml.plist</string>
771
+ </dict>
772
+ </array>
773
+ </dict>
774
+ <key>xml_invalid</key>
775
+ <dict>
776
+ <key>captures</key>
777
+ <dict>
778
+ <key>1</key>
779
+ <dict>
780
+ <key>name</key>
781
+ <string>meta.tag.boolean.xml.plist</string>
782
+ </dict>
783
+ <key>2</key>
784
+ <dict>
785
+ <key>name</key>
786
+ <string>punctuation.definition.tag.xml.plist</string>
787
+ </dict>
788
+ <key>3</key>
789
+ <dict>
790
+ <key>name</key>
791
+ <string>invalid.illegal.tag-not-recognized.xml.plist</string>
792
+ </dict>
793
+ <key>4</key>
794
+ <dict>
795
+ <key>name</key>
796
+ <string>punctuation.definition.tag.xml.plist</string>
797
+ </dict>
798
+ </dict>
799
+ <key>comment</key>
800
+ <string>Invalid tag</string>
801
+ <key>match</key>
802
+ <string>((&lt;)/?(\w+).*?(&gt;))</string>
803
+ </dict>
804
+ <key>xml_stray-char</key>
805
+ <dict>
806
+ <key>match</key>
807
+ <string>\S</string>
808
+ <key>name</key>
809
+ <string>invalid.illegal.character-data-not-allowed-here.xml.plist</string>
810
+ </dict>
811
+ <key>xml_tags</key>
812
+ <dict>
813
+ <key>patterns</key>
814
+ <array>
815
+ <dict>
816
+ <key>captures</key>
817
+ <dict>
818
+ <key>1</key>
819
+ <dict>
820
+ <key>name</key>
821
+ <string>meta.tag.dict.xml.plist</string>
822
+ </dict>
823
+ <key>10</key>
824
+ <dict>
825
+ <key>name</key>
826
+ <string>entity.name.tag.localname.xml.plist</string>
827
+ </dict>
828
+ <key>11</key>
829
+ <dict>
830
+ <key>name</key>
831
+ <string>punctuation.definition.tag.xml.plist</string>
832
+ </dict>
833
+ <key>2</key>
834
+ <dict>
835
+ <key>name</key>
836
+ <string>punctuation.definition.tag.xml.plist</string>
837
+ </dict>
838
+ <key>3</key>
839
+ <dict>
840
+ <key>name</key>
841
+ <string>entity.name.tag.xml.plist</string>
842
+ </dict>
843
+ <key>4</key>
844
+ <dict>
845
+ <key>name</key>
846
+ <string>entity.name.tag.localname.xml.plist</string>
847
+ </dict>
848
+ <key>5</key>
849
+ <dict>
850
+ <key>name</key>
851
+ <string>punctuation.definition.tag.xml.plist</string>
852
+ </dict>
853
+ <key>6</key>
854
+ <dict>
855
+ <key>name</key>
856
+ <string>meta.tag.dict.xml.plist</string>
857
+ </dict>
858
+ <key>7</key>
859
+ <dict>
860
+ <key>name</key>
861
+ <string>punctuation.definition.tag.xml.plist</string>
862
+ </dict>
863
+ <key>8</key>
864
+ <dict>
865
+ <key>name</key>
866
+ <string>meta.scope.between-tag-pair.xml.plist</string>
867
+ </dict>
868
+ <key>9</key>
869
+ <dict>
870
+ <key>name</key>
871
+ <string>entity.name.tag.xml.plist</string>
872
+ </dict>
873
+ </dict>
874
+ <key>comment</key>
875
+ <string>Empty tag: Dictionary</string>
876
+ <key>match</key>
877
+ <string>((&lt;)((dict))(&gt;))(((&lt;)/)((dict))(&gt;))</string>
878
+ </dict>
879
+ <dict>
880
+ <key>captures</key>
881
+ <dict>
882
+ <key>1</key>
883
+ <dict>
884
+ <key>name</key>
885
+ <string>meta.tag.array.xml.plist</string>
886
+ </dict>
887
+ <key>10</key>
888
+ <dict>
889
+ <key>name</key>
890
+ <string>entity.name.tag.localname.xml.plist</string>
891
+ </dict>
892
+ <key>11</key>
893
+ <dict>
894
+ <key>name</key>
895
+ <string>punctuation.definition.tag.xml.plist</string>
896
+ </dict>
897
+ <key>2</key>
898
+ <dict>
899
+ <key>name</key>
900
+ <string>punctuation.definition.tag.xml.plist</string>
901
+ </dict>
902
+ <key>3</key>
903
+ <dict>
904
+ <key>name</key>
905
+ <string>entity.name.tag.xml.plist</string>
906
+ </dict>
907
+ <key>4</key>
908
+ <dict>
909
+ <key>name</key>
910
+ <string>entity.name.tag.localname.xml.plist</string>
911
+ </dict>
912
+ <key>5</key>
913
+ <dict>
914
+ <key>name</key>
915
+ <string>punctuation.definition.tag.xml.plist</string>
916
+ </dict>
917
+ <key>6</key>
918
+ <dict>
919
+ <key>name</key>
920
+ <string>meta.tag.array.xml.plist</string>
921
+ </dict>
922
+ <key>7</key>
923
+ <dict>
924
+ <key>name</key>
925
+ <string>punctuation.definition.tag.xml.plist</string>
926
+ </dict>
927
+ <key>8</key>
928
+ <dict>
929
+ <key>name</key>
930
+ <string>meta.scope.between-tag-pair.xml.plist</string>
931
+ </dict>
932
+ <key>9</key>
933
+ <dict>
934
+ <key>name</key>
935
+ <string>entity.name.tag.xml.plist</string>
936
+ </dict>
937
+ </dict>
938
+ <key>comment</key>
939
+ <string>Empty tag: Array</string>
940
+ <key>match</key>
941
+ <string>((&lt;)((array))(&gt;))(((&lt;)/)((array))(&gt;))</string>
942
+ </dict>
943
+ <dict>
944
+ <key>captures</key>
945
+ <dict>
946
+ <key>1</key>
947
+ <dict>
948
+ <key>name</key>
949
+ <string>meta.tag.string.xml.plist</string>
950
+ </dict>
951
+ <key>10</key>
952
+ <dict>
953
+ <key>name</key>
954
+ <string>entity.name.tag.localname.xml.plist</string>
955
+ </dict>
956
+ <key>11</key>
957
+ <dict>
958
+ <key>name</key>
959
+ <string>punctuation.definition.tag.xml.plist</string>
960
+ </dict>
961
+ <key>2</key>
962
+ <dict>
963
+ <key>name</key>
964
+ <string>punctuation.definition.tag.xml.plist</string>
965
+ </dict>
966
+ <key>3</key>
967
+ <dict>
968
+ <key>name</key>
969
+ <string>entity.name.tag.xml.plist</string>
970
+ </dict>
971
+ <key>4</key>
972
+ <dict>
973
+ <key>name</key>
974
+ <string>entity.name.tag.localname.xml.plist</string>
975
+ </dict>
976
+ <key>5</key>
977
+ <dict>
978
+ <key>name</key>
979
+ <string>punctuation.definition.tag.xml.plist</string>
980
+ </dict>
981
+ <key>6</key>
982
+ <dict>
983
+ <key>name</key>
984
+ <string>meta.tag.string.xml.plist</string>
985
+ </dict>
986
+ <key>7</key>
987
+ <dict>
988
+ <key>name</key>
989
+ <string>punctuation.definition.tag.xml.plist</string>
990
+ </dict>
991
+ <key>8</key>
992
+ <dict>
993
+ <key>name</key>
994
+ <string>meta.scope.between-tag-pair.xml.plist</string>
995
+ </dict>
996
+ <key>9</key>
997
+ <dict>
998
+ <key>name</key>
999
+ <string>entity.name.tag.xml.plist</string>
1000
+ </dict>
1001
+ </dict>
1002
+ <key>comment</key>
1003
+ <string>Empty tag: String</string>
1004
+ <key>match</key>
1005
+ <string>((&lt;)((string))(&gt;))(((&lt;)/)((string))(&gt;))</string>
1006
+ </dict>
1007
+ <dict>
1008
+ <key>begin</key>
1009
+ <string>((&lt;)((key))(&gt;))</string>
1010
+ <key>captures</key>
1011
+ <dict>
1012
+ <key>1</key>
1013
+ <dict>
1014
+ <key>name</key>
1015
+ <string>meta.tag.key.xml.plist</string>
1016
+ </dict>
1017
+ <key>2</key>
1018
+ <dict>
1019
+ <key>name</key>
1020
+ <string>punctuation.definition.tag.xml.plist</string>
1021
+ </dict>
1022
+ <key>3</key>
1023
+ <dict>
1024
+ <key>name</key>
1025
+ <string>entity.name.tag.xml.plist</string>
1026
+ </dict>
1027
+ <key>4</key>
1028
+ <dict>
1029
+ <key>name</key>
1030
+ <string>entity.name.tag.localname.xml.plist</string>
1031
+ </dict>
1032
+ <key>5</key>
1033
+ <dict>
1034
+ <key>name</key>
1035
+ <string>punctuation.definition.tag.xml.plist</string>
1036
+ </dict>
1037
+ </dict>
1038
+ <key>comment</key>
1039
+ <string>the extra captures are required to duplicate the effect of the namespace parsing in the XML syntax</string>
1040
+ <key>contentName</key>
1041
+ <string>constant.other.name.xml.plist</string>
1042
+ <key>end</key>
1043
+ <string>((&lt;/)((key))(&gt;))</string>
1044
+ <key>patterns</key>
1045
+ <array>
1046
+ <dict>
1047
+ <key>begin</key>
1048
+ <string>&lt;!\[CDATA\[</string>
1049
+ <key>captures</key>
1050
+ <dict>
1051
+ <key>0</key>
1052
+ <dict>
1053
+ <key>name</key>
1054
+ <string>punctuation.definition.constant.xml</string>
1055
+ </dict>
1056
+ </dict>
1057
+ <key>end</key>
1058
+ <string>]]&gt;</string>
1059
+ </dict>
1060
+ </array>
1061
+ </dict>
1062
+ <dict>
1063
+ <key>captures</key>
1064
+ <dict>
1065
+ <key>1</key>
1066
+ <dict>
1067
+ <key>name</key>
1068
+ <string>meta.tag.dict.xml.plist</string>
1069
+ </dict>
1070
+ <key>2</key>
1071
+ <dict>
1072
+ <key>name</key>
1073
+ <string>punctuation.definition.tag.xml.plist</string>
1074
+ </dict>
1075
+ <key>3</key>
1076
+ <dict>
1077
+ <key>name</key>
1078
+ <string>entity.name.tag.xml.plist</string>
1079
+ </dict>
1080
+ <key>4</key>
1081
+ <dict>
1082
+ <key>name</key>
1083
+ <string>entity.name.tag.localname.xml.plist</string>
1084
+ </dict>
1085
+ <key>5</key>
1086
+ <dict>
1087
+ <key>name</key>
1088
+ <string>punctuation.definition.tag.xml.plist</string>
1089
+ </dict>
1090
+ </dict>
1091
+ <key>comment</key>
1092
+ <string>Self-closing Dictionary</string>
1093
+ <key>match</key>
1094
+ <string>((&lt;)((dict))\s*?/(&gt;))</string>
1095
+ </dict>
1096
+ <dict>
1097
+ <key>captures</key>
1098
+ <dict>
1099
+ <key>1</key>
1100
+ <dict>
1101
+ <key>name</key>
1102
+ <string>meta.tag.array.xml.plist</string>
1103
+ </dict>
1104
+ <key>2</key>
1105
+ <dict>
1106
+ <key>name</key>
1107
+ <string>punctuation.definition.tag.xml.plist</string>
1108
+ </dict>
1109
+ <key>3</key>
1110
+ <dict>
1111
+ <key>name</key>
1112
+ <string>entity.name.tag.xml.plist</string>
1113
+ </dict>
1114
+ <key>4</key>
1115
+ <dict>
1116
+ <key>name</key>
1117
+ <string>entity.name.tag.localname.xml.plist</string>
1118
+ </dict>
1119
+ <key>5</key>
1120
+ <dict>
1121
+ <key>name</key>
1122
+ <string>punctuation.definition.tag.xml.plist</string>
1123
+ </dict>
1124
+ </dict>
1125
+ <key>comment</key>
1126
+ <string>Self-closing Array</string>
1127
+ <key>match</key>
1128
+ <string>((&lt;)((array))\s*?/(&gt;))</string>
1129
+ </dict>
1130
+ <dict>
1131
+ <key>captures</key>
1132
+ <dict>
1133
+ <key>1</key>
1134
+ <dict>
1135
+ <key>name</key>
1136
+ <string>meta.tag.string.xml.plist</string>
1137
+ </dict>
1138
+ <key>2</key>
1139
+ <dict>
1140
+ <key>name</key>
1141
+ <string>punctuation.definition.tag.xml.plist</string>
1142
+ </dict>
1143
+ <key>3</key>
1144
+ <dict>
1145
+ <key>name</key>
1146
+ <string>entity.name.tag.xml.plist</string>
1147
+ </dict>
1148
+ <key>4</key>
1149
+ <dict>
1150
+ <key>name</key>
1151
+ <string>entity.name.tag.localname.xml.plist</string>
1152
+ </dict>
1153
+ <key>5</key>
1154
+ <dict>
1155
+ <key>name</key>
1156
+ <string>punctuation.definition.tag.xml.plist</string>
1157
+ </dict>
1158
+ </dict>
1159
+ <key>comment</key>
1160
+ <string>Self-closing String</string>
1161
+ <key>match</key>
1162
+ <string>((&lt;)((string))\s*?/(&gt;))</string>
1163
+ </dict>
1164
+ <dict>
1165
+ <key>captures</key>
1166
+ <dict>
1167
+ <key>1</key>
1168
+ <dict>
1169
+ <key>name</key>
1170
+ <string>meta.tag.key.xml.plist</string>
1171
+ </dict>
1172
+ <key>2</key>
1173
+ <dict>
1174
+ <key>name</key>
1175
+ <string>punctuation.definition.tag.xml.plist</string>
1176
+ </dict>
1177
+ <key>3</key>
1178
+ <dict>
1179
+ <key>name</key>
1180
+ <string>entity.name.tag.xml.plist</string>
1181
+ </dict>
1182
+ <key>4</key>
1183
+ <dict>
1184
+ <key>name</key>
1185
+ <string>entity.name.tag.localname.xml.plist</string>
1186
+ </dict>
1187
+ <key>5</key>
1188
+ <dict>
1189
+ <key>name</key>
1190
+ <string>punctuation.definition.tag.xml.plist</string>
1191
+ </dict>
1192
+ </dict>
1193
+ <key>comment</key>
1194
+ <string>Self-closing Key</string>
1195
+ <key>match</key>
1196
+ <string>((&lt;)((key))\s*?/(&gt;))</string>
1197
+ </dict>
1198
+ <dict>
1199
+ <key>begin</key>
1200
+ <string>((&lt;)((dict))(&gt;))</string>
1201
+ <key>captures</key>
1202
+ <dict>
1203
+ <key>1</key>
1204
+ <dict>
1205
+ <key>name</key>
1206
+ <string>meta.tag.dict.xml.plist</string>
1207
+ </dict>
1208
+ <key>2</key>
1209
+ <dict>
1210
+ <key>name</key>
1211
+ <string>punctuation.definition.tag.xml.plist</string>
1212
+ </dict>
1213
+ <key>3</key>
1214
+ <dict>
1215
+ <key>name</key>
1216
+ <string>entity.name.tag.xml.plist</string>
1217
+ </dict>
1218
+ <key>4</key>
1219
+ <dict>
1220
+ <key>name</key>
1221
+ <string>entity.name.tag.localname.xml.plist</string>
1222
+ </dict>
1223
+ <key>5</key>
1224
+ <dict>
1225
+ <key>name</key>
1226
+ <string>punctuation.definition.tag.xml.plist</string>
1227
+ </dict>
1228
+ </dict>
1229
+ <key>comment</key>
1230
+ <string>Dictionary</string>
1231
+ <key>end</key>
1232
+ <string>((&lt;/)((dict))(&gt;))</string>
1233
+ <key>patterns</key>
1234
+ <array>
1235
+ <dict>
1236
+ <key>include</key>
1237
+ <string>#xml_tags</string>
1238
+ </dict>
1239
+ </array>
1240
+ </dict>
1241
+ <dict>
1242
+ <key>begin</key>
1243
+ <string>((&lt;)((array))(&gt;))</string>
1244
+ <key>captures</key>
1245
+ <dict>
1246
+ <key>1</key>
1247
+ <dict>
1248
+ <key>name</key>
1249
+ <string>meta.tag.array.xml.plist</string>
1250
+ </dict>
1251
+ <key>2</key>
1252
+ <dict>
1253
+ <key>name</key>
1254
+ <string>punctuation.definition.tag.xml.plist</string>
1255
+ </dict>
1256
+ <key>3</key>
1257
+ <dict>
1258
+ <key>name</key>
1259
+ <string>entity.name.tag.xml.plist</string>
1260
+ </dict>
1261
+ <key>4</key>
1262
+ <dict>
1263
+ <key>name</key>
1264
+ <string>entity.name.tag.localname.xml.plist</string>
1265
+ </dict>
1266
+ <key>5</key>
1267
+ <dict>
1268
+ <key>name</key>
1269
+ <string>punctuation.definition.tag.xml.plist</string>
1270
+ </dict>
1271
+ </dict>
1272
+ <key>comment</key>
1273
+ <string>Array</string>
1274
+ <key>end</key>
1275
+ <string>((&lt;/)((array))(&gt;))</string>
1276
+ <key>patterns</key>
1277
+ <array>
1278
+ <dict>
1279
+ <key>include</key>
1280
+ <string>#xml_tags</string>
1281
+ </dict>
1282
+ </array>
1283
+ </dict>
1284
+ <dict>
1285
+ <key>begin</key>
1286
+ <string>((&lt;)((string))(&gt;))</string>
1287
+ <key>captures</key>
1288
+ <dict>
1289
+ <key>1</key>
1290
+ <dict>
1291
+ <key>name</key>
1292
+ <string>meta.tag.string.xml.plist</string>
1293
+ </dict>
1294
+ <key>2</key>
1295
+ <dict>
1296
+ <key>name</key>
1297
+ <string>punctuation.definition.tag.xml.plist</string>
1298
+ </dict>
1299
+ <key>3</key>
1300
+ <dict>
1301
+ <key>name</key>
1302
+ <string>entity.name.tag.xml.plist</string>
1303
+ </dict>
1304
+ <key>4</key>
1305
+ <dict>
1306
+ <key>name</key>
1307
+ <string>entity.name.tag.localname.xml.plist</string>
1308
+ </dict>
1309
+ <key>5</key>
1310
+ <dict>
1311
+ <key>name</key>
1312
+ <string>punctuation.definition.tag.xml.plist</string>
1313
+ </dict>
1314
+ </dict>
1315
+ <key>comment</key>
1316
+ <string>Strings</string>
1317
+ <key>contentName</key>
1318
+ <string>string.quoted.other.xml.plist</string>
1319
+ <key>end</key>
1320
+ <string>((&lt;/)((string))(&gt;))</string>
1321
+ <key>patterns</key>
1322
+ <array>
1323
+ <dict>
1324
+ <key>include</key>
1325
+ <string>#xml_innertag</string>
1326
+ </dict>
1327
+ <dict>
1328
+ <key>begin</key>
1329
+ <string>&lt;!\[CDATA\[</string>
1330
+ <key>captures</key>
1331
+ <dict>
1332
+ <key>0</key>
1333
+ <dict>
1334
+ <key>name</key>
1335
+ <string>punctuation.definition.string.xml</string>
1336
+ </dict>
1337
+ </dict>
1338
+ <key>end</key>
1339
+ <string>]]&gt;</string>
1340
+ <key>name</key>
1341
+ <string>string.unquoted.cdata.xml</string>
1342
+ </dict>
1343
+ </array>
1344
+ </dict>
1345
+ <dict>
1346
+ <key>begin</key>
1347
+ <string>((&lt;)((real))(&gt;))</string>
1348
+ <key>captures</key>
1349
+ <dict>
1350
+ <key>1</key>
1351
+ <dict>
1352
+ <key>name</key>
1353
+ <string>meta.tag.real.xml.plist</string>
1354
+ </dict>
1355
+ <key>2</key>
1356
+ <dict>
1357
+ <key>name</key>
1358
+ <string>punctuation.definition.tag.xml.plist</string>
1359
+ </dict>
1360
+ <key>3</key>
1361
+ <dict>
1362
+ <key>name</key>
1363
+ <string>entity.name.tag.xml.plist</string>
1364
+ </dict>
1365
+ <key>4</key>
1366
+ <dict>
1367
+ <key>name</key>
1368
+ <string>entity.name.tag.localname.xml.plist</string>
1369
+ </dict>
1370
+ <key>5</key>
1371
+ <dict>
1372
+ <key>name</key>
1373
+ <string>punctuation.definition.tag.xml.plist</string>
1374
+ </dict>
1375
+ </dict>
1376
+ <key>comment</key>
1377
+ <string>Numeric</string>
1378
+ <key>end</key>
1379
+ <string>((&lt;/)((real))(&gt;))</string>
1380
+ <key>patterns</key>
1381
+ <array>
1382
+ <dict>
1383
+ <key>begin</key>
1384
+ <string>(&lt;!\[CDATA\[)</string>
1385
+ <key>captures</key>
1386
+ <dict>
1387
+ <key>0</key>
1388
+ <dict>
1389
+ <key>name</key>
1390
+ <string>punctuation.definition.constant.xml</string>
1391
+ </dict>
1392
+ <key>1</key>
1393
+ <dict>
1394
+ <key>name</key>
1395
+ <string>constant.numeric.real.xml.plist</string>
1396
+ </dict>
1397
+ </dict>
1398
+ <key>end</key>
1399
+ <string>(]]&gt;)</string>
1400
+ <key>patterns</key>
1401
+ <array>
1402
+ <dict>
1403
+ <key>match</key>
1404
+ <string>[-+]?\d+(\.\d*)?(E[-+]\d+)?</string>
1405
+ <key>name</key>
1406
+ <string>constant.numeric.real.xml.plist</string>
1407
+ </dict>
1408
+ <dict>
1409
+ <key>match</key>
1410
+ <string>.</string>
1411
+ <key>name</key>
1412
+ <string>invalid.illegal.not-a-number.xml.plist</string>
1413
+ </dict>
1414
+ </array>
1415
+ </dict>
1416
+ <dict>
1417
+ <key>match</key>
1418
+ <string>[-+]?\d+(\.\d*)?(E[-+]\d+)?</string>
1419
+ <key>name</key>
1420
+ <string>constant.numeric.real.xml.plist</string>
1421
+ </dict>
1422
+ <dict>
1423
+ <key>match</key>
1424
+ <string>.</string>
1425
+ <key>name</key>
1426
+ <string>invalid.illegal.not-a-number.xml.plist</string>
1427
+ </dict>
1428
+ </array>
1429
+ </dict>
1430
+ <dict>
1431
+ <key>begin</key>
1432
+ <string>((&lt;)((integer))(&gt;))</string>
1433
+ <key>captures</key>
1434
+ <dict>
1435
+ <key>1</key>
1436
+ <dict>
1437
+ <key>name</key>
1438
+ <string>meta.tag.integer.xml.plist</string>
1439
+ </dict>
1440
+ <key>2</key>
1441
+ <dict>
1442
+ <key>name</key>
1443
+ <string>punctuation.definition.tag.xml.plist</string>
1444
+ </dict>
1445
+ <key>3</key>
1446
+ <dict>
1447
+ <key>name</key>
1448
+ <string>entity.name.tag.xml.plist</string>
1449
+ </dict>
1450
+ <key>4</key>
1451
+ <dict>
1452
+ <key>name</key>
1453
+ <string>entity.name.tag.localname.xml.plist</string>
1454
+ </dict>
1455
+ <key>5</key>
1456
+ <dict>
1457
+ <key>name</key>
1458
+ <string>punctuation.definition.tag.xml.plist</string>
1459
+ </dict>
1460
+ </dict>
1461
+ <key>comment</key>
1462
+ <string>Integer</string>
1463
+ <key>end</key>
1464
+ <string>((&lt;/)((integer))(&gt;))</string>
1465
+ <key>patterns</key>
1466
+ <array>
1467
+ <dict>
1468
+ <key>match</key>
1469
+ <string>[-+]?\d+</string>
1470
+ <key>name</key>
1471
+ <string>constant.numeric.integer.xml.plist</string>
1472
+ </dict>
1473
+ <dict>
1474
+ <key>match</key>
1475
+ <string>.</string>
1476
+ <key>name</key>
1477
+ <string>invalid.illegal.not-a-number.xml.plist</string>
1478
+ </dict>
1479
+ </array>
1480
+ </dict>
1481
+ <dict>
1482
+ <key>captures</key>
1483
+ <dict>
1484
+ <key>1</key>
1485
+ <dict>
1486
+ <key>name</key>
1487
+ <string>meta.tag.boolean.xml.plist</string>
1488
+ </dict>
1489
+ <key>2</key>
1490
+ <dict>
1491
+ <key>name</key>
1492
+ <string>punctuation.definition.tag.xml.plist</string>
1493
+ </dict>
1494
+ <key>3</key>
1495
+ <dict>
1496
+ <key>name</key>
1497
+ <string>entity.name.tag.xml.plist</string>
1498
+ </dict>
1499
+ <key>4</key>
1500
+ <dict>
1501
+ <key>name</key>
1502
+ <string>entity.name.tag.localname.xml.plist</string>
1503
+ </dict>
1504
+ <key>5</key>
1505
+ <dict>
1506
+ <key>name</key>
1507
+ <string>punctuation.definition.tag.xml.plist</string>
1508
+ </dict>
1509
+ </dict>
1510
+ <key>comment</key>
1511
+ <string>Boolean</string>
1512
+ <key>match</key>
1513
+ <string>((&lt;)((true|false))\s*?(/&gt;))</string>
1514
+ </dict>
1515
+ <dict>
1516
+ <key>begin</key>
1517
+ <string>((&lt;)((data))(&gt;))</string>
1518
+ <key>captures</key>
1519
+ <dict>
1520
+ <key>1</key>
1521
+ <dict>
1522
+ <key>name</key>
1523
+ <string>meta.tag.data.xml.plist</string>
1524
+ </dict>
1525
+ <key>2</key>
1526
+ <dict>
1527
+ <key>name</key>
1528
+ <string>punctuation.definition.tag.xml.plist</string>
1529
+ </dict>
1530
+ <key>3</key>
1531
+ <dict>
1532
+ <key>name</key>
1533
+ <string>entity.name.tag.xml.plist</string>
1534
+ </dict>
1535
+ <key>4</key>
1536
+ <dict>
1537
+ <key>name</key>
1538
+ <string>entity.name.tag.localname.xml.plist</string>
1539
+ </dict>
1540
+ <key>5</key>
1541
+ <dict>
1542
+ <key>name</key>
1543
+ <string>punctuation.definition.tag.xml.plist</string>
1544
+ </dict>
1545
+ </dict>
1546
+ <key>comment</key>
1547
+ <string>Data</string>
1548
+ <key>end</key>
1549
+ <string>((&lt;/)((data))(&gt;))</string>
1550
+ <key>patterns</key>
1551
+ <array>
1552
+ <dict>
1553
+ <key>match</key>
1554
+ <string>[A-Za-z0-9+/]</string>
1555
+ <key>name</key>
1556
+ <string>constant.numeric.base64.xml.plist</string>
1557
+ </dict>
1558
+ <dict>
1559
+ <key>match</key>
1560
+ <string>=</string>
1561
+ <key>name</key>
1562
+ <string>constant.numeric.base64.xml.plist</string>
1563
+ </dict>
1564
+ <dict>
1565
+ <key>match</key>
1566
+ <string>[^ \n\t]</string>
1567
+ <key>name</key>
1568
+ <string>invalid.illegal.invalid-character.xml.plist</string>
1569
+ </dict>
1570
+ </array>
1571
+ </dict>
1572
+ <dict>
1573
+ <key>begin</key>
1574
+ <string>((&lt;)((date))(&gt;))</string>
1575
+ <key>captures</key>
1576
+ <dict>
1577
+ <key>1</key>
1578
+ <dict>
1579
+ <key>name</key>
1580
+ <string>meta.tag.date.xml.plist</string>
1581
+ </dict>
1582
+ <key>2</key>
1583
+ <dict>
1584
+ <key>name</key>
1585
+ <string>punctuation.definition.tag.xml.plist</string>
1586
+ </dict>
1587
+ <key>3</key>
1588
+ <dict>
1589
+ <key>name</key>
1590
+ <string>entity.name.tag.xml.plist</string>
1591
+ </dict>
1592
+ <key>4</key>
1593
+ <dict>
1594
+ <key>name</key>
1595
+ <string>entity.name.tag.localname.xml.plist</string>
1596
+ </dict>
1597
+ <key>5</key>
1598
+ <dict>
1599
+ <key>name</key>
1600
+ <string>punctuation.definition.tag.xml.plist</string>
1601
+ </dict>
1602
+ </dict>
1603
+ <key>comment</key>
1604
+ <string>Date</string>
1605
+ <key>end</key>
1606
+ <string>((&lt;/)((date))(&gt;))</string>
1607
+ <key>patterns</key>
1608
+ <array>
1609
+ <dict>
1610
+ <key>match</key>
1611
+ <string>(?x)
1612
+ [0-9]{4} # Year
1613
+ - # Divider
1614
+ (0[1-9]|1[012]) # Month
1615
+ - # Divider
1616
+ (?!00|3[2-9])[0-3][0-9] # Day
1617
+ T # Separator
1618
+ (?!2[5-9])[0-2][0-9] # Hour
1619
+ : # Divider
1620
+ [0-5][0-9] # Minute
1621
+ : # Divider
1622
+ (?!6[1-9])[0-6][0-9] # Second
1623
+ Z # Zulu
1624
+ </string>
1625
+ <key>name</key>
1626
+ <string>constant.other.date.xml.plist</string>
1627
+ </dict>
1628
+ </array>
1629
+ </dict>
1630
+ <dict>
1631
+ <key>include</key>
1632
+ <string>#xml_invalid</string>
1633
+ </dict>
1634
+ <dict>
1635
+ <key>include</key>
1636
+ <string>#xml_comment</string>
1637
+ </dict>
1638
+ <dict>
1639
+ <key>include</key>
1640
+ <string>#xml_stray-char</string>
1641
+ </dict>
1642
+ </array>
1643
+ </dict>
1644
+ </dict>
1645
+ <key>scopeName</key>
1646
+ <string></string>
1647
+ <key>uuid</key>
1648
+ <string>E62B2729-6B1C-11D9-AE35-000D93589AF6</string>
1649
+ </dict>
1650
+ </plist>