redcar 0.2.9dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (600) hide show
  1. data/CHANGES +64 -0
  2. data/LICENSE +32 -0
  3. data/README.md +64 -0
  4. data/ROADMAP.md +69 -0
  5. data/Rakefile +223 -0
  6. data/bin/redcar +6 -0
  7. data/config/default.yaml +15 -0
  8. data/ext/extconf.rb +18 -0
  9. data/lib/freebase2/README.txt +47 -0
  10. data/lib/freebase2/bin/default.yaml +15 -0
  11. data/lib/freebase2/bin/install.rb +42 -0
  12. data/lib/freebase2/bin/run.rb +48 -0
  13. data/lib/freebase2/lib/freebase/configuration.rb +535 -0
  14. data/lib/freebase2/lib/freebase/core.rb +197 -0
  15. data/lib/freebase2/lib/freebase/databus.rb +1128 -0
  16. data/lib/freebase2/lib/freebase/freebase.rb +60 -0
  17. data/lib/freebase2/lib/freebase/logger.rb +117 -0
  18. data/lib/freebase2/lib/freebase/plugin.rb +384 -0
  19. data/lib/freebase2/lib/freebase/properties.rb +130 -0
  20. data/lib/freebase2/lib/freebase/readers.rb +321 -0
  21. data/lib/freebase2/notes +61 -0
  22. data/lib/freebase2/plugins/raa_webrick/httpd.rb +125 -0
  23. data/lib/freebase2/plugins/raa_webrick/plugin.yaml +7 -0
  24. data/lib/freebase2/plugins/raa_webrick/web_root/test.html +5 -0
  25. data/lib/freebase2/plugins/raa_webrick/webserver.yaml +6 -0
  26. data/lib/freebase2/plugins/raa_xmlrpc4r/plugin.xml +8 -0
  27. data/lib/freebase2/plugins/raa_xmlrpc4r/rpcd.rb +54 -0
  28. data/lib/freebase2/regress/README +1 -0
  29. data/lib/little_plugger/History.txt +20 -0
  30. data/lib/little_plugger/Rakefile +34 -0
  31. data/lib/little_plugger/lib/little-plugger.rb +323 -0
  32. data/lib/little_plugger/spec/little-plugger_spec.rb +26 -0
  33. data/lib/little_plugger/spec/spec_helper.rb +16 -0
  34. data/lib/logging/History.txt +240 -0
  35. data/lib/logging/Rakefile +37 -0
  36. data/lib/logging/data/bad_logging_1.rb +13 -0
  37. data/lib/logging/data/bad_logging_2.rb +21 -0
  38. data/lib/logging/data/logging.rb +42 -0
  39. data/lib/logging/data/logging.yaml +63 -0
  40. data/lib/logging/data/simple_logging.rb +13 -0
  41. data/lib/logging/examples/appenders.rb +47 -0
  42. data/lib/logging/examples/classes.rb +41 -0
  43. data/lib/logging/examples/consolidation.rb +83 -0
  44. data/lib/logging/examples/formatting.rb +51 -0
  45. data/lib/logging/examples/hierarchies.rb +73 -0
  46. data/lib/logging/examples/layouts.rb +48 -0
  47. data/lib/logging/examples/loggers.rb +29 -0
  48. data/lib/logging/examples/names.rb +43 -0
  49. data/lib/logging/examples/simple.rb +17 -0
  50. data/lib/logging/lib/logging.rb +501 -0
  51. data/lib/logging/lib/logging/appender.rb +251 -0
  52. data/lib/logging/lib/logging/appenders.rb +131 -0
  53. data/lib/logging/lib/logging/appenders/buffering.rb +168 -0
  54. data/lib/logging/lib/logging/appenders/console.rb +60 -0
  55. data/lib/logging/lib/logging/appenders/email.rb +75 -0
  56. data/lib/logging/lib/logging/appenders/file.rb +58 -0
  57. data/lib/logging/lib/logging/appenders/growl.rb +197 -0
  58. data/lib/logging/lib/logging/appenders/io.rb +69 -0
  59. data/lib/logging/lib/logging/appenders/rolling_file.rb +293 -0
  60. data/lib/logging/lib/logging/appenders/string_io.rb +68 -0
  61. data/lib/logging/lib/logging/appenders/syslog.rb +194 -0
  62. data/lib/logging/lib/logging/config/configurator.rb +188 -0
  63. data/lib/logging/lib/logging/config/yaml_configurator.rb +191 -0
  64. data/lib/logging/lib/logging/layout.rb +117 -0
  65. data/lib/logging/lib/logging/layouts.rb +47 -0
  66. data/lib/logging/lib/logging/layouts/basic.rb +32 -0
  67. data/lib/logging/lib/logging/layouts/parseable.rb +211 -0
  68. data/lib/logging/lib/logging/layouts/pattern.rb +311 -0
  69. data/lib/logging/lib/logging/log_event.rb +45 -0
  70. data/lib/logging/lib/logging/logger.rb +503 -0
  71. data/lib/logging/lib/logging/repository.rb +232 -0
  72. data/lib/logging/lib/logging/root_logger.rb +61 -0
  73. data/lib/logging/lib/logging/stats.rb +278 -0
  74. data/lib/logging/lib/logging/utils.rb +153 -0
  75. data/lib/logging/lib/spec/logging_helper.rb +34 -0
  76. data/lib/logging/test/appenders/test_buffered_io.rb +176 -0
  77. data/lib/logging/test/appenders/test_console.rb +66 -0
  78. data/lib/logging/test/appenders/test_email.rb +170 -0
  79. data/lib/logging/test/appenders/test_file.rb +95 -0
  80. data/lib/logging/test/appenders/test_growl.rb +127 -0
  81. data/lib/logging/test/appenders/test_io.rb +129 -0
  82. data/lib/logging/test/appenders/test_rolling_file.rb +200 -0
  83. data/lib/logging/test/appenders/test_syslog.rb +194 -0
  84. data/lib/logging/test/benchmark.rb +86 -0
  85. data/lib/logging/test/config/test_configurator.rb +70 -0
  86. data/lib/logging/test/config/test_yaml_configurator.rb +40 -0
  87. data/lib/logging/test/layouts/test_basic.rb +42 -0
  88. data/lib/logging/test/layouts/test_json.rb +112 -0
  89. data/lib/logging/test/layouts/test_pattern.rb +198 -0
  90. data/lib/logging/test/layouts/test_yaml.rb +121 -0
  91. data/lib/logging/test/setup.rb +44 -0
  92. data/lib/logging/test/test_appender.rb +152 -0
  93. data/lib/logging/test/test_consolidate.rb +46 -0
  94. data/lib/logging/test/test_layout.rb +110 -0
  95. data/lib/logging/test/test_log_event.rb +80 -0
  96. data/lib/logging/test/test_logger.rb +699 -0
  97. data/lib/logging/test/test_logging.rb +267 -0
  98. data/lib/logging/test/test_repository.rb +158 -0
  99. data/lib/logging/test/test_root_logger.rb +81 -0
  100. data/lib/logging/test/test_stats.rb +274 -0
  101. data/lib/logging/test/test_utils.rb +116 -0
  102. data/lib/redcar.rb +12 -0
  103. data/lib/redcar/boot.rb +105 -0
  104. data/lib/redcar/install.rb +97 -0
  105. data/lib/redcar/plist.rb +83 -0
  106. data/lib/redcar/ruby_extensions.rb +14 -0
  107. data/lib/redcar/runner.rb +32 -0
  108. data/lib/redcar/usage.rb +24 -0
  109. data/lib/regex_replace.rb +220 -0
  110. data/plugins/application/features/main_menu.feature +9 -0
  111. data/plugins/application/features/main_window.feature +8 -0
  112. data/plugins/application/features/step_definitions/dialog_steps.rb +5 -0
  113. data/plugins/application/features/step_definitions/menu_steps.rb +21 -0
  114. data/plugins/application/features/step_definitions/window_steps.rb +4 -0
  115. data/plugins/application/features/support/env.rb +32 -0
  116. data/plugins/application/lib/application.rb +128 -0
  117. data/plugins/application/lib/application/assets/file.png +0 -0
  118. data/plugins/application/lib/application/command.rb +70 -0
  119. data/plugins/application/lib/application/command/executor.rb +46 -0
  120. data/plugins/application/lib/application/command/history.rb +49 -0
  121. data/plugins/application/lib/application/dialog.rb +15 -0
  122. data/plugins/application/lib/application/menu.rb +27 -0
  123. data/plugins/application/lib/application/menu/builder.rb +51 -0
  124. data/plugins/application/lib/application/menu/item.rb +26 -0
  125. data/plugins/application/lib/application/notebook.rb +77 -0
  126. data/plugins/application/lib/application/sensitive.rb +57 -0
  127. data/plugins/application/lib/application/sensitivity.rb +78 -0
  128. data/plugins/application/lib/application/tab.rb +47 -0
  129. data/plugins/application/lib/application/tab/command.rb +5 -0
  130. data/plugins/application/lib/application/window.rb +139 -0
  131. data/plugins/application/plugin.yaml +11 -0
  132. data/plugins/application/spec/application/application_spec.rb +23 -0
  133. data/plugins/application/spec/application/command/executor_spec.rb +67 -0
  134. data/plugins/application/spec/application/command/history_spec.rb +49 -0
  135. data/plugins/application/spec/application/command_spec.rb +59 -0
  136. data/plugins/application/spec/application/controllers/application_controller.rb +4 -0
  137. data/plugins/application/spec/application/controllers/notebook_controller.rb +4 -0
  138. data/plugins/application/spec/application/controllers/window_controller.rb +5 -0
  139. data/plugins/application/spec/application/menu/builder_spec.rb +57 -0
  140. data/plugins/application/spec/application/menu/menu_item_spec.rb +17 -0
  141. data/plugins/application/spec/application/menu_spec.rb +36 -0
  142. data/plugins/application/spec/application/notebook_spec.rb +26 -0
  143. data/plugins/application/spec/application/sensitive_spec.rb +156 -0
  144. data/plugins/application/spec/application/window_spec.rb +24 -0
  145. data/plugins/application/spec/spec_helper.rb +7 -0
  146. data/plugins/application_swt/lib/application_swt.rb +70 -0
  147. data/plugins/application_swt/lib/application_swt/cucumber_patches.rb +118 -0
  148. data/plugins/application_swt/lib/application_swt/cucumber_runner.rb +25 -0
  149. data/plugins/application_swt/lib/application_swt/dialog_adapter.rb +23 -0
  150. data/plugins/application_swt/lib/application_swt/event_loop.rb +27 -0
  151. data/plugins/application_swt/lib/application_swt/menu.rb +59 -0
  152. data/plugins/application_swt/lib/application_swt/menu/binding_translator.rb +39 -0
  153. data/plugins/application_swt/lib/application_swt/notebook.rb +129 -0
  154. data/plugins/application_swt/lib/application_swt/notebook/drag_and_drop_listener.rb +71 -0
  155. data/plugins/application_swt/lib/application_swt/swt/grid_data.rb +11 -0
  156. data/plugins/application_swt/lib/application_swt/swt_wrapper.rb +106 -0
  157. data/plugins/application_swt/lib/application_swt/tab.rb +58 -0
  158. data/plugins/application_swt/lib/application_swt/window.rb +142 -0
  159. data/plugins/application_swt/plugin.yaml +11 -0
  160. data/plugins/application_swt/spec/application_swt/menu/binding_translator_spec.rb +45 -0
  161. data/plugins/application_swt/spec/application_swt/menu_spec.rb +7 -0
  162. data/plugins/application_swt/spec/spec_helper.rb +18 -0
  163. data/plugins/application_swt/vendor/swt/linux/dummy +1 -0
  164. data/plugins/application_swt/vendor/swt/osx/dummy +1 -0
  165. data/plugins/application_swt/vendor/swt/osx64/dummy +1 -0
  166. data/plugins/application_swt/vendor/swt/win32/dummy +1 -0
  167. data/plugins/core/lib/core.rb +29 -0
  168. data/plugins/core/lib/core/controller.rb +5 -0
  169. data/plugins/core/lib/core/gui.rb +87 -0
  170. data/plugins/core/lib/core/logger.rb +25 -0
  171. data/plugins/core/lib/core/model.rb +9 -0
  172. data/plugins/core/lib/core/observable.rb +111 -0
  173. data/plugins/core/lib/core/plugin.rb +5 -0
  174. data/plugins/core/plugin.yaml +7 -0
  175. data/plugins/core/spec/core/gui_spec.rb +27 -0
  176. data/plugins/core/spec/core/observable_spec.rb +104 -0
  177. data/plugins/core/spec/spec_helper.rb +4 -0
  178. data/plugins/edit_view/features/multiple_notebooks.feature +77 -0
  179. data/plugins/edit_view/features/multiple_windows.feature +48 -0
  180. data/plugins/edit_view/features/new_tab.feature +12 -0
  181. data/plugins/edit_view/features/step_definitions/key_steps.rb +48 -0
  182. data/plugins/edit_view/features/step_definitions/notebook_steps.rb +60 -0
  183. data/plugins/edit_view/features/step_definitions/tab_steps.rb +55 -0
  184. data/plugins/edit_view/features/step_definitions/window_steps.rb +80 -0
  185. data/plugins/edit_view/features/support/env.rb +66 -0
  186. data/plugins/edit_view/lib/edit_view.rb +76 -0
  187. data/plugins/edit_view/lib/edit_view/command.rb +6 -0
  188. data/plugins/edit_view/lib/edit_view/document.rb +63 -0
  189. data/plugins/edit_view/lib/edit_view/edit_tab.rb +29 -0
  190. data/plugins/edit_view/lib/edit_view/mirror.rb +42 -0
  191. data/plugins/edit_view/plugin.yaml +14 -0
  192. data/plugins/edit_view/spec/edit_view/document_spec.rb +77 -0
  193. data/plugins/edit_view/spec/spec_helper.rb +4 -0
  194. data/plugins/edit_view_swt/lib/edit_view_swt.rb +170 -0
  195. data/plugins/edit_view_swt/lib/edit_view_swt/document.rb +31 -0
  196. data/plugins/edit_view_swt/lib/edit_view_swt/edit_tab.rb +33 -0
  197. data/plugins/edit_view_swt/plugin.yaml +14 -0
  198. data/plugins/edit_view_swt/vendor/dummy +1 -0
  199. data/plugins/edit_view_swt/vendor/java-mateview.rb +12 -0
  200. data/plugins/project/features/fixtures/winter.txt +1 -0
  201. data/plugins/project/features/open_and_save_files.feature +22 -0
  202. data/plugins/project/features/step_definitions/file_steps.rb +24 -0
  203. data/plugins/project/features/support/env.rb +15 -0
  204. data/plugins/project/lib/project.rb +79 -0
  205. data/plugins/project/lib/project/dir_mirror.rb +53 -0
  206. data/plugins/project/lib/project/file_mirror.rb +70 -0
  207. data/plugins/project/plugin.yaml +12 -0
  208. data/plugins/project/spec/project/dir_mirror_spec.rb +76 -0
  209. data/plugins/project/spec/project/file_mirror_spec.rb +78 -0
  210. data/plugins/project/spec/spec_helper.rb +4 -0
  211. data/plugins/redcar/plugin.yaml +20 -0
  212. data/plugins/redcar/redcar.rb +166 -0
  213. data/plugins/repl/lib/repl.rb +44 -0
  214. data/plugins/repl/lib/repl/internal_mirror.rb +98 -0
  215. data/plugins/repl/plugin.yaml +12 -0
  216. data/plugins/repl/spec/repl/internal_mirror_spec.rb +147 -0
  217. data/plugins/repl/spec/spec_helper.rb +4 -0
  218. data/plugins/tree_view/lib/tree_view.rb +7 -0
  219. data/plugins/tree_view/lib/tree_view/mirror.rb +74 -0
  220. data/plugins/tree_view/plugin.yaml +14 -0
  221. data/plugins/tree_view/spec/spec_helper.rb +4 -0
  222. data/plugins/tree_view_swt/lib/tree_view_swt.rb +5 -0
  223. data/plugins/tree_view_swt/plugin.yaml +14 -0
  224. data/textmate/Bundles/C.tmbundle/Snippets/010_main_______main__.plist +20 -0
  225. data/textmate/Bundles/C.tmbundle/Snippets/030_for_int_loop___fori__.plist +19 -0
  226. data/textmate/Bundles/C.tmbundle/Snippets/Include_header_once_only_guard.plist +28 -0
  227. data/textmate/Bundles/C.tmbundle/Snippets/Typedef.tmSnippet +16 -0
  228. data/textmate/Bundles/C.tmbundle/Snippets/__1_begin_________1_end_______beginend__.plist +16 -0
  229. data/textmate/Bundles/C.tmbundle/Snippets/__endif.plist +17 -0
  230. data/textmate/Bundles/C.tmbundle/Snippets/__ifndef__________define__________endif.tmSnippet +18 -0
  231. data/textmate/Bundles/C.tmbundle/Snippets/__include________inc__.plist +16 -0
  232. data/textmate/Bundles/C.tmbundle/Snippets/__pragma_mark___mark__.plist +21 -0
  233. data/textmate/Bundles/C.tmbundle/Snippets/class______class__.plist +24 -0
  234. data/textmate/Bundles/C.tmbundle/Snippets/do___while_loop___do__.plist +18 -0
  235. data/textmate/Bundles/C.tmbundle/Snippets/fprintf_______.tmSnippet +16 -0
  236. data/textmate/Bundles/C.tmbundle/Snippets/if______if__.plist +19 -0
  237. data/textmate/Bundles/C.tmbundle/Snippets/namespace______namespace__.plist +20 -0
  238. data/textmate/Bundles/C.tmbundle/Snippets/next___include________Inc__.plist +16 -0
  239. data/textmate/Bundles/C.tmbundle/Snippets/printf______printf__.plist +16 -0
  240. data/textmate/Bundles/C.tmbundle/Snippets/read_file___readF__.plist +23 -0
  241. data/textmate/Bundles/C.tmbundle/Snippets/std____map___map__.plist +16 -0
  242. data/textmate/Bundles/C.tmbundle/Snippets/std____vector___v__.plist +16 -0
  243. data/textmate/Bundles/C.tmbundle/Snippets/struct.plist +19 -0
  244. data/textmate/Bundles/C.tmbundle/Snippets/template___typename________template__.plist +16 -0
  245. data/textmate/Bundles/C.tmbundle/Syntaxes/C.plist +1084 -0
  246. data/textmate/Bundles/C.tmbundle/Syntaxes/C____.plist +521 -0
  247. data/textmate/Bundles/CSS.tmbundle/Snippets/Fixed_Position_Bottom_100___wide_IE6.tmSnippet +18 -0
  248. data/textmate/Bundles/CSS.tmbundle/Snippets/__important_CSS_______.plist +18 -0
  249. data/textmate/Bundles/CSS.tmbundle/Snippets/background____color_image_repeat_attachment_position___background__.plist +16 -0
  250. data/textmate/Bundles/CSS.tmbundle/Snippets/background__attachment___scroll__fixed___background__.plist +16 -0
  251. data/textmate/Bundles/CSS.tmbundle/Snippets/background__color____color__hex___background__.plist +16 -0
  252. data/textmate/Bundles/CSS.tmbundle/Snippets/background__color____color__name___background__.plist +16 -0
  253. data/textmate/Bundles/CSS.tmbundle/Snippets/background__color____color__rgb___background__.plist +16 -0
  254. data/textmate/Bundles/CSS.tmbundle/Snippets/background__color____transparent___background__.plist +16 -0
  255. data/textmate/Bundles/CSS.tmbundle/Snippets/background__image____none___background__.plist +16 -0
  256. data/textmate/Bundles/CSS.tmbundle/Snippets/background__image____url___background__.plist +16 -0
  257. data/textmate/Bundles/CSS.tmbundle/Snippets/background__position____position___background__.plist +16 -0
  258. data/textmate/Bundles/CSS.tmbundle/Snippets/background__repeat____r__r__x__r__y__n__r___background__.plist +16 -0
  259. data/textmate/Bundles/CSS.tmbundle/Snippets/border_____size_style_color___border__.plist +16 -0
  260. data/textmate/Bundles/CSS.tmbundle/Snippets/border__bottom___size_style_color___border__.plist +16 -0
  261. data/textmate/Bundles/CSS.tmbundle/Snippets/border__bottom__color___size_style_color___border__.plist +16 -0
  262. data/textmate/Bundles/CSS.tmbundle/Snippets/border__bottom__style___size_style_color___border__.plist +16 -0
  263. data/textmate/Bundles/CSS.tmbundle/Snippets/border__bottom__width___size_style_color___border__.plist +16 -0
  264. data/textmate/Bundles/CSS.tmbundle/Snippets/border__color___color___border__.plist +16 -0
  265. data/textmate/Bundles/CSS.tmbundle/Snippets/border__left___size_style_color___border__.plist +16 -0
  266. data/textmate/Bundles/CSS.tmbundle/Snippets/border__left__color___color___border__.plist +16 -0
  267. data/textmate/Bundles/CSS.tmbundle/Snippets/border__left__style___style___border__.plist +16 -0
  268. data/textmate/Bundles/CSS.tmbundle/Snippets/border__left__width___size___border__.plist +16 -0
  269. data/textmate/Bundles/CSS.tmbundle/Snippets/border__right___size_style_color___border__.plist +16 -0
  270. data/textmate/Bundles/CSS.tmbundle/Snippets/border__right__color___color___border__.plist +16 -0
  271. data/textmate/Bundles/CSS.tmbundle/Snippets/border__right__style___style___border__.plist +16 -0
  272. data/textmate/Bundles/CSS.tmbundle/Snippets/border__right__width___size___border__.plist +16 -0
  273. data/textmate/Bundles/CSS.tmbundle/Snippets/border__style___style___border__.plist +16 -0
  274. data/textmate/Bundles/CSS.tmbundle/Snippets/border__top___size_style_color___border__.plist +16 -0
  275. data/textmate/Bundles/CSS.tmbundle/Snippets/border__top__color___color___border__.plist +16 -0
  276. data/textmate/Bundles/CSS.tmbundle/Snippets/border__top__style___style___border__.plist +16 -0
  277. data/textmate/Bundles/CSS.tmbundle/Snippets/border__top__width___size___border__.plist +16 -0
  278. data/textmate/Bundles/CSS.tmbundle/Snippets/border__width___width___border__.plist +16 -0
  279. data/textmate/Bundles/CSS.tmbundle/Snippets/clear___value___clear__.plist +16 -0
  280. data/textmate/Bundles/CSS.tmbundle/Snippets/color____color__hex___color__.plist +16 -0
  281. data/textmate/Bundles/CSS.tmbundle/Snippets/color____color__name___color__.plist +16 -0
  282. data/textmate/Bundles/CSS.tmbundle/Snippets/color____color__rgb___color__.plist +16 -0
  283. data/textmate/Bundles/CSS.tmbundle/Snippets/cursor___type___cursor__.plist +16 -0
  284. data/textmate/Bundles/CSS.tmbundle/Snippets/cursor___url___cursor__.plist +16 -0
  285. data/textmate/Bundles/CSS.tmbundle/Snippets/direction___ltr__rtl___direction__.plist +16 -0
  286. data/textmate/Bundles/CSS.tmbundle/Snippets/display___block___display__.plist +16 -0
  287. data/textmate/Bundles/CSS.tmbundle/Snippets/display___common__types___display__.plist +16 -0
  288. data/textmate/Bundles/CSS.tmbundle/Snippets/display___inline___display__.plist +16 -0
  289. data/textmate/Bundles/CSS.tmbundle/Snippets/display___table__types___display__.plist +16 -0
  290. data/textmate/Bundles/CSS.tmbundle/Snippets/filter___AlphaImageLoader___for_IE_PNGs_____background__.plist +19 -0
  291. data/textmate/Bundles/CSS.tmbundle/Snippets/float___left__right__none___float__.plist +16 -0
  292. data/textmate/Bundles/CSS.tmbundle/Snippets/font_____style_variant_weight_size__line__height_font___family___font__.plist +16 -0
  293. data/textmate/Bundles/CSS.tmbundle/Snippets/font___size_font___font__.plist +16 -0
  294. data/textmate/Bundles/CSS.tmbundle/Snippets/font__family_____family___font__.plist +16 -0
  295. data/textmate/Bundles/CSS.tmbundle/Snippets/font__size___size___font__.plist +16 -0
  296. data/textmate/Bundles/CSS.tmbundle/Snippets/font__style_____normal__italic__oblique___font__.plist +16 -0
  297. data/textmate/Bundles/CSS.tmbundle/Snippets/font__variant_____normal__small__caps___font__.plist +16 -0
  298. data/textmate/Bundles/CSS.tmbundle/Snippets/font__weight___weight___font__.plist +16 -0
  299. data/textmate/Bundles/CSS.tmbundle/Snippets/letter__spacing_____length__em___letter__.plist +16 -0
  300. data/textmate/Bundles/CSS.tmbundle/Snippets/letter__spacing_____length__px___letter__.plist +16 -0
  301. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style___type_position_image___list__.plist +16 -0
  302. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style__image___url___list__.plist +16 -0
  303. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style__position___pos___list__.plist +16 -0
  304. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style__type___asian___list__.plist +16 -0
  305. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style__type___marker__list__.plist +16 -0
  306. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style__type___numeric___list__.plist +16 -0
  307. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style__type___other___list__.plist +16 -0
  308. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style__type___roman__alpha__greek___list__.plist +16 -0
  309. data/textmate/Bundles/CSS.tmbundle/Snippets/margin___T_R_B_L___margin__.plist +16 -0
  310. data/textmate/Bundles/CSS.tmbundle/Snippets/margin___V_H___margin__.plist +16 -0
  311. data/textmate/Bundles/CSS.tmbundle/Snippets/margin_____all___margin__.plist +16 -0
  312. data/textmate/Bundles/CSS.tmbundle/Snippets/margin__bottom___length___margin__.plist +16 -0
  313. data/textmate/Bundles/CSS.tmbundle/Snippets/margin__left___length___margin__.plist +16 -0
  314. data/textmate/Bundles/CSS.tmbundle/Snippets/margin__right___length___margin__.plist +16 -0
  315. data/textmate/Bundles/CSS.tmbundle/Snippets/margin__top___length___margin__.plist +16 -0
  316. data/textmate/Bundles/CSS.tmbundle/Snippets/marker__offset___auto___marker__.plist +16 -0
  317. data/textmate/Bundles/CSS.tmbundle/Snippets/marker__offset___length___marker__.plist +16 -0
  318. data/textmate/Bundles/CSS.tmbundle/Snippets/opacity_____for_Safari___FF_and_IE_____opacity__.plist +18 -0
  319. data/textmate/Bundles/CSS.tmbundle/Snippets/overflow___type___overflow__.plist +16 -0
  320. data/textmate/Bundles/CSS.tmbundle/Snippets/padding_____T_R_B_L___padding__.plist +16 -0
  321. data/textmate/Bundles/CSS.tmbundle/Snippets/padding_____V_H___padding__.plist +16 -0
  322. data/textmate/Bundles/CSS.tmbundle/Snippets/padding_____all___padding__.plist +16 -0
  323. data/textmate/Bundles/CSS.tmbundle/Snippets/padding__bottom___length___margin__.plist +16 -0
  324. data/textmate/Bundles/CSS.tmbundle/Snippets/padding__left___length___margin__.plist +16 -0
  325. data/textmate/Bundles/CSS.tmbundle/Snippets/padding__right___length___margin__.plist +16 -0
  326. data/textmate/Bundles/CSS.tmbundle/Snippets/padding__top___length___margin__.plist +16 -0
  327. data/textmate/Bundles/CSS.tmbundle/Snippets/position___type___position__.plist +16 -0
  328. data/textmate/Bundles/CSS.tmbundle/Snippets/properties_______________.plist +19 -0
  329. data/textmate/Bundles/CSS.tmbundle/Snippets/scrollbar.tmSnippet +23 -0
  330. data/textmate/Bundles/CSS.tmbundle/Snippets/selection.tmSnippet +20 -0
  331. data/textmate/Bundles/CSS.tmbundle/Snippets/text__align___left__center__right___txt__.plist +16 -0
  332. data/textmate/Bundles/CSS.tmbundle/Snippets/text__decoration___none__underline__overline__line__through__blink___text__.plist +16 -0
  333. data/textmate/Bundles/CSS.tmbundle/Snippets/text__indent___length___text__.plist +16 -0
  334. data/textmate/Bundles/CSS.tmbundle/Snippets/text__shadow___color__hex_x_y_blur___text__.plist +16 -0
  335. data/textmate/Bundles/CSS.tmbundle/Snippets/text__shadow___color__rgb_x_y_blur___text__.plist +16 -0
  336. data/textmate/Bundles/CSS.tmbundle/Snippets/text__shadow___none___text__.plist +16 -0
  337. data/textmate/Bundles/CSS.tmbundle/Snippets/text__transform___capitalize__upper__lower___text__.plist +16 -0
  338. data/textmate/Bundles/CSS.tmbundle/Snippets/text__transform___none___text__.plist +16 -0
  339. data/textmate/Bundles/CSS.tmbundle/Snippets/vertical__align___type___vertical__.plist +16 -0
  340. data/textmate/Bundles/CSS.tmbundle/Snippets/visibility___type___visibility__.plist +16 -0
  341. data/textmate/Bundles/CSS.tmbundle/Snippets/white__space____normal__pre__nowrap___white__.plist +16 -0
  342. data/textmate/Bundles/CSS.tmbundle/Snippets/word__spacing____length___word__.plist +16 -0
  343. data/textmate/Bundles/CSS.tmbundle/Snippets/word__spacing____normal___word__.plist +16 -0
  344. data/textmate/Bundles/CSS.tmbundle/Snippets/z__index___index___z__.plist +16 -0
  345. data/textmate/Bundles/CSS.tmbundle/Syntaxes/CSS.plist +543 -0
  346. data/textmate/Bundles/HTML.tmbundle/Snippets/Arrow___arrow__.plist +16 -0
  347. data/textmate/Bundles/HTML.tmbundle/Snippets/Backspace___backspace__.plist +16 -0
  348. data/textmate/Bundles/HTML.tmbundle/Snippets/Backtab___backtab__.plist +16 -0
  349. data/textmate/Bundles/HTML.tmbundle/Snippets/Command___command__.plist +16 -0
  350. data/textmate/Bundles/HTML.tmbundle/Snippets/Control___control__.plist +16 -0
  351. data/textmate/Bundles/HTML.tmbundle/Snippets/Delete___delete__.plist +16 -0
  352. data/textmate/Bundles/HTML.tmbundle/Snippets/DocType_HTML_4_0_Strict.plist +18 -0
  353. data/textmate/Bundles/HTML.tmbundle/Snippets/DocType_XHTL_1_0_Frameset.plist +18 -0
  354. data/textmate/Bundles/HTML.tmbundle/Snippets/DocType_XHTML_1_0_Strict.plist +18 -0
  355. data/textmate/Bundles/HTML.tmbundle/Snippets/DocType_XHTML_1_0_Transitional.plist +18 -0
  356. data/textmate/Bundles/HTML.tmbundle/Snippets/DocType_XHTML_1_1.plist +18 -0
  357. data/textmate/Bundles/HTML.tmbundle/Snippets/Down___down__.plist +16 -0
  358. data/textmate/Bundles/HTML.tmbundle/Snippets/Embed_QT_movie___movie__.plist +26 -0
  359. data/textmate/Bundles/HTML.tmbundle/Snippets/Emphasize.tmSnippet +16 -0
  360. data/textmate/Bundles/HTML.tmbundle/Snippets/Enter___enter__.plist +16 -0
  361. data/textmate/Bundles/HTML.tmbundle/Snippets/Escape___escape__.plist +16 -0
  362. data/textmate/Bundles/HTML.tmbundle/Snippets/Fieldset.tmSnippet +22 -0
  363. data/textmate/Bundles/HTML.tmbundle/Snippets/HTML________4_0_Transitional___doctype__.plist +18 -0
  364. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___Internet_Explorer.tmSnippet +16 -0
  365. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___Internet_Explorer_5_0_only.tmSnippet +16 -0
  366. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___Internet_Explorer_5_5_only.tmSnippet +16 -0
  367. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___Internet_Explorer_5_x.tmSnippet +16 -0
  368. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___Internet_Explorer_6_and_below.tmSnippet +16 -0
  369. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___Internet_Explorer_6_only.tmSnippet +16 -0
  370. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___Internet_Explorer_7__.tmSnippet +16 -0
  371. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___NOT_Internet_Explorer.tmSnippet +16 -0
  372. data/textmate/Bundles/HTML.tmbundle/Snippets/Input_with_Label.tmSnippet +19 -0
  373. data/textmate/Bundles/HTML.tmbundle/Snippets/Left___left__.plist +16 -0
  374. data/textmate/Bundles/HTML.tmbundle/Snippets/Option.tmSnippet +18 -0
  375. data/textmate/Bundles/HTML.tmbundle/Snippets/Option___option__.plist +16 -0
  376. data/textmate/Bundles/HTML.tmbundle/Snippets/Return___return__.plist +16 -0
  377. data/textmate/Bundles/HTML.tmbundle/Snippets/Right___right__.plist +16 -0
  378. data/textmate/Bundles/HTML.tmbundle/Snippets/Select_Box.tmSnippet +22 -0
  379. data/textmate/Bundles/HTML.tmbundle/Snippets/Shift___shift__.plist +16 -0
  380. data/textmate/Bundles/HTML.tmbundle/Snippets/Smart_return__indent_for_tag_pairs.plist +18 -0
  381. data/textmate/Bundles/HTML.tmbundle/Snippets/Strong.tmSnippet +16 -0
  382. data/textmate/Bundles/HTML.tmbundle/Snippets/Tab___tab__.plist +16 -0
  383. data/textmate/Bundles/HTML.tmbundle/Snippets/Up___up__.plist +16 -0
  384. data/textmate/Bundles/HTML.tmbundle/Snippets/Wrap_Selection_In_Tag.plist +16 -0
  385. data/textmate/Bundles/HTML.tmbundle/Snippets/Wrap_in___________________.plist +14 -0
  386. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML_____input__.plist +16 -0
  387. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML_____textarea__.plist +16 -0
  388. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___a_mailto_____.plist +16 -0
  389. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___base__.plist +16 -0
  390. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___body__.plist +18 -0
  391. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___br_____.plist +16 -0
  392. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___div__.plist +18 -0
  393. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___form__.plist +20 -0
  394. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___h1__.plist +16 -0
  395. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___head__.plist +20 -0
  396. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___link__.plist +16 -0
  397. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___meta__.plist +16 -0
  398. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___nbsp___NonBreakingSpace.plist +16 -0
  399. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___script__.plist +18 -0
  400. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___script_src_____.plist +16 -0
  401. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___style__.plist +18 -0
  402. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___table__.plist +19 -0
  403. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___title__.plist +16 -0
  404. data/textmate/Bundles/HTML.tmbundle/Syntaxes/HTML.plist +962 -0
  405. data/textmate/Bundles/HTML.tmbundle/Templates/HTML /342/200/223 4.0 Strict/index.html" +15 -0
  406. data/textmate/Bundles/HTML.tmbundle/Templates/HTML /342/200/223 4.0 Strict/info.plist" +20 -0
  407. data/textmate/Bundles/HTML.tmbundle/Templates/HTML /342/200/224 4.0 Transitional/index.html" +15 -0
  408. data/textmate/Bundles/HTML.tmbundle/Templates/HTML /342/200/224 4.0 Transitional/info.plist" +20 -0
  409. data/textmate/Bundles/HTML.tmbundle/Templates/XHTML /342/200/223 1.0 Frameset/index.html" +16 -0
  410. data/textmate/Bundles/HTML.tmbundle/Templates/XHTML /342/200/223 1.0 Frameset/info.plist" +16 -0
  411. data/textmate/Bundles/HTML.tmbundle/Templates/XHTML /342/200/223 1.0 Strict/index.html" +16 -0
  412. data/textmate/Bundles/HTML.tmbundle/Templates/XHTML /342/200/223 1.0 Strict/info.plist" +16 -0
  413. data/textmate/Bundles/HTML.tmbundle/Templates/XHTML /342/200/223 1.0 Transitional/index.html" +16 -0
  414. data/textmate/Bundles/HTML.tmbundle/Templates/XHTML /342/200/223 1.0 Transitional/info.plist" +16 -0
  415. data/textmate/Bundles/HTML.tmbundle/Templates/XHTML /342/200/223 1.1/index.html" +15 -0
  416. data/textmate/Bundles/HTML.tmbundle/Templates/XHTML /342/200/223 1.1/info.plist" +16 -0
  417. data/textmate/Bundles/RedcarRepl.tmbundle/Syntaxes/InternalRuby.plist +54 -0
  418. data/textmate/Bundles/Ruby.tmbundle/Snippets/060_ruby_if_else.plist +20 -0
  419. data/textmate/Bundles/Ruby.tmbundle/Snippets/070_ruby_if.plist +18 -0
  420. data/textmate/Bundles/Ruby.tmbundle/Snippets/080_ruby_case.plist +19 -0
  421. data/textmate/Bundles/Ruby.tmbundle/Snippets/Add_____________Marker.tmSnippet +16 -0
  422. data/textmate/Bundles/Ruby.tmbundle/Snippets/Array_new__10________i____________Arr__.plist +16 -0
  423. data/textmate/Bundles/Ruby.tmbundle/Snippets/Benchmark_bmbm_______do____end.tmSnippet +19 -0
  424. data/textmate/Bundles/Ruby.tmbundle/Snippets/Dir__________.tmSnippet +16 -0
  425. data/textmate/Bundles/Ruby.tmbundle/Snippets/Dir_glob___________do___file______end____Dir__.plist +16 -0
  426. data/textmate/Bundles/Ruby.tmbundle/Snippets/File_foreach____________do___line______end____File__.plist +16 -0
  427. data/textmate/Bundles/Ruby.tmbundle/Snippets/File_open________________file________.tmSnippet +16 -0
  428. data/textmate/Bundles/Ruby.tmbundle/Snippets/File_read__________.tmSnippet +16 -0
  429. data/textmate/Bundles/Ruby.tmbundle/Snippets/Hash_new______hash___key___hash__key_______________Has__.plist +16 -0
  430. data/textmate/Bundles/Ruby.tmbundle/Snippets/Insert_ERb__s______________or_______________.tmSnippet +16 -0
  431. data/textmate/Bundles/Ruby.tmbundle/Snippets/Marshal_dump__obj___file______Md__.plist +16 -0
  432. data/textmate/Bundles/Ruby.tmbundle/Snippets/Marshal_load__obj______Ml__.plist +16 -0
  433. data/textmate/Bundles/Ruby.tmbundle/Snippets/PStore_new________.tmSnippet +16 -0
  434. data/textmate/Bundles/Ruby.tmbundle/Snippets/RDoc_documentation_block.tmSnippet +20 -0
  435. data/textmate/Bundles/Ruby.tmbundle/Snippets/Wrap_in_Begin________Rescue________End.plist +23 -0
  436. data/textmate/Bundles/Ruby.tmbundle/Snippets/YAML_dump_______file______Yd____.plist +16 -0
  437. data/textmate/Bundles/Ruby.tmbundle/Snippets/YAML_load__file______Yl____.plist +16 -0
  438. data/textmate/Bundles/Ruby.tmbundle/Snippets/__END__.tmSnippet +17 -0
  439. data/textmate/Bundles/Ruby.tmbundle/Snippets/______usr__local__bin__ruby___w.plist +17 -0
  440. data/textmate/Bundles/Ruby.tmbundle/Snippets/__yields___RDoc_comment.tmSnippet +16 -0
  441. data/textmate/Bundles/Ruby.tmbundle/Snippets/alias_method_______am__.plist +16 -0
  442. data/textmate/Bundles/Ruby.tmbundle/Snippets/all________e____________all__.plist +16 -0
  443. data/textmate/Bundles/Ruby.tmbundle/Snippets/any________e____________any__.plist +16 -0
  444. data/textmate/Bundles/Ruby.tmbundle/Snippets/application_code_______app__.plist +18 -0
  445. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert__________as__.plist +16 -0
  446. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_equal.tmSnippet +16 -0
  447. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_in_delta__________asid__.plist +16 -0
  448. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_instance_of__________asio__.plist +16 -0
  449. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_kind_of__________asko__.plist +16 -0
  450. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_match__________asm__.plist +16 -0
  451. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_nil__________asn__.plist +16 -0
  452. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_no_match__________asnm__.plist +16 -0
  453. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_not_equal__________asne__.plist +16 -0
  454. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_not_nil__________asnn__.plist +16 -0
  455. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_not_same__________asns__.plist +16 -0
  456. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_nothing_raised___________________asnr__.plist +16 -0
  457. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_nothing_thrown_____________asnt__.plist +16 -0
  458. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_operator__________aso__.plist +16 -0
  459. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_raise___________________asr__.plist +16 -0
  460. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_respond_to__________asrt__.plist +16 -0
  461. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_same__________ass__.plist +16 -0
  462. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_send__________ass__.plist +16 -0
  463. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_throws___________________ast__.plist +16 -0
  464. data/textmate/Bundles/Ruby.tmbundle/Snippets/attr_accessor_______rw__.plist +16 -0
  465. data/textmate/Bundles/Ruby.tmbundle/Snippets/attr_reader_______r__.plist +16 -0
  466. data/textmate/Bundles/Ruby.tmbundle/Snippets/attr_writer_______w__.plist +16 -0
  467. data/textmate/Bundles/Ruby.tmbundle/Snippets/class_______DelegateClass____initialize____end____class__.plist +24 -0
  468. data/textmate/Bundles/Ruby.tmbundle/Snippets/class_______ParentClass____initialize____end.plist +22 -0
  469. data/textmate/Bundles/Ruby.tmbundle/Snippets/class_______Struct____initialize____end.plist +22 -0
  470. data/textmate/Bundles/Ruby.tmbundle/Snippets/class_______Test____Unit____TestCase____end____tc__.plist +24 -0
  471. data/textmate/Bundles/Ruby.tmbundle/Snippets/class______self____end.tmSnippet +18 -0
  472. data/textmate/Bundles/Ruby.tmbundle/Snippets/class____end____cla__.plist +18 -0
  473. data/textmate/Bundles/Ruby.tmbundle/Snippets/class____initialize____end.plist +22 -0
  474. data/textmate/Bundles/Ruby.tmbundle/Snippets/class____instance_methods____undef____initialize____end____class__.plist +30 -0
  475. data/textmate/Bundles/Ruby.tmbundle/Snippets/class_from_name________clafn__.plist +16 -0
  476. data/textmate/Bundles/Ruby.tmbundle/Snippets/classify______e____________clas__.plist +16 -0
  477. data/textmate/Bundles/Ruby.tmbundle/Snippets/collect______e____________col__.plist +16 -0
  478. data/textmate/Bundles/Ruby.tmbundle/Snippets/deep_copy__________dee__.plist +16 -0
  479. data/textmate/Bundles/Ruby.tmbundle/Snippets/def_delegator______defd__.plist +16 -0
  480. data/textmate/Bundles/Ruby.tmbundle/Snippets/def_delegators______defds__.plist +16 -0
  481. data/textmate/Bundles/Ruby.tmbundle/Snippets/def_end.plist +18 -0
  482. data/textmate/Bundles/Ruby.tmbundle/Snippets/def_method_missing____end____mm__.plist +18 -0
  483. data/textmate/Bundles/Ruby.tmbundle/Snippets/def_self____end____defs__.plist +18 -0
  484. data/textmate/Bundles/Ruby.tmbundle/Snippets/def_test_____end____t__.plist +18 -0
  485. data/textmate/Bundles/Ruby.tmbundle/Snippets/delete_if______e____________deli__.plist +16 -0
  486. data/textmate/Bundles/Ruby.tmbundle/Snippets/detect______e____________det__.plist +16 -0
  487. data/textmate/Bundles/Ruby.tmbundle/Snippets/directory____.tmSnippet +16 -0
  488. data/textmate/Bundles/Ruby.tmbundle/Snippets/do___obj______end___doo__.plist +18 -0
  489. data/textmate/Bundles/Ruby.tmbundle/Snippets/downto__0________n____________dow__.plist +16 -0
  490. data/textmate/Bundles/Ruby.tmbundle/Snippets/each______e____________ea__.plist +16 -0
  491. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_byte______byte____________eab__.plist +16 -0
  492. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_char______chr____________eac____.plist +16 -0
  493. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_cons____________group____________eac____.plist +16 -0
  494. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_index______i____________eai__.plist +16 -0
  495. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_key______key____________eak__.plist +16 -0
  496. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_line______line____________eal__.plist +16 -0
  497. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_pair______name___val____________eap__.plist +16 -0
  498. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_slice______group____________eas__.plist +16 -0
  499. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_value______val____________eav__.plist +16 -0
  500. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_with_index______e___i____________eawi__.plist +16 -0
  501. data/textmate/Bundles/Ruby.tmbundle/Snippets/elsif____.tmSnippet +17 -0
  502. data/textmate/Bundles/Ruby.tmbundle/Snippets/embed_string_variable.plist +16 -0
  503. data/textmate/Bundles/Ruby.tmbundle/Snippets/extend_Forwardable____Forw__.plist +16 -0
  504. data/textmate/Bundles/Ruby.tmbundle/Snippets/fetch__name________key____________fet__.plist +16 -0
  505. data/textmate/Bundles/Ruby.tmbundle/Snippets/fill__range________i____________fil__.plist +16 -0
  506. data/textmate/Bundles/Ruby.tmbundle/Snippets/find______e____________fin__.plist +16 -0
  507. data/textmate/Bundles/Ruby.tmbundle/Snippets/find_all______e____________fina__.plist +16 -0
  508. data/textmate/Bundles/Ruby.tmbundle/Snippets/flatten_once____fla__.plist +16 -0
  509. data/textmate/Bundles/Ruby.tmbundle/Snippets/flunk__________fl__.plist +16 -0
  510. data/textmate/Bundles/Ruby.tmbundle/Snippets/grep____pattern__________match____________gre__.plist +16 -0
  511. data/textmate/Bundles/Ruby.tmbundle/Snippets/gsub________________match____________gsu__.plist +16 -0
  512. data/textmate/Bundles/Ruby.tmbundle/Snippets/hash_pair_______.plist +16 -0
  513. data/textmate/Bundles/Ruby.tmbundle/Snippets/hash_pointer.plist +16 -0
  514. data/textmate/Bundles/Ruby.tmbundle/Snippets/include_Comparable_______Comp__.plist +20 -0
  515. data/textmate/Bundles/Ruby.tmbundle/Snippets/include_Enumerable_______Enum__.plist +20 -0
  516. data/textmate/Bundles/Ruby.tmbundle/Snippets/inject__init________mem___var____________inj__.plist +16 -0
  517. data/textmate/Bundles/Ruby.tmbundle/Snippets/lambda______args____________lam__.plist +16 -0
  518. data/textmate/Bundles/Ruby.tmbundle/Snippets/loop_________.tmSnippet +16 -0
  519. data/textmate/Bundles/Ruby.tmbundle/Snippets/map______e____________map__.plist +16 -0
  520. data/textmate/Bundles/Ruby.tmbundle/Snippets/map_with_index______e___i____________mapwi__.plist +16 -0
  521. data/textmate/Bundles/Ruby.tmbundle/Snippets/max______a___b____________max__.plist +16 -0
  522. data/textmate/Bundles/Ruby.tmbundle/Snippets/min______a___b____________min__.plist +16 -0
  523. data/textmate/Bundles/Ruby.tmbundle/Snippets/module____ClassMethods____end.plist +29 -0
  524. data/textmate/Bundles/Ruby.tmbundle/Snippets/module____end.plist +18 -0
  525. data/textmate/Bundles/Ruby.tmbundle/Snippets/module____module_function____end.plist +20 -0
  526. data/textmate/Bundles/Ruby.tmbundle/Snippets/namespace______do____end.tmSnippet +18 -0
  527. data/textmate/Bundles/Ruby.tmbundle/Snippets/open____path__or__url_______w_____do___doc______end___ope__.plist +16 -0
  528. data/textmate/Bundles/Ruby.tmbundle/Snippets/open_yield_block_______.plist +16 -0
  529. data/textmate/Bundles/Ruby.tmbundle/Snippets/option_parse_____________optp__.plist +43 -0
  530. data/textmate/Bundles/Ruby.tmbundle/Snippets/partition______e____________par__.plist +16 -0
  531. data/textmate/Bundles/Ruby.tmbundle/Snippets/path_from_here________.tmSnippet +16 -0
  532. data/textmate/Bundles/Ruby.tmbundle/Snippets/randomize____ran__.plist +16 -0
  533. data/textmate/Bundles/Ruby.tmbundle/Snippets/reject______e____________rej__.plist +16 -0
  534. data/textmate/Bundles/Ruby.tmbundle/Snippets/require___________req__.plist +16 -0
  535. data/textmate/Bundles/Ruby.tmbundle/Snippets/require___tc____________ts__.plist +20 -0
  536. data/textmate/Bundles/Ruby.tmbundle/Snippets/require_gem_______.tmSnippet +16 -0
  537. data/textmate/Bundles/Ruby.tmbundle/Snippets/results_report_______________.tmSnippet +16 -0
  538. data/textmate/Bundles/Ruby.tmbundle/Snippets/reverse_each______e____________rea__.plist +16 -0
  539. data/textmate/Bundles/Ruby.tmbundle/Snippets/scan________________match____________sca__.plist +16 -0
  540. data/textmate/Bundles/Ruby.tmbundle/Snippets/select______e____________sel__.plist +16 -0
  541. data/textmate/Bundles/Ruby.tmbundle/Snippets/singleton_class____.tmSnippet +16 -0
  542. data/textmate/Bundles/Ruby.tmbundle/Snippets/sort______a___b____________sor__.plist +16 -0
  543. data/textmate/Bundles/Ruby.tmbundle/Snippets/sort_by______e____________sorb__.plist +16 -0
  544. data/textmate/Bundles/Ruby.tmbundle/Snippets/step__2________e____________ste__.plist +16 -0
  545. data/textmate/Bundles/Ruby.tmbundle/Snippets/sub________________match____________sub__.plist +16 -0
  546. data/textmate/Bundles/Ruby.tmbundle/Snippets/task___task_name__________dependent_____tasks___do____end.tmSnippet +19 -0
  547. data/textmate/Bundles/Ruby.tmbundle/Snippets/times______n____________tim__.plist +16 -0
  548. data/textmate/Bundles/Ruby.tmbundle/Snippets/transaction_________do____end.tmSnippet +16 -0
  549. data/textmate/Bundles/Ruby.tmbundle/Snippets/unix_filter______uni__.plist +18 -0
  550. data/textmate/Bundles/Ruby.tmbundle/Snippets/unless___unless__.plist +18 -0
  551. data/textmate/Bundles/Ruby.tmbundle/Snippets/until_____end.tmSnippet +18 -0
  552. data/textmate/Bundles/Ruby.tmbundle/Snippets/untitled.plist +19 -0
  553. data/textmate/Bundles/Ruby.tmbundle/Snippets/upto__1_0__0_0________n____________upt__.plist +16 -0
  554. data/textmate/Bundles/Ruby.tmbundle/Snippets/usage_if________usai__.plist +18 -0
  555. data/textmate/Bundles/Ruby.tmbundle/Snippets/usage_unless________usau__.plist +18 -0
  556. data/textmate/Bundles/Ruby.tmbundle/Snippets/when.plist +17 -0
  557. data/textmate/Bundles/Ruby.tmbundle/Snippets/while_____end.tmSnippet +18 -0
  558. data/textmate/Bundles/Ruby.tmbundle/Snippets/xmlread______.tmSnippet +16 -0
  559. data/textmate/Bundles/Ruby.tmbundle/Snippets/xpath_______________.tmSnippet +18 -0
  560. data/textmate/Bundles/Ruby.tmbundle/Snippets/zip__enums________row____________zip__.plist +16 -0
  561. data/textmate/Bundles/Ruby.tmbundle/Syntaxes/Ruby.plist +2763 -0
  562. data/textmate/Bundles/Source.tmbundle/Snippets/Continue_line_comment.plist +35 -0
  563. data/textmate/Bundles/Source.tmbundle/Snippets/Escaped_Quote_Pair_____________.plist +14 -0
  564. data/textmate/Bundles/Source.tmbundle/Snippets/Escaped_Single_Quote_Pair_____________.plist +14 -0
  565. data/textmate/Bundles/Source.tmbundle/Snippets/Frame_text.plist +16 -0
  566. data/textmate/Bundles/Source.tmbundle/Snippets/__n.plist +16 -0
  567. data/textmate/Bundles/Text.tmbundle/Snippets/010_Copyright.plist +14 -0
  568. data/textmate/Bundles/Text.tmbundle/Snippets/Conitnue_bullet.plist +17 -0
  569. data/textmate/Bundles/Text.tmbundle/Snippets/Conitnue_light_bullet.plist +17 -0
  570. data/textmate/Bundles/Text.tmbundle/Snippets/Conitnue_star_bullet.plist +17 -0
  571. data/textmate/Bundles/Text.tmbundle/Snippets/Insert_ISO_date.plist +14 -0
  572. data/textmate/Bundles/Text.tmbundle/Snippets/Lorem_ipsum.plist +14 -0
  573. data/textmate/Bundles/Text.tmbundle/Syntaxes/Plain_text.plist +83 -0
  574. data/textmate/Bundles/Text.tmbundle/Templates/Empty file/info.plist +14 -0
  575. data/textmate/Bundles/Text.tmbundle/Templates/From Clipboard/info.plist +17 -0
  576. data/textmate/Themes/Active4D.tmTheme +407 -0
  577. data/textmate/Themes/All Hallow's Eve.tmTheme +277 -0
  578. data/textmate/Themes/Amy.tmTheme +557 -0
  579. data/textmate/Themes/Blackboard.tmTheme +350 -0
  580. data/textmate/Themes/Brilliance Black.tmTheme +2619 -0
  581. data/textmate/Themes/Brilliance Dull.tmTheme +2243 -0
  582. data/textmate/Themes/Cobalt.tmTheme +559 -0
  583. data/textmate/Themes/Dawn.tmTheme +437 -0
  584. data/textmate/Themes/Eiffel.tmTheme +439 -0
  585. data/textmate/Themes/Espresso Libre.tmTheme +402 -0
  586. data/textmate/Themes/IDLE.tmTheme +235 -0
  587. data/textmate/Themes/LAZY.tmTheme +291 -0
  588. data/textmate/Themes/Mac Classic.tmTheme +450 -0
  589. data/textmate/Themes/MagicWB (Amiga).tmTheme +376 -0
  590. data/textmate/Themes/Pastels on Dark.tmTheme +701 -0
  591. data/textmate/Themes/Railscasts.tmTheme +278 -0
  592. data/textmate/Themes/Slush & Poppies.tmTheme +336 -0
  593. data/textmate/Themes/SpaceCadet.tmTheme +212 -0
  594. data/textmate/Themes/Sunburst.tmTheme +665 -0
  595. data/textmate/Themes/Twilight.tmTheme +514 -0
  596. data/textmate/Themes/Vibrant Ink.tmTheme +447 -0
  597. data/textmate/Themes/Zenburnesque.tmTheme +343 -0
  598. data/textmate/Themes/choco.tmTheme +542 -0
  599. data/textmate/Themes/iPlastic.tmTheme +286 -0
  600. metadata +673 -0
@@ -0,0 +1,350 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>name</key>
6
+ <string>Blackboard</string>
7
+ <key>author</key>
8
+ <string>Domenico Carbotta</string>
9
+ <key>settings</key>
10
+ <array>
11
+ <dict>
12
+ <key>settings</key>
13
+ <dict>
14
+ <key>background</key>
15
+ <string>#0C1021</string>
16
+ <key>caret</key>
17
+ <string>#FFFFFFA6</string>
18
+ <key>foreground</key>
19
+ <string>#F8F8F8</string>
20
+ <key>invisibles</key>
21
+ <string>#FFFFFF40</string>
22
+ <key>lineHighlight</key>
23
+ <string>#FFFFFF0F</string>
24
+ <key>selection</key>
25
+ <string>#253B76</string>
26
+ </dict>
27
+ </dict>
28
+ <dict>
29
+ <key>name</key>
30
+ <string>Comment</string>
31
+ <key>scope</key>
32
+ <string>comment</string>
33
+ <key>settings</key>
34
+ <dict>
35
+ <key>fontStyle</key>
36
+ <string></string>
37
+ <key>foreground</key>
38
+ <string>#AEAEAE</string>
39
+ </dict>
40
+ </dict>
41
+ <dict>
42
+ <key>name</key>
43
+ <string>Constant</string>
44
+ <key>scope</key>
45
+ <string>constant</string>
46
+ <key>settings</key>
47
+ <dict>
48
+ <key>fontStyle</key>
49
+ <string></string>
50
+ <key>foreground</key>
51
+ <string>#D8FA3C</string>
52
+ </dict>
53
+ </dict>
54
+ <dict>
55
+ <key>name</key>
56
+ <string>Entity</string>
57
+ <key>scope</key>
58
+ <string>entity</string>
59
+ <key>settings</key>
60
+ <dict>
61
+ <key>fontStyle</key>
62
+ <string></string>
63
+ <key>foreground</key>
64
+ <string>#FF6400</string>
65
+ </dict>
66
+ </dict>
67
+ <dict>
68
+ <key>name</key>
69
+ <string>Keyword</string>
70
+ <key>scope</key>
71
+ <string>keyword</string>
72
+ <key>settings</key>
73
+ <dict>
74
+ <key>fontStyle</key>
75
+ <string></string>
76
+ <key>foreground</key>
77
+ <string>#FBDE2D</string>
78
+ </dict>
79
+ </dict>
80
+ <dict>
81
+ <key>name</key>
82
+ <string>Storage</string>
83
+ <key>scope</key>
84
+ <string>storage</string>
85
+ <key>settings</key>
86
+ <dict>
87
+ <key>fontStyle</key>
88
+ <string></string>
89
+ <key>foreground</key>
90
+ <string>#FBDE2D</string>
91
+ </dict>
92
+ </dict>
93
+ <dict>
94
+ <key>name</key>
95
+ <string>String</string>
96
+ <key>scope</key>
97
+ <string>string, meta.verbatim</string>
98
+ <key>settings</key>
99
+ <dict>
100
+ <key>fontStyle</key>
101
+ <string></string>
102
+ <key>foreground</key>
103
+ <string>#61CE3C</string>
104
+ </dict>
105
+ </dict>
106
+ <dict>
107
+ <key>name</key>
108
+ <string>Support</string>
109
+ <key>scope</key>
110
+ <string>support</string>
111
+ <key>settings</key>
112
+ <dict>
113
+ <key>fontStyle</key>
114
+ <string></string>
115
+ <key>foreground</key>
116
+ <string>#8DA6CE</string>
117
+ </dict>
118
+ </dict>
119
+ <dict>
120
+ <key>name</key>
121
+ <string>Variable</string>
122
+ <key>scope</key>
123
+ <string>variable</string>
124
+ <key>settings</key>
125
+ <dict>
126
+ <key>fontStyle</key>
127
+ <string></string>
128
+ </dict>
129
+ </dict>
130
+ <dict>
131
+ <key>name</key>
132
+ <string>Invalid – Deprecated</string>
133
+ <key>scope</key>
134
+ <string>invalid.deprecated</string>
135
+ <key>settings</key>
136
+ <dict>
137
+ <key>fontStyle</key>
138
+ <string>italic</string>
139
+ <key>foreground</key>
140
+ <string>#AB2A1D</string>
141
+ </dict>
142
+ </dict>
143
+ <dict>
144
+ <key>name</key>
145
+ <string>Invalid – Illegal</string>
146
+ <key>scope</key>
147
+ <string>invalid.illegal</string>
148
+ <key>settings</key>
149
+ <dict>
150
+ <key>background</key>
151
+ <string>#9D1E15</string>
152
+ <key>foreground</key>
153
+ <string>#F8F8F8</string>
154
+ </dict>
155
+ </dict>
156
+ <dict>
157
+ <key>name</key>
158
+ <string>Superclass</string>
159
+ <key>scope</key>
160
+ <string>entity.other.inherited-class</string>
161
+ <key>settings</key>
162
+ <dict>
163
+ <key>fontStyle</key>
164
+ <string>italic</string>
165
+ <key>foreground</key>
166
+ <string>#FF6400</string>
167
+ </dict>
168
+ </dict>
169
+ <dict>
170
+ <key>name</key>
171
+ <string>String interpolation</string>
172
+ <key>scope</key>
173
+ <string>string constant.other.placeholder</string>
174
+ <key>settings</key>
175
+ <dict>
176
+ <key>fontStyle</key>
177
+ <string></string>
178
+ <key>foreground</key>
179
+ <string>#FF6400</string>
180
+ </dict>
181
+ </dict>
182
+ <dict>
183
+ <key>name</key>
184
+ <string>meta.function-call.py</string>
185
+ <key>scope</key>
186
+ <string>meta.function-call.py</string>
187
+ <key>settings</key>
188
+ <dict>
189
+ <key>fontStyle</key>
190
+ <string></string>
191
+ <key>foreground</key>
192
+ <string>#BECDE6</string>
193
+ </dict>
194
+ </dict>
195
+ <dict>
196
+ <key>name</key>
197
+ <string>meta.tag</string>
198
+ <key>scope</key>
199
+ <string>meta.tag, meta.tag entity</string>
200
+ <key>settings</key>
201
+ <dict>
202
+ <key>foreground</key>
203
+ <string>#7F90AA</string>
204
+ </dict>
205
+ </dict>
206
+ <dict>
207
+ <key>name</key>
208
+ <string>entity.name.section</string>
209
+ <key>scope</key>
210
+ <string>entity.name.section</string>
211
+ <key>settings</key>
212
+ <dict>
213
+ <key>fontStyle</key>
214
+ <string></string>
215
+ <key>foreground</key>
216
+ <string>#FFFFFF</string>
217
+ </dict>
218
+ </dict>
219
+ <dict>
220
+ <key>name</key>
221
+ <string>OCaml variant</string>
222
+ <key>scope</key>
223
+ <string>keyword.type.variant</string>
224
+ <key>settings</key>
225
+ <dict>
226
+ <key>foreground</key>
227
+ <string>#D5E0F3</string>
228
+ </dict>
229
+ </dict>
230
+ <dict>
231
+ <key>name</key>
232
+ <string>OCaml operator</string>
233
+ <key>scope</key>
234
+ <string>source.ocaml keyword.operator.symbol</string>
235
+ <key>settings</key>
236
+ <dict>
237
+ <key>foreground</key>
238
+ <string>#F8F8F8</string>
239
+ </dict>
240
+ </dict>
241
+ <dict>
242
+ <key>name</key>
243
+ <string>OCaml infix operator</string>
244
+ <key>scope</key>
245
+ <string>source.ocaml keyword.operator.symbol.infix</string>
246
+ <key>settings</key>
247
+ <dict>
248
+ <key>fontStyle</key>
249
+ <string></string>
250
+ <key>foreground</key>
251
+ <string>#8DA6CE</string>
252
+ </dict>
253
+ </dict>
254
+ <dict>
255
+ <key>name</key>
256
+ <string>OCaml prefix operator</string>
257
+ <key>scope</key>
258
+ <string>source.ocaml keyword.operator.symbol.prefix</string>
259
+ <key>settings</key>
260
+ <dict>
261
+ <key>fontStyle</key>
262
+ <string></string>
263
+ <key>foreground</key>
264
+ <string>#8DA6CE</string>
265
+ </dict>
266
+ </dict>
267
+ <dict>
268
+ <key>name</key>
269
+ <string>OCaml f-p infix operator</string>
270
+ <key>scope</key>
271
+ <string>source.ocaml keyword.operator.symbol.infix.floating-point</string>
272
+ <key>settings</key>
273
+ <dict>
274
+ <key>fontStyle</key>
275
+ <string>underline</string>
276
+ </dict>
277
+ </dict>
278
+ <dict>
279
+ <key>name</key>
280
+ <string>OCaml f-p prefix operator</string>
281
+ <key>scope</key>
282
+ <string>source.ocaml keyword.operator.symbol.prefix.floating-point</string>
283
+ <key>settings</key>
284
+ <dict>
285
+ <key>fontStyle</key>
286
+ <string>underline</string>
287
+ </dict>
288
+ </dict>
289
+ <dict>
290
+ <key>name</key>
291
+ <string>OCaml f-p constant</string>
292
+ <key>scope</key>
293
+ <string>source.ocaml constant.numeric.floating-point</string>
294
+ <key>settings</key>
295
+ <dict>
296
+ <key>fontStyle</key>
297
+ <string>underline</string>
298
+ </dict>
299
+ </dict>
300
+ <dict>
301
+ <key>name</key>
302
+ <string>LaTeX environment</string>
303
+ <key>scope</key>
304
+ <string>text.tex.latex meta.function.environment</string>
305
+ <key>settings</key>
306
+ <dict>
307
+ <key>background</key>
308
+ <string>#FFFFFF08</string>
309
+ </dict>
310
+ </dict>
311
+ <dict>
312
+ <key>name</key>
313
+ <string>LaTeX environment (nested)</string>
314
+ <key>scope</key>
315
+ <string>text.tex.latex meta.function.environment meta.function.environment</string>
316
+ <key>settings</key>
317
+ <dict>
318
+ <key>background</key>
319
+ <string>#7A96FA08</string>
320
+ </dict>
321
+ </dict>
322
+ <dict>
323
+ <key>name</key>
324
+ <string>Latex support</string>
325
+ <key>scope</key>
326
+ <string>text.tex.latex support.function</string>
327
+ <key>settings</key>
328
+ <dict>
329
+ <key>fontStyle</key>
330
+ <string></string>
331
+ <key>foreground</key>
332
+ <string>#FBDE2D</string>
333
+ </dict>
334
+ </dict>
335
+ <dict>
336
+ <key>name</key>
337
+ <string>PList unquoted string</string>
338
+ <key>scope</key>
339
+ <string>source.plist string.unquoted, source.plist keyword.operator</string>
340
+ <key>settings</key>
341
+ <dict>
342
+ <key>foreground</key>
343
+ <string>#FFFFFF</string>
344
+ </dict>
345
+ </dict>
346
+ </array>
347
+ <key>uuid</key>
348
+ <string>A2C6BAA7-90D0-4147-BBF5-96B0CD92D109</string>
349
+ </dict>
350
+ </plist>
@@ -0,0 +1,2619 @@
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>author</key>
6
+ <string>Thomas Aylott</string>
7
+ <key>comment</key>
8
+ <string>Thomas Aylott ㊷ subtleGradient.com</string>
9
+ <key>name</key>
10
+ <string>Brilliance Black</string>
11
+ <key>settings</key>
12
+ <array>
13
+ <dict>
14
+ <key>settings</key>
15
+ <dict>
16
+ <key>background</key>
17
+ <string>#0D0D0DFA</string>
18
+ <key>caret</key>
19
+ <string>#3333FF</string>
20
+ <key>foreground</key>
21
+ <string>#EEEEEE</string>
22
+ <key>invisibles</key>
23
+ <string>#CCCCCC1A</string>
24
+ <key>lineHighlight</key>
25
+ <string>#00008033</string>
26
+ <key>selection</key>
27
+ <string>#0010B499</string>
28
+ </dict>
29
+ </dict>
30
+ <dict>
31
+ <key>name</key>
32
+ <string>Thomas Aylott ㊷</string>
33
+ <key>scope</key>
34
+ <string>meta.thomas_aylott</string>
35
+ <key>settings</key>
36
+ <dict>
37
+ <key>background</key>
38
+ <string>#FFFFFF</string>
39
+ <key>fontStyle</key>
40
+ <string>bold</string>
41
+ <key>foreground</key>
42
+ <string>#000000</string>
43
+ </dict>
44
+ </dict>
45
+ <dict>
46
+ <key>name</key>
47
+ <string>subtleGradient.com</string>
48
+ <key>scope</key>
49
+ <string>meta.subtlegradient</string>
50
+ <key>settings</key>
51
+ <dict>
52
+ <key>background</key>
53
+ <string>#FFFFFF</string>
54
+ <key>fontStyle</key>
55
+ <string>underline</string>
56
+ <key>foreground</key>
57
+ <string>#555555</string>
58
+ </dict>
59
+ </dict>
60
+ <dict>
61
+ <key>name</key>
62
+ <string>~ String</string>
63
+ <key>scope</key>
64
+ <string>string -meta.tag -meta.doctype -string.regexp -string.literal -string.interpolated -string.quoted.literal -string.unquoted, variable.parameter.misc.css, text string source string, string.unquoted string, string.regexp string, string.interpolated string, meta.tag source string</string>
65
+ <key>settings</key>
66
+ <dict>
67
+ <key>background</key>
68
+ <string>#803D0033</string>
69
+ <key>foreground</key>
70
+ <string>#FFFC80</string>
71
+ </dict>
72
+ </dict>
73
+ <dict>
74
+ <key>name</key>
75
+ <string>~ String Punctuation</string>
76
+ <key>scope</key>
77
+ <string>punctuation.definition.string -meta.tag</string>
78
+ <key>settings</key>
79
+ <dict>
80
+ <key>foreground</key>
81
+ <string>#803D00</string>
82
+ </dict>
83
+ </dict>
84
+ <dict>
85
+ <key>name</key>
86
+ <string>~ String Punctuation II</string>
87
+ <key>scope</key>
88
+ <string>string.regexp punctuation.definition.string, string.quoted.literal punctuation.definition.string, string.quoted.double.ruby.mod punctuation.definition.string</string>
89
+ <key>settings</key>
90
+ <dict>
91
+ <key>foreground</key>
92
+ <string>#FFF80033</string>
93
+ </dict>
94
+ </dict>
95
+ <dict>
96
+ <key>name</key>
97
+ <string>~ String Literal</string>
98
+ <key>scope</key>
99
+ <string>string.quoted.literal, string.quoted.double.ruby.mod</string>
100
+ <key>settings</key>
101
+ <dict>
102
+ <key>background</key>
103
+ <string>#43800033</string>
104
+ <key>foreground</key>
105
+ <string>#FFF800</string>
106
+ </dict>
107
+ </dict>
108
+ <dict>
109
+ <key>name</key>
110
+ <string>~ String Unquoted</string>
111
+ <key>scope</key>
112
+ <string>string.unquoted -string.unquoted.embedded, string.quoted.double.multiline, meta.scope.heredoc</string>
113
+ <key>settings</key>
114
+ <dict>
115
+ <key>foreground</key>
116
+ <string>#FFBC80</string>
117
+ </dict>
118
+ </dict>
119
+ <dict>
120
+ <key>name</key>
121
+ <string>~ String Interpolated</string>
122
+ <key>scope</key>
123
+ <string>string.interpolated</string>
124
+ <key>settings</key>
125
+ <dict>
126
+ <key>background</key>
127
+ <string>#1A1A1A</string>
128
+ <key>foreground</key>
129
+ <string>#FFFC80</string>
130
+ </dict>
131
+ </dict>
132
+ <dict>
133
+ <key>name</key>
134
+ <string>~ String RegEx</string>
135
+ <key>scope</key>
136
+ <string>string.regexp</string>
137
+ <key>settings</key>
138
+ <dict>
139
+ <key>background</key>
140
+ <string>#43800033</string>
141
+ <key>foreground</key>
142
+ <string>#FFF800</string>
143
+ </dict>
144
+ </dict>
145
+ <dict>
146
+ <key>name</key>
147
+ <string>~ String RegEx Group 1</string>
148
+ <key>scope</key>
149
+ <string>string.regexp.group</string>
150
+ <key>settings</key>
151
+ <dict>
152
+ <key>background</key>
153
+ <string>#43800033</string>
154
+ </dict>
155
+ </dict>
156
+ <dict>
157
+ <key>name</key>
158
+ <string>~ String RegEx Group 2</string>
159
+ <key>scope</key>
160
+ <string>string.regexp.group string.regexp.group </string>
161
+ <key>settings</key>
162
+ <dict>
163
+ <key>background</key>
164
+ <string>#43800033</string>
165
+ <key>foreground</key>
166
+ <string>#FFFFFF66</string>
167
+ </dict>
168
+ </dict>
169
+ <dict>
170
+ <key>name</key>
171
+ <string>~ String RegEx Group 3</string>
172
+ <key>scope</key>
173
+ <string>string.regexp.group string.regexp.group string.regexp.group </string>
174
+ <key>settings</key>
175
+ <dict>
176
+ <key>background</key>
177
+ <string>#43800033</string>
178
+ <key>foreground</key>
179
+ <string>#FFFFFF66</string>
180
+ </dict>
181
+ </dict>
182
+ <dict>
183
+ <key>name</key>
184
+ <string>~ String RegEx Group 4</string>
185
+ <key>scope</key>
186
+ <string>string.regexp.group string.regexp.group string.regexp.group string.regexp.group </string>
187
+ <key>settings</key>
188
+ <dict>
189
+ <key>background</key>
190
+ <string>#43800033</string>
191
+ <key>foreground</key>
192
+ <string>#FFFFFF66</string>
193
+ </dict>
194
+ </dict>
195
+ <dict>
196
+ <key>name</key>
197
+ <string>~ String RegEx Character-Class</string>
198
+ <key>scope</key>
199
+ <string>string.regexp.character-class</string>
200
+ <key>settings</key>
201
+ <dict>
202
+ <key>background</key>
203
+ <string>#43800033</string>
204
+ <key>foreground</key>
205
+ <string>#86FF00</string>
206
+ </dict>
207
+ </dict>
208
+ <dict>
209
+ <key>name</key>
210
+ <string>~ String RegEx Arbitrary-Repitition</string>
211
+ <key>scope</key>
212
+ <string>string.regexp.arbitrary-repitition</string>
213
+ <key>settings</key>
214
+ <dict>
215
+ <key>background</key>
216
+ <string>#43800033</string>
217
+ <key>foreground</key>
218
+ <string>#00FFF8</string>
219
+ </dict>
220
+ </dict>
221
+ <dict>
222
+ <key>name</key>
223
+ <string>~ String RegEx Definition Keyword</string>
224
+ <key>scope</key>
225
+ <string>string.regexp punctuation.definition.string keyword.other</string>
226
+ <key>settings</key>
227
+ <dict>
228
+ <key>fontStyle</key>
229
+ <string></string>
230
+ <key>foreground</key>
231
+ <string>#803D00</string>
232
+ </dict>
233
+ </dict>
234
+ <dict>
235
+ <key>name</key>
236
+ <string>~ Meta Group Assertion Regexp </string>
237
+ <key>scope</key>
238
+ <string>meta.group.assertion.regexp </string>
239
+ <key>settings</key>
240
+ <dict>
241
+ <key>background</key>
242
+ <string>#0086FF33</string>
243
+ </dict>
244
+ </dict>
245
+ <dict>
246
+ <key>name</key>
247
+ <string>~ Meta Assertion</string>
248
+ <key>scope</key>
249
+ <string>meta.assertion, meta.group.assertion keyword.control.group.regexp, meta.group.assertion punctuation.definition.group</string>
250
+ <key>settings</key>
251
+ <dict>
252
+ <key>foreground</key>
253
+ <string>#0086FF</string>
254
+ </dict>
255
+ </dict>
256
+ <dict>
257
+ <key>name</key>
258
+ <string>~ Number</string>
259
+ <key>scope</key>
260
+ <string>constant.numeric</string>
261
+ <key>settings</key>
262
+ <dict>
263
+ <key>foreground</key>
264
+ <string>#C6FF00</string>
265
+ </dict>
266
+ </dict>
267
+ <dict>
268
+ <key>name</key>
269
+ <string>~ Character constant</string>
270
+ <key>scope</key>
271
+ <string>constant.character</string>
272
+ <key>settings</key>
273
+ <dict>
274
+ <key>foreground</key>
275
+ <string>#86FF00</string>
276
+ </dict>
277
+ </dict>
278
+ <dict>
279
+ <key>name</key>
280
+ <string>~ Built-in constant</string>
281
+ <key>scope</key>
282
+ <string>constant.language, keyword.other.unit, constant.other.java, constant.other.unit</string>
283
+ <key>settings</key>
284
+ <dict>
285
+ <key>foreground</key>
286
+ <string>#07FF00</string>
287
+ </dict>
288
+ </dict>
289
+ <dict>
290
+ <key>name</key>
291
+ <string>~ Built-in constant+</string>
292
+ <key>scope</key>
293
+ <string>constant.language.pseudo-variable</string>
294
+ <key>settings</key>
295
+ <dict>
296
+ <key>background</key>
297
+ <string>#04800033</string>
298
+ <key>foreground</key>
299
+ <string>#07FF00</string>
300
+ </dict>
301
+ </dict>
302
+ <dict>
303
+ <key>name</key>
304
+ <string>~ User-defined constant</string>
305
+ <key>scope</key>
306
+ <string>constant.other, constant.block</string>
307
+ <key>settings</key>
308
+ <dict>
309
+ <key>foreground</key>
310
+ <string>#00FF79</string>
311
+ </dict>
312
+ </dict>
313
+ <dict>
314
+ <key>name</key>
315
+ <string>~ Library constant</string>
316
+ <key>scope</key>
317
+ <string>support.constant, constant.name</string>
318
+ <key>settings</key>
319
+ <dict>
320
+ <key>foreground</key>
321
+ <string>#00FFF8</string>
322
+ </dict>
323
+ </dict>
324
+ <dict>
325
+ <key>name</key>
326
+ <string>—————————————————</string>
327
+ <key>settings</key>
328
+ <dict/>
329
+ </dict>
330
+ <dict>
331
+ <key>name</key>
332
+ <string>√ pre-defined variable</string>
333
+ <key>scope</key>
334
+ <string>variable.other.readwrite.global.pre-defined, variable.language</string>
335
+ <key>settings</key>
336
+ <dict>
337
+ <key>background</key>
338
+ <string>#00807C33</string>
339
+ <key>foreground</key>
340
+ <string>#00FF79</string>
341
+ </dict>
342
+ </dict>
343
+ <dict>
344
+ <key>name</key>
345
+ <string>√ Constant Variable</string>
346
+ <key>scope</key>
347
+ <string>variable.other.constant</string>
348
+ <key>settings</key>
349
+ <dict>
350
+ <key>foreground</key>
351
+ <string>#00FFF8</string>
352
+ </dict>
353
+ </dict>
354
+ <dict>
355
+ <key>name</key>
356
+ <string>√ Library variable</string>
357
+ <key>scope</key>
358
+ <string>support.variable</string>
359
+ <key>settings</key>
360
+ <dict>
361
+ <key>background</key>
362
+ <string>#00807C33</string>
363
+ <key>foreground</key>
364
+ <string>#00FFF8</string>
365
+ </dict>
366
+ </dict>
367
+ <dict>
368
+ <key>name</key>
369
+ <string>√ global Variable</string>
370
+ <key>scope</key>
371
+ <string>variable.other.readwrite.global</string>
372
+ <key>settings</key>
373
+ <dict>
374
+ <key>background</key>
375
+ <string>#00438033</string>
376
+ <key>foreground</key>
377
+ <string>#00807C</string>
378
+ </dict>
379
+ </dict>
380
+ <dict>
381
+ <key>name</key>
382
+ <string>√ Variable</string>
383
+ <key>scope</key>
384
+ <string>variable.other, variable.js, punctuation.separator.variable</string>
385
+ <key>settings</key>
386
+ <dict>
387
+ <key>foreground</key>
388
+ <string>#31A6FF</string>
389
+ </dict>
390
+ </dict>
391
+ <dict>
392
+ <key>name</key>
393
+ <string>√ class Variable</string>
394
+ <key>scope</key>
395
+ <string>variable.other.readwrite.class</string>
396
+ <key>settings</key>
397
+ <dict>
398
+ <key>background</key>
399
+ <string>#0008FF33</string>
400
+ <key>foreground</key>
401
+ <string>#0086FF</string>
402
+ </dict>
403
+ </dict>
404
+ <dict>
405
+ <key>name</key>
406
+ <string>√ instance Variable</string>
407
+ <key>scope</key>
408
+ <string>variable.other.readwrite.instance</string>
409
+ <key>settings</key>
410
+ <dict>
411
+ <key>foreground</key>
412
+ <string>#406180</string>
413
+ </dict>
414
+ </dict>
415
+ <dict>
416
+ <key>name</key>
417
+ <string>√ Normal Variables</string>
418
+ <key>scope</key>
419
+ <string>variable.other.php, variable.other.normal</string>
420
+ <key>settings</key>
421
+ <dict>
422
+ <key>foreground</key>
423
+ <string>#406180</string>
424
+ </dict>
425
+ </dict>
426
+ <dict>
427
+ <key>name</key>
428
+ <string>√ Variable Punctuation</string>
429
+ <key>scope</key>
430
+ <string>punctuation.definition, punctuation.separator.variable</string>
431
+ <key>settings</key>
432
+ <dict>
433
+ <key>foreground</key>
434
+ <string>#00000080</string>
435
+ </dict>
436
+ </dict>
437
+ <dict>
438
+ <key>name</key>
439
+ <string>—————————————————</string>
440
+ <key>settings</key>
441
+ <dict/>
442
+ </dict>
443
+ <dict>
444
+ <key>name</key>
445
+ <string>¢ Storage</string>
446
+ <key>scope</key>
447
+ <string>storage -storage.modifier</string>
448
+ <key>settings</key>
449
+ <dict>
450
+ <key>foreground</key>
451
+ <string>#7E0080</string>
452
+ </dict>
453
+ </dict>
454
+ <dict>
455
+ <key>name</key>
456
+ <string>¢ Entity Name Preprocessor</string>
457
+ <key>scope</key>
458
+ <string>other.preprocessor, entity.name.preprocessor</string>
459
+ <key>settings</key>
460
+ <dict>
461
+ <key>background</key>
462
+ <string>#803D0033</string>
463
+ </dict>
464
+ </dict>
465
+ <dict>
466
+ <key>name</key>
467
+ <string>~ variable.language.this.js.prototype</string>
468
+ <key>scope</key>
469
+ <string>variable.language.this.js</string>
470
+ <key>settings</key>
471
+ <dict>
472
+ <key>foreground</key>
473
+ <string>#666666</string>
474
+ </dict>
475
+ </dict>
476
+ <dict>
477
+ <key>name</key>
478
+ <string>¢ Storage Modifier</string>
479
+ <key>scope</key>
480
+ <string>storage.modifier</string>
481
+ <key>settings</key>
482
+ <dict>
483
+ <key>foreground</key>
484
+ <string>#803D00</string>
485
+ </dict>
486
+ </dict>
487
+ <dict>
488
+ <key>name</key>
489
+ <string>¢ Class name</string>
490
+ <key>scope</key>
491
+ <string>entity.name.class, entity.name.type.class, entity.name.type.module</string>
492
+ <key>settings</key>
493
+ <dict>
494
+ <key>foreground</key>
495
+ <string>#FF0000</string>
496
+ </dict>
497
+ </dict>
498
+ <dict>
499
+ <key>name</key>
500
+ <string>¢ Class</string>
501
+ <key>scope</key>
502
+ <string>meta.class -meta.class.instance, declaration.class, meta.definition.class, declaration.module</string>
503
+ <key>settings</key>
504
+ <dict>
505
+ <key>background</key>
506
+ <string>#FF000033</string>
507
+ <key>foreground</key>
508
+ <string>#870000</string>
509
+ </dict>
510
+ </dict>
511
+ <dict>
512
+ <key>name</key>
513
+ <string>¢ Library class/type</string>
514
+ <key>scope</key>
515
+ <string>support.type, support.class</string>
516
+ <key>settings</key>
517
+ <dict>
518
+ <key>background</key>
519
+ <string>#87000033</string>
520
+ <key>foreground</key>
521
+ <string>#FF0000</string>
522
+ </dict>
523
+ </dict>
524
+ <dict>
525
+ <key>name</key>
526
+ <string>¢ Instance</string>
527
+ <key>scope</key>
528
+ <string>entity.name.instance, entity.name.type.instance</string>
529
+ <key>settings</key>
530
+ <dict>
531
+ <key>foreground</key>
532
+ <string>#FF3D44</string>
533
+ </dict>
534
+ </dict>
535
+ <dict>
536
+ <key>name</key>
537
+ <string>¢ Instance.constructor</string>
538
+ <key>scope</key>
539
+ <string>meta.class.instance.constructor</string>
540
+ <key>settings</key>
541
+ <dict>
542
+ <key>background</key>
543
+ <string>#831E5133</string>
544
+ </dict>
545
+ </dict>
546
+ <dict>
547
+ <key>name</key>
548
+ <string>¢ Inherited class</string>
549
+ <key>scope</key>
550
+ <string>entity.other.inherited-class, entity.name.module</string>
551
+ <key>settings</key>
552
+ <dict>
553
+ <key>background</key>
554
+ <string>#80000433</string>
555
+ <key>foreground</key>
556
+ <string>#FF0086</string>
557
+ </dict>
558
+ </dict>
559
+ <dict>
560
+ <key>name</key>
561
+ <string>¢ Class Method</string>
562
+ <key>scope</key>
563
+ <string>meta.definition.method</string>
564
+ <key>settings</key>
565
+ <dict>
566
+ <key>foreground</key>
567
+ <string>#FF0086</string>
568
+ </dict>
569
+ </dict>
570
+ <dict>
571
+ <key>name</key>
572
+ <string>¢ Function Declaration</string>
573
+ <key>scope</key>
574
+ <string>meta.function, meta.property.function, declaration.function</string>
575
+ <key>settings</key>
576
+ <dict/>
577
+ </dict>
578
+ <dict>
579
+ <key>name</key>
580
+ <string>¢ Function Declaration Name</string>
581
+ <key>scope</key>
582
+ <string>entity.name.function, entity.name.preprocessor</string>
583
+ <key>settings</key>
584
+ <dict>
585
+ <key>foreground</key>
586
+ <string>#FF0086</string>
587
+ </dict>
588
+ </dict>
589
+ <dict>
590
+ <key>name</key>
591
+ <string>¢ Function Declaration Parameters</string>
592
+ <key>scope</key>
593
+ <string>variable.parameter.function</string>
594
+ <key>settings</key>
595
+ <dict>
596
+ <key>foreground</key>
597
+ <string>#9799FF</string>
598
+ </dict>
599
+ </dict>
600
+ <dict>
601
+ <key>name</key>
602
+ <string>¢ Function Declaration Parameters</string>
603
+ <key>scope</key>
604
+ <string>variable.parameter -variable.parameter.misc.css, meta.definition.method meta.definition.param-list, meta.function.method.with-arguments variable.parameter.function</string>
605
+ <key>settings</key>
606
+ <dict>
607
+ <key>foreground</key>
608
+ <string>#9799FF</string>
609
+ </dict>
610
+ </dict>
611
+ <dict>
612
+ <key>name</key>
613
+ <string>¢ Function Declaration Parameters Punctuation</string>
614
+ <key>scope</key>
615
+ <string>punctuation.definition.parameters, variable.parameter.function punctuation.separator.object</string>
616
+ <key>settings</key>
617
+ <dict>
618
+ <key>foreground</key>
619
+ <string>#800004</string>
620
+ </dict>
621
+ </dict>
622
+ <dict>
623
+ <key>name</key>
624
+ <string>Function Call</string>
625
+ <key>scope</key>
626
+ <string>keyword.other.special-method, meta.function-call entity.name.function -(meta.function-call meta.function), support.function - variable</string>
627
+ <key>settings</key>
628
+ <dict>
629
+ <key>foreground</key>
630
+ <string>#782EC1</string>
631
+ </dict>
632
+ </dict>
633
+ <dict>
634
+ <key>name</key>
635
+ <string>Library Function Call</string>
636
+ <key>scope</key>
637
+ <string>meta.function-call support.function - variable</string>
638
+ <key>settings</key>
639
+ <dict>
640
+ <key>fontStyle</key>
641
+ <string></string>
642
+ <key>foreground</key>
643
+ <string>#9D3EFF</string>
644
+ </dict>
645
+ </dict>
646
+ <dict>
647
+ <key>name</key>
648
+ <string> Library Function Name</string>
649
+ <key>scope</key>
650
+ <string>support.function</string>
651
+ <key>settings</key>
652
+ <dict>
653
+ <key>background</key>
654
+ <string>#603F8033</string>
655
+ <key>foreground</key>
656
+ <string>#603F80</string>
657
+ </dict>
658
+ </dict>
659
+ <dict>
660
+ <key>name</key>
661
+ <string>Function Call Arguments Punctuation</string>
662
+ <key>scope</key>
663
+ <string>punctuation.section.function, meta.brace.curly.function, meta.function-call punctuation.section.scope.ruby, meta.function-call punctuation.separator.object</string>
664
+ <key>settings</key>
665
+ <dict>
666
+ <key>fontStyle</key>
667
+ <string></string>
668
+ <key>foreground</key>
669
+ <string>#BC80FF</string>
670
+ </dict>
671
+ </dict>
672
+ <dict>
673
+ <key>name</key>
674
+ <string> Function Punctuation</string>
675
+ <key>scope</key>
676
+ <string>meta.group.braces.round punctuation.section.scope,
677
+ meta.group.braces.round meta.delimiter.object.comma,
678
+ meta.group.braces.curly.function meta.delimiter.object.comma,
679
+ meta.brace.round</string>
680
+ <key>settings</key>
681
+ <dict>
682
+ <key>fontStyle</key>
683
+ <string>bold</string>
684
+ <key>foreground</key>
685
+ <string>#BC80FF</string>
686
+ </dict>
687
+ </dict>
688
+ <dict>
689
+ <key>name</key>
690
+ <string> Function Call Without Arguments</string>
691
+ <key>scope</key>
692
+ <string>meta.function-call.method.without-arguments, meta.function-call.method.without-arguments entity.name.function</string>
693
+ <key>settings</key>
694
+ <dict>
695
+ <key>foreground</key>
696
+ <string>#A88FC0</string>
697
+ </dict>
698
+ </dict>
699
+ <dict>
700
+ <key>name</key>
701
+ <string>—————————————————</string>
702
+ <key>settings</key>
703
+ <dict/>
704
+ </dict>
705
+ <dict>
706
+ <key>name</key>
707
+ <string>Keyword Control</string>
708
+ <key>scope</key>
709
+ <string>keyword.control</string>
710
+ <key>settings</key>
711
+ <dict>
712
+ <key>foreground</key>
713
+ <string>#F800FF</string>
714
+ </dict>
715
+ </dict>
716
+ <dict>
717
+ <key>name</key>
718
+ <string>Keyword</string>
719
+ <key>scope</key>
720
+ <string>keyword</string>
721
+ <key>settings</key>
722
+ <dict/>
723
+ </dict>
724
+ <dict>
725
+ <key>name</key>
726
+ <string>Keyword other</string>
727
+ <key>scope</key>
728
+ <string>keyword.other</string>
729
+ <key>settings</key>
730
+ <dict>
731
+ <key>foreground</key>
732
+ <string>#7900FF</string>
733
+ </dict>
734
+ </dict>
735
+ <dict>
736
+ <key>name</key>
737
+ <string> Regex Keyword</string>
738
+ <key>scope</key>
739
+ <string>source.regexp keyword.operator</string>
740
+ <key>settings</key>
741
+ <dict/>
742
+ </dict>
743
+ <dict>
744
+ <key>name</key>
745
+ <string>Keyword Operator</string>
746
+ <key>scope</key>
747
+ <string>keyword.operator, declaration.function.operator, meta.preprocessor.c.include, punctuation.separator.operator</string>
748
+ <key>settings</key>
749
+ <dict>
750
+ <key>foreground</key>
751
+ <string>#0000CE</string>
752
+ </dict>
753
+ </dict>
754
+ <dict>
755
+ <key>name</key>
756
+ <string> Keyword Operator Assignment</string>
757
+ <key>scope</key>
758
+ <string>keyword.operator.assignment</string>
759
+ <key>settings</key>
760
+ <dict>
761
+ <key>background</key>
762
+ <string>#00009A33</string>
763
+ <key>foreground</key>
764
+ <string>#0000CE</string>
765
+ </dict>
766
+ </dict>
767
+ <dict>
768
+ <key>name</key>
769
+ <string> Keyword Operator Arithmetic</string>
770
+ <key>scope</key>
771
+ <string>keyword.operator.arithmetic</string>
772
+ <key>settings</key>
773
+ <dict>
774
+ <key>foreground</key>
775
+ <string>#2136CE</string>
776
+ </dict>
777
+ </dict>
778
+ <dict>
779
+ <key>name</key>
780
+ <string> Keyword Operator Logical</string>
781
+ <key>scope</key>
782
+ <string>keyword.operator.logical</string>
783
+ <key>settings</key>
784
+ <dict>
785
+ <key>background</key>
786
+ <string>#00009A33</string>
787
+ <key>foreground</key>
788
+ <string>#3759FF</string>
789
+ </dict>
790
+ </dict>
791
+ <dict>
792
+ <key>name</key>
793
+ <string> Keyword Operator Comparison</string>
794
+ <key>scope</key>
795
+ <string>keyword.operator.comparison</string>
796
+ <key>settings</key>
797
+ <dict>
798
+ <key>foreground</key>
799
+ <string>#7C88FF</string>
800
+ </dict>
801
+ </dict>
802
+ <dict>
803
+ <key>name</key>
804
+ <string>meta.class.instance.constructor keyword.operator.new</string>
805
+ <key>scope</key>
806
+ <string>meta.class.instance.constructor keyword.operator.new</string>
807
+ <key>settings</key>
808
+ <dict>
809
+ <key>foreground</key>
810
+ <string>#800043</string>
811
+ </dict>
812
+ </dict>
813
+ <dict>
814
+ <key>name</key>
815
+ <string>—————————————————</string>
816
+ <key>settings</key>
817
+ <dict/>
818
+ </dict>
819
+ <dict>
820
+ <key>name</key>
821
+ <string>✘ HTML</string>
822
+ <key>settings</key>
823
+ <dict/>
824
+ </dict>
825
+ <dict>
826
+ <key>name</key>
827
+ <string>✘ Tag Doctype</string>
828
+ <key>scope</key>
829
+ <string>meta.doctype, meta.tag.sgml-declaration.doctype, meta.tag.sgml.doctype</string>
830
+ <key>settings</key>
831
+ <dict>
832
+ <key>background</key>
833
+ <string>#333333</string>
834
+ <key>foreground</key>
835
+ <string>#CCCCCC</string>
836
+ </dict>
837
+ </dict>
838
+ <dict>
839
+ <key>name</key>
840
+ <string>✘ Tag</string>
841
+ <key>scope</key>
842
+ <string>meta.tag</string>
843
+ <key>settings</key>
844
+ <dict>
845
+ <key>foreground</key>
846
+ <string>#333333</string>
847
+ </dict>
848
+ </dict>
849
+ <dict>
850
+ <key>name</key>
851
+ <string>✘ Tag Structure</string>
852
+ <key>scope</key>
853
+ <string>meta.tag.structure, meta.tag.segment</string>
854
+ <key>settings</key>
855
+ <dict>
856
+ <key>background</key>
857
+ <string>#333333BF</string>
858
+ <key>foreground</key>
859
+ <string>#666666</string>
860
+ </dict>
861
+ </dict>
862
+ <dict>
863
+ <key>name</key>
864
+ <string>✘ Tag Block</string>
865
+ <key>scope</key>
866
+ <string>meta.tag.block, meta.tag.xml, meta.tag.key</string>
867
+ <key>settings</key>
868
+ <dict>
869
+ <key>background</key>
870
+ <string>#4C4C4C33</string>
871
+ <key>foreground</key>
872
+ <string>#4C4C4C</string>
873
+ </dict>
874
+ </dict>
875
+ <dict>
876
+ <key>name</key>
877
+ <string>✘ Tag Inline</string>
878
+ <key>scope</key>
879
+ <string>meta.tag.inline</string>
880
+ <key>settings</key>
881
+ <dict>
882
+ <key>background</key>
883
+ <string>#803D0033</string>
884
+ <key>foreground</key>
885
+ <string>#FF7900</string>
886
+ </dict>
887
+ </dict>
888
+ <dict>
889
+ <key>name</key>
890
+ <string>meta.tag.inline source</string>
891
+ <key>scope</key>
892
+ <string>meta.tag.inline source</string>
893
+ <key>settings</key>
894
+ <dict>
895
+ <key>background</key>
896
+ <string>#803D0033</string>
897
+ </dict>
898
+ </dict>
899
+ <dict>
900
+ <key>name</key>
901
+ <string>✘ Tag Other</string>
902
+ <key>scope</key>
903
+ <string>meta.tag.other, entity.name.tag.style, entity.name.tag.script, meta.tag.block.script, source.js.embedded punctuation.definition.tag.html, source.css.embedded punctuation.definition.tag.html</string>
904
+ <key>settings</key>
905
+ <dict>
906
+ <key>background</key>
907
+ <string>#80000433</string>
908
+ <key>foreground</key>
909
+ <string>#FF0007</string>
910
+ </dict>
911
+ </dict>
912
+ <dict>
913
+ <key>name</key>
914
+ <string>✘ Tag Form</string>
915
+ <key>scope</key>
916
+ <string>meta.tag.form, meta.tag.block.form</string>
917
+ <key>settings</key>
918
+ <dict>
919
+ <key>background</key>
920
+ <string>#00438033</string>
921
+ <key>foreground</key>
922
+ <string>#0086FF</string>
923
+ </dict>
924
+ </dict>
925
+ <dict>
926
+ <key>name</key>
927
+ <string>✘ Tag Meta</string>
928
+ <key>scope</key>
929
+ <string>meta.tag.meta</string>
930
+ <key>settings</key>
931
+ <dict>
932
+ <key>background</key>
933
+ <string>#3C008033</string>
934
+ <key>foreground</key>
935
+ <string>#F800FF</string>
936
+ </dict>
937
+ </dict>
938
+ <dict>
939
+ <key>name</key>
940
+ <string>✘ Tag Block Head</string>
941
+ <key>scope</key>
942
+ <string>meta.section.html.head</string>
943
+ <key>settings</key>
944
+ <dict>
945
+ <key>background</key>
946
+ <string>#121212</string>
947
+ </dict>
948
+ </dict>
949
+ <dict>
950
+ <key>name</key>
951
+ <string>✘ Tag Block Form</string>
952
+ <key>scope</key>
953
+ <string>meta.section.html.form</string>
954
+ <key>settings</key>
955
+ <dict>
956
+ <key>background</key>
957
+ <string>#0043801A</string>
958
+ </dict>
959
+ </dict>
960
+ <dict>
961
+ <key>name</key>
962
+ <string>✘ XML Tag</string>
963
+ <key>scope</key>
964
+ <string>meta.tag.xml</string>
965
+ <key>settings</key>
966
+ <dict>
967
+ <key>foreground</key>
968
+ <string>#666666</string>
969
+ </dict>
970
+ </dict>
971
+ <dict>
972
+ <key>name</key>
973
+ <string>✘ Tag name</string>
974
+ <key>scope</key>
975
+ <string>entity.name.tag</string>
976
+ <key>settings</key>
977
+ <dict>
978
+ <key>foreground</key>
979
+ <string>#FFFFFF4D</string>
980
+ </dict>
981
+ </dict>
982
+ <dict>
983
+ <key>name</key>
984
+ <string>✘ Tag attribute</string>
985
+ <key>scope</key>
986
+ <string>entity.other.attribute-name, meta.tag punctuation.definition.string</string>
987
+ <key>settings</key>
988
+ <dict>
989
+ <key>foreground</key>
990
+ <string>#FFFFFF33</string>
991
+ </dict>
992
+ </dict>
993
+ <dict>
994
+ <key>name</key>
995
+ <string>✘ Tag value</string>
996
+ <key>scope</key>
997
+ <string>meta.tag string -source -punctuation, text source text meta.tag string -punctuation</string>
998
+ <key>settings</key>
999
+ <dict>
1000
+ <key>foreground</key>
1001
+ <string>#FFFFFF66</string>
1002
+ </dict>
1003
+ </dict>
1004
+ <dict>
1005
+ <key>name</key>
1006
+ <string>—————————————————</string>
1007
+ <key>settings</key>
1008
+ <dict/>
1009
+ </dict>
1010
+ <dict>
1011
+ <key>name</key>
1012
+ <string>text meta.paragraph</string>
1013
+ <key>scope</key>
1014
+ <string>text meta.paragraph</string>
1015
+ <key>settings</key>
1016
+ <dict>
1017
+ <key>foreground</key>
1018
+ <string>#999999</string>
1019
+ </dict>
1020
+ </dict>
1021
+ <dict>
1022
+ <key>name</key>
1023
+ <string>M markup</string>
1024
+ <key>scope</key>
1025
+ <string>markup markup -(markup meta.paragraph.list)</string>
1026
+ <key>settings</key>
1027
+ <dict>
1028
+ <key>background</key>
1029
+ <string>#33333333</string>
1030
+ <key>foreground</key>
1031
+ <string>#FFF800</string>
1032
+ </dict>
1033
+ </dict>
1034
+ <dict>
1035
+ <key>name</key>
1036
+ <string>M HR</string>
1037
+ <key>scope</key>
1038
+ <string>markup.hr</string>
1039
+ <key>settings</key>
1040
+ <dict>
1041
+ <key>background</key>
1042
+ <string>#FFFFFF</string>
1043
+ <key>foreground</key>
1044
+ <string>#000000</string>
1045
+ </dict>
1046
+ </dict>
1047
+ <dict>
1048
+ <key>name</key>
1049
+ <string>M heading</string>
1050
+ <key>scope</key>
1051
+ <string>markup.heading</string>
1052
+ <key>settings</key>
1053
+ <dict>
1054
+ <key>fontStyle</key>
1055
+ <string></string>
1056
+ <key>foreground</key>
1057
+ <string>#FFFFFF</string>
1058
+ </dict>
1059
+ </dict>
1060
+ <dict>
1061
+ <key>name</key>
1062
+ <string>M bold</string>
1063
+ <key>scope</key>
1064
+ <string>markup.bold</string>
1065
+ <key>settings</key>
1066
+ <dict>
1067
+ <key>fontStyle</key>
1068
+ <string>bold</string>
1069
+ <key>foreground</key>
1070
+ <string>#95D4FF80</string>
1071
+ </dict>
1072
+ </dict>
1073
+ <dict>
1074
+ <key>name</key>
1075
+ <string>M italic</string>
1076
+ <key>scope</key>
1077
+ <string>markup.italic</string>
1078
+ <key>settings</key>
1079
+ <dict>
1080
+ <key>fontStyle</key>
1081
+ <string>italic</string>
1082
+ </dict>
1083
+ </dict>
1084
+ <dict>
1085
+ <key>name</key>
1086
+ <string>M strike</string>
1087
+ <key>settings</key>
1088
+ <dict/>
1089
+ </dict>
1090
+ <dict>
1091
+ <key>name</key>
1092
+ <string>M add</string>
1093
+ <key>settings</key>
1094
+ <dict/>
1095
+ </dict>
1096
+ <dict>
1097
+ <key>name</key>
1098
+ <string>M del</string>
1099
+ <key>settings</key>
1100
+ <dict/>
1101
+ </dict>
1102
+ <dict>
1103
+ <key>name</key>
1104
+ <string>M underline</string>
1105
+ <key>scope</key>
1106
+ <string>markup.underline</string>
1107
+ <key>settings</key>
1108
+ <dict>
1109
+ <key>fontStyle</key>
1110
+ <string>underline</string>
1111
+ </dict>
1112
+ </dict>
1113
+ <dict>
1114
+ <key>name</key>
1115
+ <string>M reference</string>
1116
+ <key>scope</key>
1117
+ <string>meta.reference, markup.underline.link</string>
1118
+ <key>settings</key>
1119
+ <dict>
1120
+ <key>fontStyle</key>
1121
+ <string></string>
1122
+ <key>foreground</key>
1123
+ <string>#0086FF</string>
1124
+ </dict>
1125
+ </dict>
1126
+ <dict>
1127
+ <key>name</key>
1128
+ <string>M reference name</string>
1129
+ <key>scope</key>
1130
+ <string>entity.name.reference</string>
1131
+ <key>settings</key>
1132
+ <dict>
1133
+ <key>background</key>
1134
+ <string>#00438033</string>
1135
+ <key>foreground</key>
1136
+ <string>#00FFF8</string>
1137
+ </dict>
1138
+ </dict>
1139
+ <dict>
1140
+ <key>name</key>
1141
+ <string>M underline link</string>
1142
+ <key>scope</key>
1143
+ <string>meta.reference.list markup.underline.link, text.html.textile markup.underline.link</string>
1144
+ <key>settings</key>
1145
+ <dict>
1146
+ <key>fontStyle</key>
1147
+ <string>underline</string>
1148
+ <key>foreground</key>
1149
+ <string>#00FFF8</string>
1150
+ </dict>
1151
+ </dict>
1152
+ <dict>
1153
+ <key>name</key>
1154
+ <string>M raw block</string>
1155
+ <key>scope</key>
1156
+ <string>markup.raw.block</string>
1157
+ <key>settings</key>
1158
+ <dict>
1159
+ <key>background</key>
1160
+ <string>#80808040</string>
1161
+ </dict>
1162
+ </dict>
1163
+ <dict>
1164
+ <key>name</key>
1165
+ <string>M quote block</string>
1166
+ <key>scope</key>
1167
+ <string>markup.quote</string>
1168
+ <key>settings</key>
1169
+ <dict>
1170
+ <key>background</key>
1171
+ <string>#FFFFFF1A</string>
1172
+ </dict>
1173
+ </dict>
1174
+ <dict>
1175
+ <key>name</key>
1176
+ <string>M list</string>
1177
+ <key>scope</key>
1178
+ <string>markup.list meta.paragraph</string>
1179
+ <key>settings</key>
1180
+ <dict>
1181
+ <key>fontStyle</key>
1182
+ <string></string>
1183
+ <key>foreground</key>
1184
+ <string>#FFFFFF</string>
1185
+ </dict>
1186
+ </dict>
1187
+ <dict>
1188
+ <key>name</key>
1189
+ <string>—————————————————</string>
1190
+ <key>settings</key>
1191
+ <dict/>
1192
+ </dict>
1193
+ <dict>
1194
+ <key>name</key>
1195
+ <string>Markdown</string>
1196
+ <key>scope</key>
1197
+ <string>text.html.markdown</string>
1198
+ <key>settings</key>
1199
+ <dict>
1200
+ <key>background</key>
1201
+ <string>#FFFFFF</string>
1202
+ <key>foreground</key>
1203
+ <string>#000000</string>
1204
+ </dict>
1205
+ </dict>
1206
+ <dict>
1207
+ <key>name</key>
1208
+ <string>text.html.markdown meta.paragraph</string>
1209
+ <key>scope</key>
1210
+ <string>text.html.markdown meta.paragraph</string>
1211
+ <key>settings</key>
1212
+ <dict>
1213
+ <key>foreground</key>
1214
+ <string>#000000</string>
1215
+ </dict>
1216
+ </dict>
1217
+ <dict>
1218
+ <key>name</key>
1219
+ <string>text.html.markdown markup.list meta.paragraph</string>
1220
+ <key>scope</key>
1221
+ <string>text.html.markdown markup.list meta.paragraph</string>
1222
+ <key>settings</key>
1223
+ <dict>
1224
+ <key>foreground</key>
1225
+ <string>#555555</string>
1226
+ </dict>
1227
+ </dict>
1228
+ <dict>
1229
+ <key>name</key>
1230
+ <string>text.html.markdown markup.heading</string>
1231
+ <key>scope</key>
1232
+ <string>text.html.markdown markup.heading</string>
1233
+ <key>settings</key>
1234
+ <dict>
1235
+ <key>fontStyle</key>
1236
+ <string>bold</string>
1237
+ <key>foreground</key>
1238
+ <string>#000000</string>
1239
+ </dict>
1240
+ </dict>
1241
+ <dict>
1242
+ <key>name</key>
1243
+ <string>text.html.markdown string</string>
1244
+ <key>scope</key>
1245
+ <string>text.html.markdown string</string>
1246
+ <key>settings</key>
1247
+ <dict>
1248
+ <key>foreground</key>
1249
+ <string>#8A5420</string>
1250
+ </dict>
1251
+ </dict>
1252
+ <dict>
1253
+ <key>name</key>
1254
+ <string>—————————————————</string>
1255
+ <key>settings</key>
1256
+ <dict/>
1257
+ </dict>
1258
+ <dict>
1259
+ <key>name</key>
1260
+ <string>§ CSS</string>
1261
+ <key>scope</key>
1262
+ <string>source.css</string>
1263
+ <key>settings</key>
1264
+ <dict/>
1265
+ </dict>
1266
+ <dict>
1267
+ <key>name</key>
1268
+ <string>§ Selector</string>
1269
+ <key>scope</key>
1270
+ <string>meta.selector</string>
1271
+ <key>settings</key>
1272
+ <dict>
1273
+ <key>foreground</key>
1274
+ <string>#666666</string>
1275
+ </dict>
1276
+ </dict>
1277
+ <dict>
1278
+ <key>name</key>
1279
+ <string>Property Value Parens</string>
1280
+ <key>scope</key>
1281
+ <string>source.css meta.scope.property-list meta.property-value punctuation.definition.arguments,
1282
+ source.css meta.scope.property-list meta.property-value punctuation.separator.arguments</string>
1283
+ <key>settings</key>
1284
+ <dict>
1285
+ <key>fontStyle</key>
1286
+ <string></string>
1287
+ <key>foreground</key>
1288
+ <string>#006680</string>
1289
+ </dict>
1290
+ </dict>
1291
+ <dict>
1292
+ <key>name</key>
1293
+ <string>§ Pseudo-Element</string>
1294
+ <key>scope</key>
1295
+ <string>entity.other.attribute-name.pseudo-element</string>
1296
+ <key>settings</key>
1297
+ <dict>
1298
+ <key>foreground</key>
1299
+ <string>#4F00FF</string>
1300
+ </dict>
1301
+ </dict>
1302
+ <dict>
1303
+ <key>name</key>
1304
+ <string>§ Pseudo-Class</string>
1305
+ <key>scope</key>
1306
+ <string>entity.other.attribute-name.pseudo-class, entity.other.attribute-name.tag.pseudo-class</string>
1307
+ <key>settings</key>
1308
+ <dict>
1309
+ <key>foreground</key>
1310
+ <string>#7900FF</string>
1311
+ </dict>
1312
+ </dict>
1313
+ <dict>
1314
+ <key>name</key>
1315
+ <string>§ Class</string>
1316
+ <key>scope</key>
1317
+ <string>meta.selector entity.other.attribute-name.class</string>
1318
+ <key>settings</key>
1319
+ <dict>
1320
+ <key>foreground</key>
1321
+ <string>#F800FF</string>
1322
+ </dict>
1323
+ </dict>
1324
+ <dict>
1325
+ <key>name</key>
1326
+ <string>§ ID</string>
1327
+ <key>scope</key>
1328
+ <string>meta.selector entity.other.attribute-name.id</string>
1329
+ <key>settings</key>
1330
+ <dict>
1331
+ <key>foreground</key>
1332
+ <string>#FF0086</string>
1333
+ </dict>
1334
+ </dict>
1335
+ <dict>
1336
+ <key>name</key>
1337
+ <string>§ Tag</string>
1338
+ <key>scope</key>
1339
+ <string>meta.selector entity.name.tag</string>
1340
+ <key>settings</key>
1341
+ <dict>
1342
+ <key>fontStyle</key>
1343
+ <string></string>
1344
+ <key>foreground</key>
1345
+ <string>#FF0007</string>
1346
+ </dict>
1347
+ </dict>
1348
+ <dict>
1349
+ <key>name</key>
1350
+ <string>§ Tag Wildcard</string>
1351
+ <key>scope</key>
1352
+ <string>entity.name.tag.wildcard, entity.other.attribute-name.universal</string>
1353
+ <key>settings</key>
1354
+ <dict>
1355
+ <key>fontStyle</key>
1356
+ <string>bold</string>
1357
+ <key>foreground</key>
1358
+ <string>#FF7900</string>
1359
+ </dict>
1360
+ </dict>
1361
+ <dict>
1362
+ <key>name</key>
1363
+ <string>§ Attribute</string>
1364
+ <key>scope</key>
1365
+ <string>source.css entity.other.attribute-name.attribute</string>
1366
+ <key>settings</key>
1367
+ <dict>
1368
+ <key>foreground</key>
1369
+ <string>#C25A00</string>
1370
+ </dict>
1371
+ </dict>
1372
+ <dict>
1373
+ <key>name</key>
1374
+ <string>§ Attribute-Match</string>
1375
+ <key>scope</key>
1376
+ <string>source.css meta.attribute-selector keyword.operator.comparison</string>
1377
+ <key>settings</key>
1378
+ <dict>
1379
+ <key>foreground</key>
1380
+ <string>#673000</string>
1381
+ </dict>
1382
+ </dict>
1383
+ <dict>
1384
+ <key>name</key>
1385
+ <string>§ meta.scope.property-list</string>
1386
+ <key>scope</key>
1387
+ <string>meta.scope.property-list</string>
1388
+ <key>settings</key>
1389
+ <dict>
1390
+ <key>fontStyle</key>
1391
+ <string>bold</string>
1392
+ <key>foreground</key>
1393
+ <string>#333333</string>
1394
+ </dict>
1395
+ </dict>
1396
+ <dict>
1397
+ <key>name</key>
1398
+ <string>§ meta.property-name</string>
1399
+ <key>scope</key>
1400
+ <string>meta.property-name</string>
1401
+ <key>settings</key>
1402
+ <dict>
1403
+ <key>fontStyle</key>
1404
+ <string></string>
1405
+ <key>foreground</key>
1406
+ <string>#999999</string>
1407
+ </dict>
1408
+ </dict>
1409
+ <dict>
1410
+ <key>name</key>
1411
+ <string>§ support.type.property-name</string>
1412
+ <key>scope</key>
1413
+ <string>support.type.property-name</string>
1414
+ <key>settings</key>
1415
+ <dict>
1416
+ <key>background</key>
1417
+ <string>#0D0D0D</string>
1418
+ <key>fontStyle</key>
1419
+ <string></string>
1420
+ <key>foreground</key>
1421
+ <string>#FFFFFF</string>
1422
+ </dict>
1423
+ </dict>
1424
+ <dict>
1425
+ <key>name</key>
1426
+ <string>§ meta.property-value</string>
1427
+ <key>scope</key>
1428
+ <string>meta.property-value</string>
1429
+ <key>settings</key>
1430
+ <dict>
1431
+ <key>background</key>
1432
+ <string>#19191980</string>
1433
+ <key>fontStyle</key>
1434
+ <string></string>
1435
+ <key>foreground</key>
1436
+ <string>#999999</string>
1437
+ </dict>
1438
+ </dict>
1439
+ <dict>
1440
+ <key>name</key>
1441
+ <string>—————————————————</string>
1442
+ <key>settings</key>
1443
+ <dict/>
1444
+ </dict>
1445
+ <dict>
1446
+ <key>name</key>
1447
+ <string>LaTeX</string>
1448
+ <key>scope</key>
1449
+ <string>text.latex</string>
1450
+ <key>settings</key>
1451
+ <dict/>
1452
+ </dict>
1453
+ <dict>
1454
+ <key>name</key>
1455
+ <string>L Markup Raw</string>
1456
+ <key>scope</key>
1457
+ <string>text.latex markup.raw</string>
1458
+ <key>settings</key>
1459
+ <dict>
1460
+ <key>background</key>
1461
+ <string>#000000</string>
1462
+ </dict>
1463
+ </dict>
1464
+ <dict>
1465
+ <key>name</key>
1466
+ <string>L support.function</string>
1467
+ <key>scope</key>
1468
+ <string>text.latex support.function -support.function.textit -support.function.emph</string>
1469
+ <key>settings</key>
1470
+ <dict>
1471
+ <key>foreground</key>
1472
+ <string>#BC80FF</string>
1473
+ </dict>
1474
+ </dict>
1475
+ <dict>
1476
+ <key>name</key>
1477
+ <string>L support.function.section</string>
1478
+ <key>scope</key>
1479
+ <string>text.latex support.function.section</string>
1480
+ <key>settings</key>
1481
+ <dict>
1482
+ <key>foreground</key>
1483
+ <string>#FFFFFFBF</string>
1484
+ </dict>
1485
+ </dict>
1486
+ <dict>
1487
+ <key>name</key>
1488
+ <string>L entity.name.section</string>
1489
+ <key>scope</key>
1490
+ <string>text.latex entity.name.section -meta.group -keyword.operator.braces</string>
1491
+ <key>settings</key>
1492
+ <dict>
1493
+ <key>background</key>
1494
+ <string>#FFFFFF</string>
1495
+ <key>fontStyle</key>
1496
+ <string></string>
1497
+ <key>foreground</key>
1498
+ <string>#000000</string>
1499
+ </dict>
1500
+ </dict>
1501
+ <dict>
1502
+ <key>name</key>
1503
+ <string>L constant.language.general</string>
1504
+ <key>scope</key>
1505
+ <string>text.latex constant.language.general</string>
1506
+ <key>settings</key>
1507
+ <dict/>
1508
+ </dict>
1509
+ <dict>
1510
+ <key>name</key>
1511
+ <string>L keyword.operator.delimiter</string>
1512
+ <key>scope</key>
1513
+ <string>text.latex keyword.operator.delimiter</string>
1514
+ <key>settings</key>
1515
+ <dict>
1516
+ <key>background</key>
1517
+ <string>#00000080</string>
1518
+ </dict>
1519
+ </dict>
1520
+ <dict>
1521
+ <key>name</key>
1522
+ <string>L keyword.operator.brackets</string>
1523
+ <key>scope</key>
1524
+ <string>text.latex keyword.operator.brackets</string>
1525
+ <key>settings</key>
1526
+ <dict>
1527
+ <key>foreground</key>
1528
+ <string>#999999</string>
1529
+ </dict>
1530
+ </dict>
1531
+ <dict>
1532
+ <key>name</key>
1533
+ <string>L keyword.operator.braces</string>
1534
+ <key>scope</key>
1535
+ <string>text.latex keyword.operator.braces</string>
1536
+ <key>settings</key>
1537
+ <dict>
1538
+ <key>fontStyle</key>
1539
+ <string></string>
1540
+ <key>foreground</key>
1541
+ <string>#666666</string>
1542
+ </dict>
1543
+ </dict>
1544
+ <dict>
1545
+ <key>name</key>
1546
+ <string>L meta.footnote</string>
1547
+ <key>scope</key>
1548
+ <string>meta.footnote</string>
1549
+ <key>settings</key>
1550
+ <dict>
1551
+ <key>background</key>
1552
+ <string>#00008033</string>
1553
+ <key>foreground</key>
1554
+ <string>#0008FF4D</string>
1555
+ </dict>
1556
+ </dict>
1557
+ <dict>
1558
+ <key>name</key>
1559
+ <string>L meta.label.reference</string>
1560
+ <key>scope</key>
1561
+ <string>text.latex meta.label.reference</string>
1562
+ <key>settings</key>
1563
+ <dict>
1564
+ <key>background</key>
1565
+ <string>#FFFFFF0D</string>
1566
+ <key>fontStyle</key>
1567
+ <string></string>
1568
+ </dict>
1569
+ </dict>
1570
+ <dict>
1571
+ <key>name</key>
1572
+ <string>L keyword.control.ref</string>
1573
+ <key>scope</key>
1574
+ <string>text.latex keyword.control.ref</string>
1575
+ <key>settings</key>
1576
+ <dict>
1577
+ <key>background</key>
1578
+ <string>#260001</string>
1579
+ <key>foreground</key>
1580
+ <string>#FF0007</string>
1581
+ </dict>
1582
+ </dict>
1583
+ <dict>
1584
+ <key>name</key>
1585
+ <string>L variable.parameter.label.reference</string>
1586
+ <key>scope</key>
1587
+ <string>text.latex variable.parameter.label.reference</string>
1588
+ <key>settings</key>
1589
+ <dict>
1590
+ <key>background</key>
1591
+ <string>#400002</string>
1592
+ <key>foreground</key>
1593
+ <string>#FFBC80</string>
1594
+ </dict>
1595
+ </dict>
1596
+ <dict>
1597
+ <key>name</key>
1598
+ <string>L keyword.control.cite</string>
1599
+ <key>scope</key>
1600
+ <string>text.latex keyword.control.cite</string>
1601
+ <key>settings</key>
1602
+ <dict>
1603
+ <key>background</key>
1604
+ <string>#260014</string>
1605
+ <key>foreground</key>
1606
+ <string>#FF0086</string>
1607
+ </dict>
1608
+ </dict>
1609
+ <dict>
1610
+ <key>name</key>
1611
+ <string>L variable.parameter.cite</string>
1612
+ <key>scope</key>
1613
+ <string>variable.parameter.cite</string>
1614
+ <key>settings</key>
1615
+ <dict>
1616
+ <key>background</key>
1617
+ <string>#400022</string>
1618
+ <key>foreground</key>
1619
+ <string>#FFBFE1</string>
1620
+ </dict>
1621
+ </dict>
1622
+ <dict>
1623
+ <key>name</key>
1624
+ <string>L variable.parameter.label</string>
1625
+ <key>scope</key>
1626
+ <string>text.latex variable.parameter.label</string>
1627
+ <key>settings</key>
1628
+ <dict>
1629
+ <key>foreground</key>
1630
+ <string>#FFFFFF80</string>
1631
+ </dict>
1632
+ </dict>
1633
+ <dict>
1634
+ <key>name</key>
1635
+ <string>L markup</string>
1636
+ <key>scope</key>
1637
+ <string>meta.function markup</string>
1638
+ <key>settings</key>
1639
+ <dict>
1640
+ <key>foreground</key>
1641
+ <string>#CDCDCD</string>
1642
+ </dict>
1643
+ </dict>
1644
+ <dict>
1645
+ <key>name</key>
1646
+ <string>L meta.group.braces</string>
1647
+ <key>scope</key>
1648
+ <string>text.latex meta.group.braces</string>
1649
+ <key>settings</key>
1650
+ <dict>
1651
+ <key>foreground</key>
1652
+ <string>#33333333</string>
1653
+ </dict>
1654
+ </dict>
1655
+ <dict>
1656
+ <key>name</key>
1657
+ <string>L meta.environment.list</string>
1658
+ <key>scope</key>
1659
+ <string>text.latex meta.environment.list</string>
1660
+ <key>settings</key>
1661
+ <dict>
1662
+ <key>background</key>
1663
+ <string>#00000080</string>
1664
+ <key>fontStyle</key>
1665
+ <string></string>
1666
+ <key>foreground</key>
1667
+ <string>#33333333</string>
1668
+ </dict>
1669
+ </dict>
1670
+ <dict>
1671
+ <key>name</key>
1672
+ <string>L meta.environment.list 2</string>
1673
+ <key>scope</key>
1674
+ <string>text.latex meta.environment.list meta.environment.list </string>
1675
+ <key>settings</key>
1676
+ <dict>
1677
+ <key>background</key>
1678
+ <string>#00000080</string>
1679
+ <key>foreground</key>
1680
+ <string>#33333333</string>
1681
+ </dict>
1682
+ </dict>
1683
+ <dict>
1684
+ <key>name</key>
1685
+ <string>L meta.environment.list 3</string>
1686
+ <key>scope</key>
1687
+ <string>text.latex meta.environment.list meta.environment.list meta.environment.list </string>
1688
+ <key>settings</key>
1689
+ <dict>
1690
+ <key>background</key>
1691
+ <string>#000000</string>
1692
+ <key>foreground</key>
1693
+ <string>#33333333</string>
1694
+ </dict>
1695
+ </dict>
1696
+ <dict>
1697
+ <key>name</key>
1698
+ <string>L meta.environment.list 4</string>
1699
+ <key>scope</key>
1700
+ <string>text.latex meta.environment.list meta.environment.list meta.environment.list meta.environment.list </string>
1701
+ <key>settings</key>
1702
+ <dict>
1703
+ <key>foreground</key>
1704
+ <string>#33333333</string>
1705
+ </dict>
1706
+ </dict>
1707
+ <dict>
1708
+ <key>name</key>
1709
+ <string>L meta.environment.list 5</string>
1710
+ <key>scope</key>
1711
+ <string>text.latex meta.environment.list meta.environment.list meta.environment.list meta.environment.list meta.environment.list </string>
1712
+ <key>settings</key>
1713
+ <dict>
1714
+ <key>foreground</key>
1715
+ <string>#33333333</string>
1716
+ </dict>
1717
+ </dict>
1718
+ <dict>
1719
+ <key>name</key>
1720
+ <string>L meta.environment.list 6</string>
1721
+ <key>scope</key>
1722
+ <string>text.latex meta.environment.list meta.environment.list meta.environment.list meta.environment.list meta.environment.list meta.environment.list </string>
1723
+ <key>settings</key>
1724
+ <dict>
1725
+ <key>foreground</key>
1726
+ <string>#33333333</string>
1727
+ </dict>
1728
+ </dict>
1729
+ <dict>
1730
+ <key>name</key>
1731
+ <string>L meta.end-document</string>
1732
+ <key>scope</key>
1733
+ <string>text.latex meta.end-document, text.latex meta.begin-document, meta.end-document.latex support.function, meta.end-document.latex variable.parameter, meta.begin-document.latex support.function, meta.begin-document.latex variable.parameter</string>
1734
+ <key>settings</key>
1735
+ <dict>
1736
+ <key>background</key>
1737
+ <string>#CCCCCC</string>
1738
+ <key>foreground</key>
1739
+ <string>#000000</string>
1740
+ </dict>
1741
+ </dict>
1742
+ <dict>
1743
+ <key>name</key>
1744
+ <string>—————————————————</string>
1745
+ <key>settings</key>
1746
+ <dict/>
1747
+ </dict>
1748
+ <dict>
1749
+ <key>name</key>
1750
+ <string>meta.brace.erb.return-value</string>
1751
+ <key>scope</key>
1752
+ <string>meta.brace.erb.return-value</string>
1753
+ <key>settings</key>
1754
+ <dict>
1755
+ <key>background</key>
1756
+ <string>#00805533</string>
1757
+ <key>foreground</key>
1758
+ <string>#00FFAA</string>
1759
+ </dict>
1760
+ </dict>
1761
+ <dict>
1762
+ <key>name</key>
1763
+ <string>source.ruby.rails.embedded.return-value.one-line</string>
1764
+ <key>scope</key>
1765
+ <string>source.ruby.rails.embedded.return-value.one-line</string>
1766
+ <key>settings</key>
1767
+ <dict>
1768
+ <key>background</key>
1769
+ <string>#8080801A</string>
1770
+ </dict>
1771
+ </dict>
1772
+ <dict>
1773
+ <key>name</key>
1774
+ <string>meta.brace.erb</string>
1775
+ <key>scope</key>
1776
+ <string>punctuation.section.embedded -(source string source punctuation.section.embedded), meta.brace.erb.html</string>
1777
+ <key>settings</key>
1778
+ <dict>
1779
+ <key>background</key>
1780
+ <string>#00FFF81A</string>
1781
+ <key>foreground</key>
1782
+ <string>#00FFF8</string>
1783
+ </dict>
1784
+ </dict>
1785
+ <dict>
1786
+ <key>name</key>
1787
+ <string>source.ruby.rails.embedded.one-line</string>
1788
+ <key>scope</key>
1789
+ <string>source.ruby.rails.embedded.one-line</string>
1790
+ <key>settings</key>
1791
+ <dict>
1792
+ <key>background</key>
1793
+ <string>#00FFF81A</string>
1794
+ </dict>
1795
+ </dict>
1796
+ <dict>
1797
+ <key>name</key>
1798
+ <string>String Embedded Source</string>
1799
+ <key>scope</key>
1800
+ <string>source string source punctuation.section.embedded</string>
1801
+ <key>settings</key>
1802
+ <dict>
1803
+ <key>foreground</key>
1804
+ <string>#406180</string>
1805
+ </dict>
1806
+ </dict>
1807
+ <dict>
1808
+ <key>name</key>
1809
+ <string>source.js.embedded</string>
1810
+ <key>scope</key>
1811
+ <string>source.js.embedded</string>
1812
+ <key>settings</key>
1813
+ <dict>
1814
+ <key>background</key>
1815
+ <string>#0D0D0D</string>
1816
+ </dict>
1817
+ </dict>
1818
+ <dict>
1819
+ <key>name</key>
1820
+ <string>◊ Source</string>
1821
+ <key>scope</key>
1822
+ <string>source</string>
1823
+ <key>settings</key>
1824
+ <dict>
1825
+ <key>fontStyle</key>
1826
+ <string></string>
1827
+ </dict>
1828
+ </dict>
1829
+ <dict>
1830
+ <key>name</key>
1831
+ <string>◊ meta.brace.erb</string>
1832
+ <key>scope</key>
1833
+ <string>meta.brace.erb</string>
1834
+ <key>settings</key>
1835
+ <dict>
1836
+ <key>background</key>
1837
+ <string>#000000</string>
1838
+ </dict>
1839
+ </dict>
1840
+ <dict>
1841
+ <key>name</key>
1842
+ <string>◊ Source String Source</string>
1843
+ <key>scope</key>
1844
+ <string>source string source</string>
1845
+ <key>settings</key>
1846
+ <dict>
1847
+ <key>background</key>
1848
+ <string>#33333380</string>
1849
+ <key>foreground</key>
1850
+ <string>#FFFFFF</string>
1851
+ </dict>
1852
+ </dict>
1853
+ <dict>
1854
+ <key>name</key>
1855
+ <string>◊ Source String Interpolated Source</string>
1856
+ <key>scope</key>
1857
+ <string>source string.interpolated source</string>
1858
+ <key>settings</key>
1859
+ <dict>
1860
+ <key>background</key>
1861
+ <string>#00000099</string>
1862
+ <key>foreground</key>
1863
+ <string>#999999</string>
1864
+ </dict>
1865
+ </dict>
1866
+ <dict>
1867
+ <key>name</key>
1868
+ <string>◊ Source Embeded Source</string>
1869
+ <key>scope</key>
1870
+ <string>source source, source.java.embedded</string>
1871
+ <key>settings</key>
1872
+ <dict>
1873
+ <key>background</key>
1874
+ <string>#3333331A</string>
1875
+ </dict>
1876
+ </dict>
1877
+ <dict>
1878
+ <key>name</key>
1879
+ <string>◊ Text</string>
1880
+ <key>scope</key>
1881
+ <string>text -text.xml.strict</string>
1882
+ <key>settings</key>
1883
+ <dict>
1884
+ <key>foreground</key>
1885
+ <string>#FFFFFF</string>
1886
+ </dict>
1887
+ </dict>
1888
+ <dict>
1889
+ <key>name</key>
1890
+ <string>◊ Text Source</string>
1891
+ <key>scope</key>
1892
+ <string>text source, meta.scope.django.template</string>
1893
+ <key>settings</key>
1894
+ <dict>
1895
+ <key>background</key>
1896
+ <string>#000000</string>
1897
+ <key>foreground</key>
1898
+ <string>#CCCCCC</string>
1899
+ </dict>
1900
+ </dict>
1901
+ <dict>
1902
+ <key>name</key>
1903
+ <string>◊ Text Source Text String</string>
1904
+ <key>settings</key>
1905
+ <dict/>
1906
+ </dict>
1907
+ <dict>
1908
+ <key>name</key>
1909
+ <string>◊ Text String Source</string>
1910
+ <key>scope</key>
1911
+ <string>text string source</string>
1912
+ <key>settings</key>
1913
+ <dict>
1914
+ <key>foreground</key>
1915
+ <string>#999999</string>
1916
+ </dict>
1917
+ </dict>
1918
+ <dict>
1919
+ <key>name</key>
1920
+ <string>◊ Text Source String Source</string>
1921
+ <key>settings</key>
1922
+ <dict/>
1923
+ </dict>
1924
+ <dict>
1925
+ <key>name</key>
1926
+ <string>◊ Text String Source String Source</string>
1927
+ <key>scope</key>
1928
+ <string>text string source string source</string>
1929
+ <key>settings</key>
1930
+ <dict/>
1931
+ </dict>
1932
+ <dict>
1933
+ <key>name</key>
1934
+ <string>—————————————————</string>
1935
+ <key>settings</key>
1936
+ <dict/>
1937
+ </dict>
1938
+ <dict>
1939
+ <key>name</key>
1940
+ <string>Invalid</string>
1941
+ <key>scope</key>
1942
+ <string>invalid -invalid.SOMETHING</string>
1943
+ <key>settings</key>
1944
+ <dict>
1945
+ <key>background</key>
1946
+ <string>#FF0007</string>
1947
+ <key>fontStyle</key>
1948
+ <string>bold</string>
1949
+ <key>foreground</key>
1950
+ <string>#330004</string>
1951
+ </dict>
1952
+ </dict>
1953
+ <dict>
1954
+ <key>name</key>
1955
+ <string>Invalid Value</string>
1956
+ <key>scope</key>
1957
+ <string>invalid.SOMETHING</string>
1958
+ <key>settings</key>
1959
+ <dict>
1960
+ <key>fontStyle</key>
1961
+ <string>underline</string>
1962
+ <key>foreground</key>
1963
+ <string>#FF3600</string>
1964
+ </dict>
1965
+ </dict>
1966
+ <dict>
1967
+ <key>name</key>
1968
+ <string>Syntax</string>
1969
+ <key>scope</key>
1970
+ <string>meta.syntax</string>
1971
+ <key>settings</key>
1972
+ <dict>
1973
+ <key>foreground</key>
1974
+ <string>#333333</string>
1975
+ </dict>
1976
+ </dict>
1977
+ <dict>
1978
+ <key>name</key>
1979
+ <string>comment</string>
1980
+ <key>scope</key>
1981
+ <string>comment -comment.line</string>
1982
+ <key>settings</key>
1983
+ <dict>
1984
+ <key>background</key>
1985
+ <string>#33333333</string>
1986
+ <key>foreground</key>
1987
+ <string>#4C4C4C</string>
1988
+ </dict>
1989
+ </dict>
1990
+ <dict>
1991
+ <key>name</key>
1992
+ <string>comment.line</string>
1993
+ <key>scope</key>
1994
+ <string>comment.line</string>
1995
+ <key>settings</key>
1996
+ <dict>
1997
+ <key>fontStyle</key>
1998
+ <string>italic</string>
1999
+ <key>foreground</key>
2000
+ <string>#4C4C4C</string>
2001
+ </dict>
2002
+ </dict>
2003
+ <dict>
2004
+ <key>name</key>
2005
+ <string>Comment Punctuation</string>
2006
+ <key>scope</key>
2007
+ <string>comment punctuation</string>
2008
+ <key>settings</key>
2009
+ <dict/>
2010
+ </dict>
2011
+ <dict>
2012
+ <key>name</key>
2013
+ <string>✘ HTML Comment</string>
2014
+ <key>scope</key>
2015
+ <string>text comment.block -source</string>
2016
+ <key>settings</key>
2017
+ <dict>
2018
+ <key>fontStyle</key>
2019
+ <string>italic</string>
2020
+ </dict>
2021
+ </dict>
2022
+ <dict>
2023
+ <key>name</key>
2024
+ <string>—————————————————</string>
2025
+ <key>settings</key>
2026
+ <dict/>
2027
+ </dict>
2028
+ <dict>
2029
+ <key>name</key>
2030
+ <string>D Diff Add</string>
2031
+ <key>scope</key>
2032
+ <string>markup.inserted</string>
2033
+ <key>settings</key>
2034
+ <dict>
2035
+ <key>background</key>
2036
+ <string>#00401E</string>
2037
+ <key>foreground</key>
2038
+ <string>#40FF9A</string>
2039
+ </dict>
2040
+ </dict>
2041
+ <dict>
2042
+ <key>name</key>
2043
+ <string>D Diff Delete</string>
2044
+ <key>scope</key>
2045
+ <string>markup.deleted</string>
2046
+ <key>settings</key>
2047
+ <dict>
2048
+ <key>background</key>
2049
+ <string>#400022</string>
2050
+ <key>foreground</key>
2051
+ <string>#FF40A3</string>
2052
+ </dict>
2053
+ </dict>
2054
+ <dict>
2055
+ <key>name</key>
2056
+ <string>D Diff Changed</string>
2057
+ <key>scope</key>
2058
+ <string>markup.changed</string>
2059
+ <key>settings</key>
2060
+ <dict>
2061
+ <key>background</key>
2062
+ <string>#803D00</string>
2063
+ <key>foreground</key>
2064
+ <string>#FFFF55</string>
2065
+ </dict>
2066
+ </dict>
2067
+ <dict>
2068
+ <key>name</key>
2069
+ <string>text.subversion-commit meta.scope.changed-files</string>
2070
+ <key>scope</key>
2071
+ <string>text.subversion-commit meta.scope.changed-files, text.subversion-commit meta.scope.changed-files.svn meta.diff.separator</string>
2072
+ <key>settings</key>
2073
+ <dict>
2074
+ <key>background</key>
2075
+ <string>#000000</string>
2076
+ <key>foreground</key>
2077
+ <string>#FFFFFF</string>
2078
+ </dict>
2079
+ </dict>
2080
+ <dict>
2081
+ <key>name</key>
2082
+ <string>text.subversion-commit</string>
2083
+ <key>scope</key>
2084
+ <string>text.subversion-commit</string>
2085
+ <key>settings</key>
2086
+ <dict>
2087
+ <key>background</key>
2088
+ <string>#FFFFFF</string>
2089
+ <key>foreground</key>
2090
+ <string>#000000</string>
2091
+ </dict>
2092
+ </dict>
2093
+ <dict>
2094
+ <key>name</key>
2095
+ <string>—————————————————</string>
2096
+ <key>settings</key>
2097
+ <dict/>
2098
+ </dict>
2099
+ <dict>
2100
+ <key>name</key>
2101
+ <string>meta.delimiter</string>
2102
+ <key>scope</key>
2103
+ <string>punctuation.terminator, meta.delimiter, punctuation.separator.method</string>
2104
+ <key>settings</key>
2105
+ <dict>
2106
+ <key>background</key>
2107
+ <string>#FFFFFF03</string>
2108
+ <key>fontStyle</key>
2109
+ <string>bold</string>
2110
+ <key>foreground</key>
2111
+ <string>#7F7F7F</string>
2112
+ </dict>
2113
+ </dict>
2114
+ <dict>
2115
+ <key>name</key>
2116
+ <string>meta.delimiter.statement.js</string>
2117
+ <key>scope</key>
2118
+ <string>punctuation.terminator.statement, meta.delimiter.statement.js</string>
2119
+ <key>settings</key>
2120
+ <dict>
2121
+ <key>background</key>
2122
+ <string>#00000080</string>
2123
+ </dict>
2124
+ </dict>
2125
+ <dict>
2126
+ <key>name</key>
2127
+ <string>meta.delimiter.object.js</string>
2128
+ <key>scope</key>
2129
+ <string>meta.delimiter.object.js</string>
2130
+ <key>settings</key>
2131
+ <dict>
2132
+ <key>background</key>
2133
+ <string>#00000040</string>
2134
+ </dict>
2135
+ </dict>
2136
+ <dict>
2137
+ <key>name</key>
2138
+ <string>Bold String Quotes</string>
2139
+ <key>scope</key>
2140
+ <string>string.quoted.single.brace, string.quoted.double.brace</string>
2141
+ <key>settings</key>
2142
+ <dict>
2143
+ <key>fontStyle</key>
2144
+ <string>bold</string>
2145
+ <key>foreground</key>
2146
+ <string>#803D00</string>
2147
+ </dict>
2148
+ </dict>
2149
+ <dict>
2150
+ <key>name</key>
2151
+ <string>—————————————————</string>
2152
+ <key>settings</key>
2153
+ <dict/>
2154
+ </dict>
2155
+ <dict>
2156
+ <key>name</key>
2157
+ <string>ß Blog Post / Email Message</string>
2158
+ <key>scope</key>
2159
+ <string>text.blog, text.mail</string>
2160
+ <key>settings</key>
2161
+ <dict>
2162
+ <key>background</key>
2163
+ <string>#DCDCDC</string>
2164
+ <key>foreground</key>
2165
+ <string>#333333</string>
2166
+ </dict>
2167
+ </dict>
2168
+ <dict>
2169
+ <key>name</key>
2170
+ <string>ß Post Content</string>
2171
+ <key>scope</key>
2172
+ <string>text.blog text, text.mail text</string>
2173
+ <key>settings</key>
2174
+ <dict>
2175
+ <key>background</key>
2176
+ <string>#000000</string>
2177
+ <key>foreground</key>
2178
+ <string>#CCCCCC</string>
2179
+ </dict>
2180
+ </dict>
2181
+ <dict>
2182
+ <key>name</key>
2183
+ <string>ß Post Header Keys</string>
2184
+ <key>scope</key>
2185
+ <string>meta.header.blog keyword.other, meta.header.mail keyword.other</string>
2186
+ <key>settings</key>
2187
+ <dict>
2188
+ <key>background</key>
2189
+ <string>#00FFF81A</string>
2190
+ <key>fontStyle</key>
2191
+ <string></string>
2192
+ <key>foreground</key>
2193
+ <string>#06403E</string>
2194
+ </dict>
2195
+ </dict>
2196
+ <dict>
2197
+ <key>name</key>
2198
+ <string>ß Post Header Values</string>
2199
+ <key>scope</key>
2200
+ <string>meta.header.blog string.unquoted.blog, meta.header.mail string.unquoted</string>
2201
+ <key>settings</key>
2202
+ <dict>
2203
+ <key>background</key>
2204
+ <string>#FFFF551A</string>
2205
+ <key>foreground</key>
2206
+ <string>#803D00</string>
2207
+ </dict>
2208
+ </dict>
2209
+ <dict>
2210
+ <key>name</key>
2211
+ <string>—————————————————</string>
2212
+ <key>settings</key>
2213
+ <dict/>
2214
+ </dict>
2215
+ <dict>
2216
+ <key>name</key>
2217
+ <string>OCAML</string>
2218
+ <key>settings</key>
2219
+ <dict/>
2220
+ </dict>
2221
+ <dict>
2222
+ <key>name</key>
2223
+ <string>entity.name.type.module</string>
2224
+ <key>scope</key>
2225
+ <string>source.ocaml entity.name.type.module</string>
2226
+ <key>settings</key>
2227
+ <dict>
2228
+ <key>foreground</key>
2229
+ <string>#FF0000</string>
2230
+ </dict>
2231
+ </dict>
2232
+ <dict>
2233
+ <key>name</key>
2234
+ <string>support.other.module</string>
2235
+ <key>scope</key>
2236
+ <string>source.ocaml support.other.module</string>
2237
+ <key>settings</key>
2238
+ <dict>
2239
+ <key>background</key>
2240
+ <string>#83000033</string>
2241
+ <key>foreground</key>
2242
+ <string>#FF0000</string>
2243
+ </dict>
2244
+ </dict>
2245
+ <dict>
2246
+ <key>name</key>
2247
+ <string>entity.name.type.variant</string>
2248
+ <key>scope</key>
2249
+ <string>entity.name.type.variant</string>
2250
+ <key>settings</key>
2251
+ <dict>
2252
+ <key>foreground</key>
2253
+ <string>#00FFF8</string>
2254
+ </dict>
2255
+ </dict>
2256
+ <dict>
2257
+ <key>name</key>
2258
+ <string>entity.name.tag, meta.record.definition</string>
2259
+ <key>scope</key>
2260
+ <string>source.ocaml entity.name.tag, source.ocaml meta.record.definition</string>
2261
+ <key>settings</key>
2262
+ <dict>
2263
+ <key>foreground</key>
2264
+ <string>#00FF79</string>
2265
+ </dict>
2266
+ </dict>
2267
+ <dict>
2268
+ <key>name</key>
2269
+ <string>———————— PUNCTUATION ————————</string>
2270
+ <key>settings</key>
2271
+ <dict/>
2272
+ </dict>
2273
+ <dict>
2274
+ <key>name</key>
2275
+ <string>punctuation.separator.parameters</string>
2276
+ <key>scope</key>
2277
+ <string>punctuation.separator.parameters</string>
2278
+ <key>settings</key>
2279
+ <dict>
2280
+ <key>fontStyle</key>
2281
+ <string>bold</string>
2282
+ <key>foreground</key>
2283
+ <string>#FFFFFF</string>
2284
+ </dict>
2285
+ </dict>
2286
+ <dict>
2287
+ <key>name</key>
2288
+ <string>meta.brace.pipe</string>
2289
+ <key>scope</key>
2290
+ <string>meta.brace.pipe</string>
2291
+ <key>settings</key>
2292
+ <dict>
2293
+ <key>background</key>
2294
+ <string>#33333333</string>
2295
+ <key>fontStyle</key>
2296
+ <string></string>
2297
+ <key>foreground</key>
2298
+ <string>#4C4C4C</string>
2299
+ </dict>
2300
+ </dict>
2301
+ <dict>
2302
+ <key>name</key>
2303
+ <string>Misc Punctuation</string>
2304
+ <key>scope</key>
2305
+ <string>meta.brace.erb, source.ruby.embedded.source.brace, punctuation.section.dictionary, punctuation.terminator.dictionary, punctuation.separator.object, punctuation.separator.statement, punctuation.separator.key-value.css</string>
2306
+ <key>settings</key>
2307
+ <dict>
2308
+ <key>fontStyle</key>
2309
+ <string>bold</string>
2310
+ <key>foreground</key>
2311
+ <string>#666666</string>
2312
+ </dict>
2313
+ </dict>
2314
+ <dict>
2315
+ <key>name</key>
2316
+ <string>Curly Punctuation</string>
2317
+ <key>scope</key>
2318
+ <string>punctuation.section.scope.curly, punctuation.section.scope</string>
2319
+ <key>settings</key>
2320
+ <dict>
2321
+ <key>fontStyle</key>
2322
+ <string>bold</string>
2323
+ <key>foreground</key>
2324
+ <string>#999999</string>
2325
+ </dict>
2326
+ </dict>
2327
+ <dict>
2328
+ <key>name</key>
2329
+ <string>Object Punctuation</string>
2330
+ <key>scope</key>
2331
+ <string>punctuation.separator.objects,
2332
+ meta.group.braces.curly meta.delimiter.object.comma,
2333
+ punctuation.separator.key-value -meta.tag,
2334
+ source.ocaml punctuation.separator.match-definition
2335
+ </string>
2336
+ <key>settings</key>
2337
+ <dict>
2338
+ <key>fontStyle</key>
2339
+ <string>bold</string>
2340
+ <key>foreground</key>
2341
+ <string>#0C823B</string>
2342
+ </dict>
2343
+ </dict>
2344
+ <dict>
2345
+ <key>name</key>
2346
+ <string>Function Punctuation</string>
2347
+ <key>scope</key>
2348
+ <string>punctuation.separator.parameters.function.js,punctuation.definition.function, punctuation.separator.function-return, punctuation.separator.function-definition, punctuation.definition.arguments, punctuation.separator.arguments</string>
2349
+ <key>settings</key>
2350
+ <dict>
2351
+ <key>foreground</key>
2352
+ <string>#800043</string>
2353
+ </dict>
2354
+ </dict>
2355
+ <dict>
2356
+ <key>name</key>
2357
+ <string>Array Punctuation</string>
2358
+ <key>scope</key>
2359
+ <string>meta.group.braces.square punctuation.section.scope, meta.group.braces.square meta.delimiter.object.comma, meta.brace.square, punctuation.separator.array, punctuation.section.array, punctuation.definition.array, punctuation.definition.constant.range</string>
2360
+ <key>settings</key>
2361
+ <dict>
2362
+ <key>background</key>
2363
+ <string>#803D001A</string>
2364
+ <key>fontStyle</key>
2365
+ <string>bold</string>
2366
+ <key>foreground</key>
2367
+ <string>#7F5E40</string>
2368
+ </dict>
2369
+ </dict>
2370
+ <dict>
2371
+ <key>name</key>
2372
+ <string>Array, Range</string>
2373
+ <key>scope</key>
2374
+ <string>meta.structure.array -punctuation.definition.array, meta.definition.range -punctuation.definition.constant.range</string>
2375
+ <key>settings</key>
2376
+ <dict>
2377
+ <key>background</key>
2378
+ <string>#803D001A</string>
2379
+ </dict>
2380
+ </dict>
2381
+ <dict>
2382
+ <key>name</key>
2383
+ <string>meta.brace.curly meta.group</string>
2384
+ <key>scope</key>
2385
+ <string>meta.brace.curly meta.group.css</string>
2386
+ <key>settings</key>
2387
+ <dict>
2388
+ <key>background</key>
2389
+ <string>#00000080</string>
2390
+ <key>fontStyle</key>
2391
+ <string></string>
2392
+ </dict>
2393
+ </dict>
2394
+ <dict>
2395
+ <key>name</key>
2396
+ <string>º meta.source.embedded</string>
2397
+ <key>scope</key>
2398
+ <string>meta.source.embedded, entity.other.django.tagbraces</string>
2399
+ <key>settings</key>
2400
+ <dict>
2401
+ <key>background</key>
2402
+ <string>#00000080</string>
2403
+ <key>foreground</key>
2404
+ <string>#666666</string>
2405
+ </dict>
2406
+ </dict>
2407
+ <dict>
2408
+ <key>name</key>
2409
+ <string>º meta.group.braces.round JS</string>
2410
+ <key>scope</key>
2411
+ <string>source.js meta.group.braces.round, meta.scope.heredoc</string>
2412
+ <key>settings</key>
2413
+ <dict/>
2414
+ </dict>
2415
+ <dict>
2416
+ <key>name</key>
2417
+ <string>º Even</string>
2418
+ <key>scope</key>
2419
+ <string>source.ruby meta.even-tab, source.ruby meta.even-tab.group2, source.ruby meta.even-tab.group4, source.ruby meta.even-tab.group6, source.ruby meta.even-tab.group8, source.ruby meta.even-tab.group10, source.ruby meta.even-tab.group12
2420
+ </string>
2421
+ <key>settings</key>
2422
+ <dict>
2423
+ <key>background</key>
2424
+ <string>#00000080</string>
2425
+ </dict>
2426
+ </dict>
2427
+ <dict>
2428
+ <key>name</key>
2429
+ <string>º meta.block.slate </string>
2430
+ <key>scope</key>
2431
+ <string>meta.block.slate</string>
2432
+ <key>settings</key>
2433
+ <dict>
2434
+ <key>foreground</key>
2435
+ <string>#666666</string>
2436
+ </dict>
2437
+ </dict>
2438
+ <dict>
2439
+ <key>name</key>
2440
+ <string>º meta.block.content.slate </string>
2441
+ <key>scope</key>
2442
+ <string>meta.block.content.slate </string>
2443
+ <key>settings</key>
2444
+ <dict>
2445
+ <key>foreground</key>
2446
+ <string>#CCCCCC</string>
2447
+ </dict>
2448
+ </dict>
2449
+ <dict>
2450
+ <key>name</key>
2451
+ <string>Function Group1</string>
2452
+ <key>scope</key>
2453
+ <string>meta.function meta.group.braces.curly.function -(meta.group meta.group), meta.function meta.odd-tab.group1</string>
2454
+ <key>settings</key>
2455
+ <dict/>
2456
+ </dict>
2457
+ <dict>
2458
+ <key>name</key>
2459
+ <string>Group1</string>
2460
+ <key>scope</key>
2461
+ <string>meta.odd-tab.group1, meta.group.braces, meta.block.slate, text.xml.strict meta.tag, meta.paren-group, meta.section</string>
2462
+ <key>settings</key>
2463
+ <dict>
2464
+ <key>background</key>
2465
+ <string>#0A0A0A</string>
2466
+ </dict>
2467
+ </dict>
2468
+ <dict>
2469
+ <key>name</key>
2470
+ <string>Group2</string>
2471
+ <key>scope</key>
2472
+ <string>meta.even-tab.group2, meta.group.braces meta.group.braces, meta.block.slate meta.block.slate, text.xml.strict meta.tag meta.tag, meta.group.braces meta.group.braces, meta.paren-group meta.paren-group, meta.section meta.section</string>
2473
+ <key>settings</key>
2474
+ <dict>
2475
+ <key>background</key>
2476
+ <string>#0E0E0E</string>
2477
+ </dict>
2478
+ </dict>
2479
+ <dict>
2480
+ <key>name</key>
2481
+ <string>Group3</string>
2482
+ <key>scope</key>
2483
+ <string>meta.odd-tab.group3, meta.group.braces meta.group.braces meta.group.braces , meta.block.slate meta.block.slate meta.block.slate , text.xml.strict meta.tag meta.tag meta.tag, meta.group.braces meta.group.braces meta.group.braces, meta.paren-group meta.paren-group meta.paren-group, meta.section meta.section meta.section</string>
2484
+ <key>settings</key>
2485
+ <dict>
2486
+ <key>background</key>
2487
+ <string>#111111</string>
2488
+ </dict>
2489
+ </dict>
2490
+ <dict>
2491
+ <key>name</key>
2492
+ <string>Group4</string>
2493
+ <key>scope</key>
2494
+ <string>meta.even-tab.group4, meta.group.braces meta.group.braces meta.group.braces meta.group.braces , meta.block.slate meta.block.slate meta.block.slate meta.block.slate , text.xml.strict meta.tag meta.tag meta.tag meta.tag, meta.group.braces meta.group.braces meta.group.braces meta.group.braces, meta.paren-group meta.paren-group meta.paren-group meta.paren-group, meta.section meta.section meta.section meta.section</string>
2495
+ <key>settings</key>
2496
+ <dict>
2497
+ <key>background</key>
2498
+ <string>#151515</string>
2499
+ </dict>
2500
+ </dict>
2501
+ <dict>
2502
+ <key>name</key>
2503
+ <string>Group5</string>
2504
+ <key>scope</key>
2505
+ <string>meta.odd-tab.group5, meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces , meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate , text.xml.strict meta.tag meta.tag meta.tag meta.tag meta.tag, meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces, meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group, meta.section meta.section meta.section meta.section meta.section</string>
2506
+ <key>settings</key>
2507
+ <dict>
2508
+ <key>background</key>
2509
+ <string>#191919</string>
2510
+ </dict>
2511
+ </dict>
2512
+ <dict>
2513
+ <key>name</key>
2514
+ <string>Group6</string>
2515
+ <key>scope</key>
2516
+ <string>meta.even-tab.group6, meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces , meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate , text.xml.strict meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag, meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces, meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group, meta.section meta.section meta.section meta.section meta.section meta.section</string>
2517
+ <key>settings</key>
2518
+ <dict>
2519
+ <key>background</key>
2520
+ <string>#1C1C1C</string>
2521
+ </dict>
2522
+ </dict>
2523
+ <dict>
2524
+ <key>name</key>
2525
+ <string>Group7</string>
2526
+ <key>scope</key>
2527
+ <string>meta.odd-tab.group7, meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces , meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate , text.xml.strict meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag, meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces, meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group, meta.section meta.section meta.section meta.section meta.section meta.section meta.section</string>
2528
+ <key>settings</key>
2529
+ <dict>
2530
+ <key>background</key>
2531
+ <string>#1F1F1F</string>
2532
+ </dict>
2533
+ </dict>
2534
+ <dict>
2535
+ <key>name</key>
2536
+ <string>Group8</string>
2537
+ <key>scope</key>
2538
+ <string>meta.even-tab.group8, meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces , meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate , text.xml.strict meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag, meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces, meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group, meta.section meta.section meta.section meta.section meta.section meta.section meta.section meta.section</string>
2539
+ <key>settings</key>
2540
+ <dict>
2541
+ <key>background</key>
2542
+ <string>#212121</string>
2543
+ </dict>
2544
+ </dict>
2545
+ <dict>
2546
+ <key>name</key>
2547
+ <string>Group9</string>
2548
+ <key>scope</key>
2549
+ <string>meta.odd-tab.group9, meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces , meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate , text.xml.strict meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag, meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces, meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group, meta.section meta.section meta.section meta.section meta.section meta.section meta.section meta.section meta.section</string>
2550
+ <key>settings</key>
2551
+ <dict>
2552
+ <key>background</key>
2553
+ <string>#242424</string>
2554
+ </dict>
2555
+ </dict>
2556
+ <dict>
2557
+ <key>name</key>
2558
+ <string>Group10</string>
2559
+ <key>scope</key>
2560
+ <string>meta.even-tab.group10</string>
2561
+ <key>settings</key>
2562
+ <dict>
2563
+ <key>background</key>
2564
+ <string>#1F1F1F</string>
2565
+ </dict>
2566
+ </dict>
2567
+ <dict>
2568
+ <key>name</key>
2569
+ <string>Group11</string>
2570
+ <key>scope</key>
2571
+ <string>meta.odd-tab.group11</string>
2572
+ <key>settings</key>
2573
+ <dict>
2574
+ <key>background</key>
2575
+ <string>#151515</string>
2576
+ </dict>
2577
+ </dict>
2578
+ <dict>
2579
+ <key>name</key>
2580
+ <string>———————— END ————————</string>
2581
+ <key>settings</key>
2582
+ <dict/>
2583
+ </dict>
2584
+ <dict>
2585
+ <key>name</key>
2586
+ <string>IE6</string>
2587
+ <key>scope</key>
2588
+ <string>meta.property.vendor.microsoft.trident.4,
2589
+ meta.property.vendor.microsoft.trident.4 support.type.property-name,
2590
+ meta.property.vendor.microsoft.trident.4 punctuation.terminator.rule</string>
2591
+ <key>settings</key>
2592
+ <dict>
2593
+ <key>fontStyle</key>
2594
+ <string></string>
2595
+ <key>foreground</key>
2596
+ <string>#1B95E2</string>
2597
+ </dict>
2598
+ </dict>
2599
+ <dict>
2600
+ <key>name</key>
2601
+ <string>IE7</string>
2602
+ <key>scope</key>
2603
+ <string>meta.property.vendor.microsoft.trident.5,
2604
+ meta.property.vendor.microsoft.trident.5 support.type.property-name,
2605
+ meta.property.vendor.microsoft.trident.5 punctuation.separator.key-value,
2606
+ meta.property.vendor.microsoft.trident.5 punctuation.terminator.rule</string>
2607
+ <key>settings</key>
2608
+ <dict>
2609
+ <key>fontStyle</key>
2610
+ <string></string>
2611
+ <key>foreground</key>
2612
+ <string>#F5C034</string>
2613
+ </dict>
2614
+ </dict>
2615
+ </array>
2616
+ <key>uuid</key>
2617
+ <string>24847CB3-23BC-4BF9-861B-E39661A6DA71</string>
2618
+ </dict>
2619
+ </plist>