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,23 @@
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>content</key>
6
+ <string>std::vector&lt;char&gt; v;
7
+ if(FILE${TM_C_POINTER: *}fp = fopen(${1:"filename"}, "r"))
8
+ {
9
+ char buf[1024];
10
+ while(size_t len = fread(buf, 1, sizeof(buf), fp))
11
+ v.insert(v.end(), buf, buf + len);
12
+ fclose(fp);
13
+ }</string>
14
+ <key>name</key>
15
+ <string>Read File Into Vector</string>
16
+ <key>scope</key>
17
+ <string>source.c++, source.objc++</string>
18
+ <key>tabTrigger</key>
19
+ <string>readfile</string>
20
+ <key>uuid</key>
21
+ <string>E8C3B596-9045-11D9-AB38-000D93589AF6</string>
22
+ </dict>
23
+ </plist>
@@ -0,0 +1,16 @@
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>content</key>
6
+ <string>std::map&lt;${1:key}, ${2:value}&gt; map$0;</string>
7
+ <key>name</key>
8
+ <string>std::map</string>
9
+ <key>scope</key>
10
+ <string>source.c++, source.objc++</string>
11
+ <key>tabTrigger</key>
12
+ <string>map</string>
13
+ <key>uuid</key>
14
+ <string>A295A902-ACAF-11D9-987D-000D93589AF6</string>
15
+ </dict>
16
+ </plist>
@@ -0,0 +1,16 @@
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>content</key>
6
+ <string>std::vector&lt;${1:char}&gt; v$0;</string>
7
+ <key>name</key>
8
+ <string>std::vector</string>
9
+ <key>scope</key>
10
+ <string>source.c++, source.objc++</string>
11
+ <key>tabTrigger</key>
12
+ <string>vector</string>
13
+ <key>uuid</key>
14
+ <string>5E468268-ACAF-11D9-987D-000D93589AF6</string>
15
+ </dict>
16
+ </plist>
@@ -0,0 +1,19 @@
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>content</key>
6
+ <string>struct ${1:${TM_FILENAME/(.+)\..+|.*/(?1:\L$1_t:name)/}}
7
+ {
8
+ ${0:/* data */}
9
+ };</string>
10
+ <key>name</key>
11
+ <string>Struct</string>
12
+ <key>scope</key>
13
+ <string>source.c, source.objc, source.c++, source.objc++</string>
14
+ <key>tabTrigger</key>
15
+ <string>st</string>
16
+ <key>uuid</key>
17
+ <string>1D14B92E-8819-11D9-8661-000D93589AF6</string>
18
+ </dict>
19
+ </plist>
@@ -0,0 +1,16 @@
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>content</key>
6
+ <string>template &lt;typename ${1:_InputIter}&gt;</string>
7
+ <key>name</key>
8
+ <string>template &lt;typename …&gt;</string>
9
+ <key>scope</key>
10
+ <string>source.c++, source.objc++</string>
11
+ <key>tabTrigger</key>
12
+ <string>tp</string>
13
+ <key>uuid</key>
14
+ <string>C5DEE118-4C9E-4F3E-97A4-0E01A250F142</string>
15
+ </dict>
16
+ </plist>
@@ -0,0 +1,1084 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>fileTypes</key>
6
+ <array>
7
+ <string>c</string>
8
+ <string>h</string>
9
+ </array>
10
+ <key>firstLineMatch</key>
11
+ <string>-[*]-( Mode:)? C -[*]-</string>
12
+ <key>foldingStartMarker</key>
13
+ <string>(?x)
14
+ /\*\*(?!\*)
15
+ |^(?![^{]*?//|[^{]*?/\*(?!.*?\*/.*?\{)).*?\{\s*($|//|/\*(?!.*?\*/.*\S))
16
+ </string>
17
+ <key>foldingStopMarker</key>
18
+ <string>(?&lt;!\*)\*\*/|^\s*\}</string>
19
+ <key>keyEquivalent</key>
20
+ <string>^~C</string>
21
+ <key>name</key>
22
+ <string>C</string>
23
+ <key>patterns</key>
24
+ <array>
25
+ <dict>
26
+ <key>include</key>
27
+ <string>#preprocessor-rule-enabled</string>
28
+ </dict>
29
+ <dict>
30
+ <key>include</key>
31
+ <string>#preprocessor-rule-disabled</string>
32
+ </dict>
33
+ <dict>
34
+ <key>include</key>
35
+ <string>#preprocessor-rule-other</string>
36
+ </dict>
37
+ <dict>
38
+ <key>begin</key>
39
+ <string>/\*</string>
40
+ <key>captures</key>
41
+ <dict>
42
+ <key>0</key>
43
+ <dict>
44
+ <key>name</key>
45
+ <string>punctuation.definition.comment.c</string>
46
+ </dict>
47
+ </dict>
48
+ <key>end</key>
49
+ <string>\*/</string>
50
+ <key>name</key>
51
+ <string>comment.block.c</string>
52
+ </dict>
53
+ <dict>
54
+ <key>match</key>
55
+ <string>\*/.*\n</string>
56
+ <key>name</key>
57
+ <string>invalid.illegal.stray-comment-end.c</string>
58
+ </dict>
59
+ <dict>
60
+ <key>begin</key>
61
+ <string>//</string>
62
+ <key>beginCaptures</key>
63
+ <dict>
64
+ <key>0</key>
65
+ <dict>
66
+ <key>name</key>
67
+ <string>punctuation.definition.comment.c</string>
68
+ </dict>
69
+ </dict>
70
+ <key>end</key>
71
+ <string>$\n?</string>
72
+ <key>name</key>
73
+ <string>comment.line.double-slash.c++</string>
74
+ <key>patterns</key>
75
+ <array>
76
+ <dict>
77
+ <key>match</key>
78
+ <string>(?&gt;\\\s*\n)</string>
79
+ <key>name</key>
80
+ <string>punctuation.separator.continuation.c++</string>
81
+ </dict>
82
+ </array>
83
+ </dict>
84
+ <dict>
85
+ <key>match</key>
86
+ <string>\b(break|case|continue|default|do|else|for|goto|if|_Pragma|return|switch|while)\b</string>
87
+ <key>name</key>
88
+ <string>keyword.control.c</string>
89
+ </dict>
90
+ <dict>
91
+ <key>match</key>
92
+ <string>\b(asm|__asm__|auto|bool|_Bool|char|_Complex|double|enum|float|_Imaginary|int|long|short|signed|struct|typedef|union|unsigned|void)\b</string>
93
+ <key>name</key>
94
+ <string>storage.type.c</string>
95
+ </dict>
96
+ <dict>
97
+ <key>match</key>
98
+ <string>\b(const|extern|register|restrict|static|volatile|inline)\b</string>
99
+ <key>name</key>
100
+ <string>storage.modifier.c</string>
101
+ </dict>
102
+ <dict>
103
+ <key>comment</key>
104
+ <string>common C constant naming idiom -- kConstantVariable</string>
105
+ <key>match</key>
106
+ <string>\bk[A-Z]\w*\b</string>
107
+ <key>name</key>
108
+ <string>constant.other.variable.mac-classic.c</string>
109
+ </dict>
110
+ <dict>
111
+ <key>match</key>
112
+ <string>\bg[A-Z]\w*\b</string>
113
+ <key>name</key>
114
+ <string>variable.other.readwrite.global.mac-classic.c</string>
115
+ </dict>
116
+ <dict>
117
+ <key>match</key>
118
+ <string>\bs[A-Z]\w*\b</string>
119
+ <key>name</key>
120
+ <string>variable.other.readwrite.static.mac-classic.c</string>
121
+ </dict>
122
+ <dict>
123
+ <key>match</key>
124
+ <string>\b(NULL|true|false|TRUE|FALSE)\b</string>
125
+ <key>name</key>
126
+ <string>constant.language.c</string>
127
+ </dict>
128
+ <dict>
129
+ <key>include</key>
130
+ <string>#sizeof</string>
131
+ </dict>
132
+ <dict>
133
+ <key>match</key>
134
+ <string>\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\.?[0-9]*)|(\.[0-9]+))((e|E)(\+|-)?[0-9]+)?)(L|l|UL|ul|u|U|F|f|ll|LL|ull|ULL)?\b</string>
135
+ <key>name</key>
136
+ <string>constant.numeric.c</string>
137
+ </dict>
138
+ <dict>
139
+ <key>begin</key>
140
+ <string>"</string>
141
+ <key>beginCaptures</key>
142
+ <dict>
143
+ <key>0</key>
144
+ <dict>
145
+ <key>name</key>
146
+ <string>punctuation.definition.string.begin.c</string>
147
+ </dict>
148
+ </dict>
149
+ <key>end</key>
150
+ <string>"</string>
151
+ <key>endCaptures</key>
152
+ <dict>
153
+ <key>0</key>
154
+ <dict>
155
+ <key>name</key>
156
+ <string>punctuation.definition.string.end.c</string>
157
+ </dict>
158
+ </dict>
159
+ <key>name</key>
160
+ <string>string.quoted.double.c</string>
161
+ <key>patterns</key>
162
+ <array>
163
+ <dict>
164
+ <key>include</key>
165
+ <string>#string_escaped_char</string>
166
+ </dict>
167
+ <dict>
168
+ <key>include</key>
169
+ <string>#string_placeholder</string>
170
+ </dict>
171
+ </array>
172
+ </dict>
173
+ <dict>
174
+ <key>begin</key>
175
+ <string>'</string>
176
+ <key>beginCaptures</key>
177
+ <dict>
178
+ <key>0</key>
179
+ <dict>
180
+ <key>name</key>
181
+ <string>punctuation.definition.string.begin.c</string>
182
+ </dict>
183
+ </dict>
184
+ <key>end</key>
185
+ <string>'</string>
186
+ <key>endCaptures</key>
187
+ <dict>
188
+ <key>0</key>
189
+ <dict>
190
+ <key>name</key>
191
+ <string>punctuation.definition.string.end.c</string>
192
+ </dict>
193
+ </dict>
194
+ <key>name</key>
195
+ <string>string.quoted.single.c</string>
196
+ <key>patterns</key>
197
+ <array>
198
+ <dict>
199
+ <key>include</key>
200
+ <string>#string_escaped_char</string>
201
+ </dict>
202
+ </array>
203
+ </dict>
204
+ <dict>
205
+ <key>begin</key>
206
+ <string>(?x)
207
+ ^\s*\#\s*(define)\s+ # define
208
+ ((?&lt;id&gt;[a-zA-Z_][a-zA-Z0-9_]*)) # macro name
209
+ (?: # and optionally:
210
+ (\() # an open parenthesis
211
+ (
212
+ \s* \g&lt;id&gt; \s* # first argument
213
+ ((,) \s* \g&lt;id&gt; \s*)* # additional arguments
214
+ (?:\.\.\.)? # varargs ellipsis?
215
+ )
216
+ (\)) # a close parenthesis
217
+ )?
218
+ </string>
219
+ <key>beginCaptures</key>
220
+ <dict>
221
+ <key>1</key>
222
+ <dict>
223
+ <key>name</key>
224
+ <string>keyword.control.import.define.c</string>
225
+ </dict>
226
+ <key>2</key>
227
+ <dict>
228
+ <key>name</key>
229
+ <string>entity.name.function.preprocessor.c</string>
230
+ </dict>
231
+ <key>4</key>
232
+ <dict>
233
+ <key>name</key>
234
+ <string>punctuation.definition.parameters.c</string>
235
+ </dict>
236
+ <key>5</key>
237
+ <dict>
238
+ <key>name</key>
239
+ <string>variable.parameter.preprocessor.c</string>
240
+ </dict>
241
+ <key>7</key>
242
+ <dict>
243
+ <key>name</key>
244
+ <string>punctuation.separator.parameters.c</string>
245
+ </dict>
246
+ <key>8</key>
247
+ <dict>
248
+ <key>name</key>
249
+ <string>punctuation.definition.parameters.c</string>
250
+ </dict>
251
+ </dict>
252
+ <key>end</key>
253
+ <string>(?=(?://|/\*))|$</string>
254
+ <key>name</key>
255
+ <string>meta.preprocessor.macro.c</string>
256
+ <key>patterns</key>
257
+ <array>
258
+ <dict>
259
+ <key>match</key>
260
+ <string>(?&gt;\\\s*\n)</string>
261
+ <key>name</key>
262
+ <string>punctuation.separator.continuation.c</string>
263
+ </dict>
264
+ <dict>
265
+ <key>include</key>
266
+ <string>$base</string>
267
+ </dict>
268
+ </array>
269
+ </dict>
270
+ <dict>
271
+ <key>begin</key>
272
+ <string>^\s*#\s*(error|warning)\b</string>
273
+ <key>captures</key>
274
+ <dict>
275
+ <key>1</key>
276
+ <dict>
277
+ <key>name</key>
278
+ <string>keyword.control.import.error.c</string>
279
+ </dict>
280
+ </dict>
281
+ <key>end</key>
282
+ <string>$</string>
283
+ <key>name</key>
284
+ <string>meta.preprocessor.diagnostic.c</string>
285
+ <key>patterns</key>
286
+ <array>
287
+ <dict>
288
+ <key>match</key>
289
+ <string>(?&gt;\\\s*\n)</string>
290
+ <key>name</key>
291
+ <string>punctuation.separator.continuation.c</string>
292
+ </dict>
293
+ </array>
294
+ </dict>
295
+ <dict>
296
+ <key>begin</key>
297
+ <string>^\s*#\s*(include|import)\b\s+</string>
298
+ <key>captures</key>
299
+ <dict>
300
+ <key>1</key>
301
+ <dict>
302
+ <key>name</key>
303
+ <string>keyword.control.import.include.c</string>
304
+ </dict>
305
+ </dict>
306
+ <key>end</key>
307
+ <string>(?=(?://|/\*))|$</string>
308
+ <key>name</key>
309
+ <string>meta.preprocessor.c.include</string>
310
+ <key>patterns</key>
311
+ <array>
312
+ <dict>
313
+ <key>match</key>
314
+ <string>(?&gt;\\\s*\n)</string>
315
+ <key>name</key>
316
+ <string>punctuation.separator.continuation.c</string>
317
+ </dict>
318
+ <dict>
319
+ <key>begin</key>
320
+ <string>"</string>
321
+ <key>beginCaptures</key>
322
+ <dict>
323
+ <key>0</key>
324
+ <dict>
325
+ <key>name</key>
326
+ <string>punctuation.definition.string.begin.c</string>
327
+ </dict>
328
+ </dict>
329
+ <key>end</key>
330
+ <string>"</string>
331
+ <key>endCaptures</key>
332
+ <dict>
333
+ <key>0</key>
334
+ <dict>
335
+ <key>name</key>
336
+ <string>punctuation.definition.string.end.c</string>
337
+ </dict>
338
+ </dict>
339
+ <key>name</key>
340
+ <string>string.quoted.double.include.c</string>
341
+ </dict>
342
+ <dict>
343
+ <key>begin</key>
344
+ <string>&lt;</string>
345
+ <key>beginCaptures</key>
346
+ <dict>
347
+ <key>0</key>
348
+ <dict>
349
+ <key>name</key>
350
+ <string>punctuation.definition.string.begin.c</string>
351
+ </dict>
352
+ </dict>
353
+ <key>end</key>
354
+ <string>&gt;</string>
355
+ <key>endCaptures</key>
356
+ <dict>
357
+ <key>0</key>
358
+ <dict>
359
+ <key>name</key>
360
+ <string>punctuation.definition.string.end.c</string>
361
+ </dict>
362
+ </dict>
363
+ <key>name</key>
364
+ <string>string.quoted.other.lt-gt.include.c</string>
365
+ </dict>
366
+ </array>
367
+ </dict>
368
+ <dict>
369
+ <key>include</key>
370
+ <string>#pragma-mark</string>
371
+ </dict>
372
+ <dict>
373
+ <key>begin</key>
374
+ <string>^\s*#\s*(define|defined|elif|else|if|ifdef|ifndef|line|pragma|undef)\b</string>
375
+ <key>captures</key>
376
+ <dict>
377
+ <key>1</key>
378
+ <dict>
379
+ <key>name</key>
380
+ <string>keyword.control.import.c</string>
381
+ </dict>
382
+ </dict>
383
+ <key>end</key>
384
+ <string>(?=(?://|/\*))|$</string>
385
+ <key>name</key>
386
+ <string>meta.preprocessor.c</string>
387
+ <key>patterns</key>
388
+ <array>
389
+ <dict>
390
+ <key>match</key>
391
+ <string>(?&gt;\\\s*\n)</string>
392
+ <key>name</key>
393
+ <string>punctuation.separator.continuation.c</string>
394
+ </dict>
395
+ </array>
396
+ </dict>
397
+ <dict>
398
+ <key>match</key>
399
+ <string>\b(u_char|u_short|u_int|u_long|ushort|uint|u_quad_t|quad_t|qaddr_t|caddr_t|daddr_t|dev_t|fixpt_t|blkcnt_t|blksize_t|gid_t|in_addr_t|in_port_t|ino_t|key_t|mode_t|nlink_t|id_t|pid_t|off_t|segsz_t|swblk_t|uid_t|id_t|clock_t|size_t|ssize_t|time_t|useconds_t|suseconds_t)\b</string>
400
+ <key>name</key>
401
+ <string>support.type.sys-types.c</string>
402
+ </dict>
403
+ <dict>
404
+ <key>match</key>
405
+ <string>\b(pthread_attr_t|pthread_cond_t|pthread_condattr_t|pthread_mutex_t|pthread_mutexattr_t|pthread_once_t|pthread_rwlock_t|pthread_rwlockattr_t|pthread_t|pthread_key_t)\b</string>
406
+ <key>name</key>
407
+ <string>support.type.pthread.c</string>
408
+ </dict>
409
+ <dict>
410
+ <key>match</key>
411
+ <string>\b(int8_t|int16_t|int32_t|int64_t|uint8_t|uint16_t|uint32_t|uint64_t|int_least8_t|int_least16_t|int_least32_t|int_least64_t|uint_least8_t|uint_least16_t|uint_least32_t|uint_least64_t|int_fast8_t|int_fast16_t|int_fast32_t|int_fast64_t|uint_fast8_t|uint_fast16_t|uint_fast32_t|uint_fast64_t|intptr_t|uintptr_t|intmax_t|intmax_t|uintmax_t|uintmax_t)\b</string>
412
+ <key>name</key>
413
+ <string>support.type.stdint.c</string>
414
+ </dict>
415
+ <dict>
416
+ <key>match</key>
417
+ <string>\b(noErr|kNilOptions|kInvalidID|kVariableLengthArray)\b</string>
418
+ <key>name</key>
419
+ <string>support.constant.mac-classic.c</string>
420
+ </dict>
421
+ <dict>
422
+ <key>match</key>
423
+ <string>\b(AbsoluteTime|Boolean|Byte|ByteCount|ByteOffset|BytePtr|CompTimeValue|ConstLogicalAddress|ConstStrFileNameParam|ConstStringPtr|Duration|Fixed|FixedPtr|Float32|Float32Point|Float64|Float80|Float96|FourCharCode|Fract|FractPtr|Handle|ItemCount|LogicalAddress|OptionBits|OSErr|OSStatus|OSType|OSTypePtr|PhysicalAddress|ProcessSerialNumber|ProcessSerialNumberPtr|ProcHandle|Ptr|ResType|ResTypePtr|ShortFixed|ShortFixedPtr|SignedByte|SInt16|SInt32|SInt64|SInt8|Size|StrFileName|StringHandle|StringPtr|TimeBase|TimeRecord|TimeScale|TimeValue|TimeValue64|UInt16|UInt32|UInt64|UInt8|UniChar|UniCharCount|UniCharCountPtr|UniCharPtr|UnicodeScalarValue|UniversalProcHandle|UniversalProcPtr|UnsignedFixed|UnsignedFixedPtr|UnsignedWide|UTF16Char|UTF32Char|UTF8Char)\b</string>
424
+ <key>name</key>
425
+ <string>support.type.mac-classic.c</string>
426
+ </dict>
427
+ <dict>
428
+ <key>include</key>
429
+ <string>#block</string>
430
+ </dict>
431
+ <dict>
432
+ <key>begin</key>
433
+ <string>(?x)
434
+ (?: ^ # begin-of-line
435
+ |
436
+ (?: (?= \s ) (?&lt;!else|new|return) (?&lt;=\w) # or word + space before name
437
+ | (?= \s*[A-Za-z_] ) (?&lt;!&amp;&amp;) (?&lt;=[*&amp;&gt;]) # or type modifier before name
438
+ )
439
+ )
440
+ (\s*) (?!(while|for|do|if|else|switch|catch|enumerate|return|r?iterate)\s*\()
441
+ (
442
+ (?: [A-Za-z_][A-Za-z0-9_]*+ | :: )++ | # actual name
443
+ (?: (?&lt;=operator) (?: [-*&amp;&lt;&gt;=+!]+ | \(\) | \[\] ) ) # if it is a C++ operator
444
+ )
445
+ \s*(?=\()</string>
446
+ <key>beginCaptures</key>
447
+ <dict>
448
+ <key>1</key>
449
+ <dict>
450
+ <key>name</key>
451
+ <string>punctuation.whitespace.function.leading.c</string>
452
+ </dict>
453
+ <key>3</key>
454
+ <dict>
455
+ <key>name</key>
456
+ <string>entity.name.function.c</string>
457
+ </dict>
458
+ <key>4</key>
459
+ <dict>
460
+ <key>name</key>
461
+ <string>punctuation.definition.parameters.c</string>
462
+ </dict>
463
+ </dict>
464
+ <key>end</key>
465
+ <string>(?&lt;=\})|(?=#)|(;)</string>
466
+ <key>name</key>
467
+ <string>meta.function.c</string>
468
+ <key>patterns</key>
469
+ <array>
470
+ <dict>
471
+ <key>include</key>
472
+ <string>#parens</string>
473
+ </dict>
474
+ <dict>
475
+ <key>match</key>
476
+ <string>\bconst\b</string>
477
+ <key>name</key>
478
+ <string>storage.modifier.c</string>
479
+ </dict>
480
+ <dict>
481
+ <key>include</key>
482
+ <string>#block</string>
483
+ </dict>
484
+ </array>
485
+ </dict>
486
+ </array>
487
+ <key>repository</key>
488
+ <dict>
489
+ <key>access</key>
490
+ <dict>
491
+ <key>match</key>
492
+ <string>\.[a-zA-Z_][a-zA-Z_0-9]*\b(?!\s*\()</string>
493
+ <key>name</key>
494
+ <string>variable.other.dot-access.c</string>
495
+ </dict>
496
+ <key>block</key>
497
+ <dict>
498
+ <key>begin</key>
499
+ <string>\{</string>
500
+ <key>end</key>
501
+ <string>\}</string>
502
+ <key>name</key>
503
+ <string>meta.block.c</string>
504
+ <key>patterns</key>
505
+ <array>
506
+ <dict>
507
+ <key>include</key>
508
+ <string>#block_innards</string>
509
+ </dict>
510
+ </array>
511
+ </dict>
512
+ <key>block_innards</key>
513
+ <dict>
514
+ <key>patterns</key>
515
+ <array>
516
+ <dict>
517
+ <key>include</key>
518
+ <string>#preprocessor-rule-enabled-block</string>
519
+ </dict>
520
+ <dict>
521
+ <key>include</key>
522
+ <string>#preprocessor-rule-disabled-block</string>
523
+ </dict>
524
+ <dict>
525
+ <key>include</key>
526
+ <string>#preprocessor-rule-other-block</string>
527
+ </dict>
528
+ <dict>
529
+ <key>include</key>
530
+ <string>#sizeof</string>
531
+ </dict>
532
+ <dict>
533
+ <key>include</key>
534
+ <string>#access</string>
535
+ </dict>
536
+ <dict>
537
+ <key>captures</key>
538
+ <dict>
539
+ <key>1</key>
540
+ <dict>
541
+ <key>name</key>
542
+ <string>punctuation.whitespace.support.function.leading.c</string>
543
+ </dict>
544
+ <key>2</key>
545
+ <dict>
546
+ <key>name</key>
547
+ <string>support.function.C99.c</string>
548
+ </dict>
549
+ </dict>
550
+ <key>match</key>
551
+ <string>(\s*)\b(hypot(f|l)?|s(scanf|ystem|nprintf|ca(nf|lb(n(f|l)?|ln(f|l)?))|i(n(h(f|l)?|f|l)?|gn(al|bit))|tr(s(tr|pn)|nc(py|at|mp)|c(spn|hr|oll|py|at|mp)|to(imax|d|u(l(l)?|max)|k|f|l(d|l)?)|error|pbrk|ftime|len|rchr|xfrm)|printf|et(jmp|vbuf|locale|buf)|qrt(f|l)?|w(scanf|printf)|rand)|n(e(arbyint(f|l)?|xt(toward(f|l)?|after(f|l)?))|an(f|l)?)|c(s(in(h(f|l)?|f|l)?|qrt(f|l)?)|cos(h(f)?|f|l)?|imag(f|l)?|t(ime|an(h(f|l)?|f|l)?)|o(s(h(f|l)?|f|l)?|nj(f|l)?|pysign(f|l)?)|p(ow(f|l)?|roj(f|l)?)|e(il(f|l)?|xp(f|l)?)|l(o(ck|g(f|l)?)|earerr)|a(sin(h(f|l)?|f|l)?|cos(h(f|l)?|f|l)?|tan(h(f|l)?|f|l)?|lloc|rg(f|l)?|bs(f|l)?)|real(f|l)?|brt(f|l)?)|t(ime|o(upper|lower)|an(h(f|l)?|f|l)?|runc(f|l)?|gamma(f|l)?|mp(nam|file))|i(s(space|n(ormal|an)|cntrl|inf|digit|u(nordered|pper)|p(unct|rint)|finite|w(space|c(ntrl|type)|digit|upper|p(unct|rint)|lower|al(num|pha)|graph|xdigit|blank)|l(ower|ess(equal|greater)?)|al(num|pha)|gr(eater(equal)?|aph)|xdigit|blank)|logb(f|l)?|max(div|abs))|di(v|fftime)|_Exit|unget(c|wc)|p(ow(f|l)?|ut(s|c(har)?|wc(har)?)|error|rintf)|e(rf(c(f|l)?|f|l)?|x(it|p(2(f|l)?|f|l|m1(f|l)?)?))|v(s(scanf|nprintf|canf|printf|w(scanf|printf))|printf|f(scanf|printf|w(scanf|printf))|w(scanf|printf)|a_(start|copy|end|arg))|qsort|f(s(canf|e(tpos|ek))|close|tell|open|dim(f|l)?|p(classify|ut(s|c|w(s|c))|rintf)|e(holdexcept|set(e(nv|xceptflag)|round)|clearexcept|testexcept|of|updateenv|r(aiseexcept|ror)|get(e(nv|xceptflag)|round))|flush|w(scanf|ide|printf|rite)|loor(f|l)?|abs(f|l)?|get(s|c|pos|w(s|c))|re(open|e|ad|xp(f|l)?)|m(in(f|l)?|od(f|l)?|a(f|l|x(f|l)?)?))|l(d(iv|exp(f|l)?)|o(ngjmp|cal(time|econv)|g(1(p(f|l)?|0(f|l)?)|2(f|l)?|f|l|b(f|l)?)?)|abs|l(div|abs|r(int(f|l)?|ound(f|l)?))|r(int(f|l)?|ound(f|l)?)|gamma(f|l)?)|w(scanf|c(s(s(tr|pn)|nc(py|at|mp)|c(spn|hr|oll|py|at|mp)|to(imax|d|u(l(l)?|max)|k|f|l(d|l)?|mbs)|pbrk|ftime|len|r(chr|tombs)|xfrm)|to(b|mb)|rtomb)|printf|mem(set|c(hr|py|mp)|move))|a(s(sert|ctime|in(h(f|l)?|f|l)?)|cos(h(f|l)?|f|l)?|t(o(i|f|l(l)?)|exit|an(h(f|l)?|2(f|l)?|f|l)?)|b(s|ort))|g(et(s|c(har)?|env|wc(har)?)|mtime)|r(int(f|l)?|ound(f|l)?|e(name|alloc|wind|m(ove|quo(f|l)?|ainder(f|l)?))|a(nd|ise))|b(search|towc)|m(odf(f|l)?|em(set|c(hr|py|mp)|move)|ktime|alloc|b(s(init|towcs|rtowcs)|towc|len|r(towc|len))))\b</string>
552
+ </dict>
553
+ <dict>
554
+ <key>captures</key>
555
+ <dict>
556
+ <key>1</key>
557
+ <dict>
558
+ <key>name</key>
559
+ <string>punctuation.whitespace.function-call.leading.c</string>
560
+ </dict>
561
+ <key>2</key>
562
+ <dict>
563
+ <key>name</key>
564
+ <string>support.function.any-method.c</string>
565
+ </dict>
566
+ <key>3</key>
567
+ <dict>
568
+ <key>name</key>
569
+ <string>punctuation.definition.parameters.c</string>
570
+ </dict>
571
+ </dict>
572
+ <key>match</key>
573
+ <string>(?x) (?: (?= \s ) (?:(?&lt;=else|new|return) | (?&lt;!\w)) (\s+))?
574
+ (\b
575
+ (?!(while|for|do|if|else|switch|catch|enumerate|return|r?iterate)\s*\()(?:(?!NS)[A-Za-z_][A-Za-z0-9_]*+\b | :: )++ # actual name
576
+ )
577
+ \s*(\()</string>
578
+ <key>name</key>
579
+ <string>meta.function-call.c</string>
580
+ </dict>
581
+ <dict>
582
+ <key>captures</key>
583
+ <dict>
584
+ <key>1</key>
585
+ <dict>
586
+ <key>name</key>
587
+ <string>variable.other.c</string>
588
+ </dict>
589
+ <key>2</key>
590
+ <dict>
591
+ <key>name</key>
592
+ <string>punctuation.definition.parameters.c</string>
593
+ </dict>
594
+ </dict>
595
+ <key>match</key>
596
+ <string>(?x)
597
+ (?x)
598
+ (?:
599
+ (?: (?= \s ) (?&lt;!else|new|return) (?&lt;=\w)\s+ # or word + space before name
600
+ )
601
+ )
602
+ (
603
+ (?: [A-Za-z_][A-Za-z0-9_]*+ | :: )++ | # actual name
604
+ (?: (?&lt;=operator) (?: [-*&amp;&lt;&gt;=+!]+ | \(\) | \[\] ) )? # if it is a C++ operator
605
+ )
606
+ \s*(\()</string>
607
+ <key>name</key>
608
+ <string>meta.initialization.c</string>
609
+ </dict>
610
+ <dict>
611
+ <key>include</key>
612
+ <string>#block</string>
613
+ </dict>
614
+ <dict>
615
+ <key>include</key>
616
+ <string>$base</string>
617
+ </dict>
618
+ </array>
619
+ </dict>
620
+ <key>disabled</key>
621
+ <dict>
622
+ <key>begin</key>
623
+ <string>^\s*#\s*if(n?def)?\b.*$</string>
624
+ <key>comment</key>
625
+ <string>eat nested preprocessor if(def)s</string>
626
+ <key>end</key>
627
+ <string>^\s*#\s*endif\b.*$</string>
628
+ <key>patterns</key>
629
+ <array>
630
+ <dict>
631
+ <key>include</key>
632
+ <string>#disabled</string>
633
+ </dict>
634
+ <dict>
635
+ <key>include</key>
636
+ <string>#pragma-mark</string>
637
+ </dict>
638
+ </array>
639
+ </dict>
640
+ <key>parens</key>
641
+ <dict>
642
+ <key>begin</key>
643
+ <string>\(</string>
644
+ <key>end</key>
645
+ <string>\)</string>
646
+ <key>name</key>
647
+ <string>meta.parens.c</string>
648
+ <key>patterns</key>
649
+ <array>
650
+ <dict>
651
+ <key>include</key>
652
+ <string>$base</string>
653
+ </dict>
654
+ </array>
655
+ </dict>
656
+ <key>pragma-mark</key>
657
+ <dict>
658
+ <key>captures</key>
659
+ <dict>
660
+ <key>1</key>
661
+ <dict>
662
+ <key>name</key>
663
+ <string>meta.preprocessor.c</string>
664
+ </dict>
665
+ <key>2</key>
666
+ <dict>
667
+ <key>name</key>
668
+ <string>keyword.control.import.pragma.c</string>
669
+ </dict>
670
+ <key>3</key>
671
+ <dict>
672
+ <key>name</key>
673
+ <string>meta.toc-list.pragma-mark.c</string>
674
+ </dict>
675
+ </dict>
676
+ <key>match</key>
677
+ <string>^\s*(#\s*(pragma\s+mark)\s+(.*))</string>
678
+ <key>name</key>
679
+ <string>meta.section</string>
680
+ </dict>
681
+ <key>preprocessor-rule-disabled</key>
682
+ <dict>
683
+ <key>begin</key>
684
+ <string>^\s*(#(if)\s+(0)\b).*</string>
685
+ <key>captures</key>
686
+ <dict>
687
+ <key>1</key>
688
+ <dict>
689
+ <key>name</key>
690
+ <string>meta.preprocessor.c</string>
691
+ </dict>
692
+ <key>2</key>
693
+ <dict>
694
+ <key>name</key>
695
+ <string>keyword.control.import.if.c</string>
696
+ </dict>
697
+ <key>3</key>
698
+ <dict>
699
+ <key>name</key>
700
+ <string>constant.numeric.preprocessor.c</string>
701
+ </dict>
702
+ </dict>
703
+ <key>end</key>
704
+ <string>^\s*(#\s*(endif)\b)</string>
705
+ <key>patterns</key>
706
+ <array>
707
+ <dict>
708
+ <key>begin</key>
709
+ <string>^\s*(#\s*(else)\b)</string>
710
+ <key>captures</key>
711
+ <dict>
712
+ <key>1</key>
713
+ <dict>
714
+ <key>name</key>
715
+ <string>meta.preprocessor.c</string>
716
+ </dict>
717
+ <key>2</key>
718
+ <dict>
719
+ <key>name</key>
720
+ <string>keyword.control.import.else.c</string>
721
+ </dict>
722
+ </dict>
723
+ <key>end</key>
724
+ <string>(?=^\s*#\s*endif\b.*$)</string>
725
+ <key>patterns</key>
726
+ <array>
727
+ <dict>
728
+ <key>include</key>
729
+ <string>$base</string>
730
+ </dict>
731
+ </array>
732
+ </dict>
733
+ <dict>
734
+ <key>begin</key>
735
+ <string></string>
736
+ <key>end</key>
737
+ <string>(?=^\s*#\s*(else|endif)\b.*$)</string>
738
+ <key>name</key>
739
+ <string>comment.block.preprocessor.if-branch</string>
740
+ <key>patterns</key>
741
+ <array>
742
+ <dict>
743
+ <key>include</key>
744
+ <string>#disabled</string>
745
+ </dict>
746
+ <dict>
747
+ <key>include</key>
748
+ <string>#pragma-mark</string>
749
+ </dict>
750
+ </array>
751
+ </dict>
752
+ </array>
753
+ </dict>
754
+ <key>preprocessor-rule-disabled-block</key>
755
+ <dict>
756
+ <key>begin</key>
757
+ <string>^\s*(#(if)\s+(0)\b).*</string>
758
+ <key>captures</key>
759
+ <dict>
760
+ <key>1</key>
761
+ <dict>
762
+ <key>name</key>
763
+ <string>meta.preprocessor.c</string>
764
+ </dict>
765
+ <key>2</key>
766
+ <dict>
767
+ <key>name</key>
768
+ <string>keyword.control.import.if.c</string>
769
+ </dict>
770
+ <key>3</key>
771
+ <dict>
772
+ <key>name</key>
773
+ <string>constant.numeric.preprocessor.c</string>
774
+ </dict>
775
+ </dict>
776
+ <key>end</key>
777
+ <string>^\s*(#\s*(endif)\b)</string>
778
+ <key>patterns</key>
779
+ <array>
780
+ <dict>
781
+ <key>begin</key>
782
+ <string>^\s*(#\s*(else)\b)</string>
783
+ <key>captures</key>
784
+ <dict>
785
+ <key>1</key>
786
+ <dict>
787
+ <key>name</key>
788
+ <string>meta.preprocessor.c</string>
789
+ </dict>
790
+ <key>2</key>
791
+ <dict>
792
+ <key>name</key>
793
+ <string>keyword.control.import.else.c</string>
794
+ </dict>
795
+ </dict>
796
+ <key>end</key>
797
+ <string>(?=^\s*#\s*endif\b.*$)</string>
798
+ <key>patterns</key>
799
+ <array>
800
+ <dict>
801
+ <key>include</key>
802
+ <string>#block_innards</string>
803
+ </dict>
804
+ </array>
805
+ </dict>
806
+ <dict>
807
+ <key>begin</key>
808
+ <string></string>
809
+ <key>end</key>
810
+ <string>(?=^\s*#\s*(else|endif)\b.*$)</string>
811
+ <key>name</key>
812
+ <string>comment.block.preprocessor.if-branch.in-block</string>
813
+ <key>patterns</key>
814
+ <array>
815
+ <dict>
816
+ <key>include</key>
817
+ <string>#disabled</string>
818
+ </dict>
819
+ <dict>
820
+ <key>include</key>
821
+ <string>#pragma-mark</string>
822
+ </dict>
823
+ </array>
824
+ </dict>
825
+ </array>
826
+ </dict>
827
+ <key>preprocessor-rule-enabled</key>
828
+ <dict>
829
+ <key>begin</key>
830
+ <string>^\s*(#(if)\s+(0*1)\b)</string>
831
+ <key>captures</key>
832
+ <dict>
833
+ <key>1</key>
834
+ <dict>
835
+ <key>name</key>
836
+ <string>meta.preprocessor.c</string>
837
+ </dict>
838
+ <key>2</key>
839
+ <dict>
840
+ <key>name</key>
841
+ <string>keyword.control.import.if.c</string>
842
+ </dict>
843
+ <key>3</key>
844
+ <dict>
845
+ <key>name</key>
846
+ <string>constant.numeric.preprocessor.c</string>
847
+ </dict>
848
+ </dict>
849
+ <key>end</key>
850
+ <string>^\s*(#\s*(endif)\b)</string>
851
+ <key>patterns</key>
852
+ <array>
853
+ <dict>
854
+ <key>begin</key>
855
+ <string>^\s*(#\s*(else)\b).*</string>
856
+ <key>captures</key>
857
+ <dict>
858
+ <key>1</key>
859
+ <dict>
860
+ <key>name</key>
861
+ <string>meta.preprocessor.c</string>
862
+ </dict>
863
+ <key>2</key>
864
+ <dict>
865
+ <key>name</key>
866
+ <string>keyword.control.import.else.c</string>
867
+ </dict>
868
+ </dict>
869
+ <key>contentName</key>
870
+ <string>comment.block.preprocessor.else-branch</string>
871
+ <key>end</key>
872
+ <string>(?=^\s*#\s*endif\b.*$)</string>
873
+ <key>patterns</key>
874
+ <array>
875
+ <dict>
876
+ <key>include</key>
877
+ <string>#disabled</string>
878
+ </dict>
879
+ <dict>
880
+ <key>include</key>
881
+ <string>#pragma-mark</string>
882
+ </dict>
883
+ </array>
884
+ </dict>
885
+ <dict>
886
+ <key>begin</key>
887
+ <string></string>
888
+ <key>end</key>
889
+ <string>(?=^\s*#\s*(else|endif)\b.*$)</string>
890
+ <key>patterns</key>
891
+ <array>
892
+ <dict>
893
+ <key>include</key>
894
+ <string>$base</string>
895
+ </dict>
896
+ </array>
897
+ </dict>
898
+ </array>
899
+ </dict>
900
+ <key>preprocessor-rule-enabled-block</key>
901
+ <dict>
902
+ <key>begin</key>
903
+ <string>^\s*(#(if)\s+(0*1)\b)</string>
904
+ <key>captures</key>
905
+ <dict>
906
+ <key>1</key>
907
+ <dict>
908
+ <key>name</key>
909
+ <string>meta.preprocessor.c</string>
910
+ </dict>
911
+ <key>2</key>
912
+ <dict>
913
+ <key>name</key>
914
+ <string>keyword.control.import.if.c</string>
915
+ </dict>
916
+ <key>3</key>
917
+ <dict>
918
+ <key>name</key>
919
+ <string>constant.numeric.preprocessor.c</string>
920
+ </dict>
921
+ </dict>
922
+ <key>end</key>
923
+ <string>^\s*(#\s*(endif)\b)</string>
924
+ <key>patterns</key>
925
+ <array>
926
+ <dict>
927
+ <key>begin</key>
928
+ <string>^\s*(#\s*(else)\b).*</string>
929
+ <key>captures</key>
930
+ <dict>
931
+ <key>1</key>
932
+ <dict>
933
+ <key>name</key>
934
+ <string>meta.preprocessor.c</string>
935
+ </dict>
936
+ <key>2</key>
937
+ <dict>
938
+ <key>name</key>
939
+ <string>keyword.control.import.else.c</string>
940
+ </dict>
941
+ </dict>
942
+ <key>contentName</key>
943
+ <string>comment.block.preprocessor.else-branch.in-block</string>
944
+ <key>end</key>
945
+ <string>(?=^\s*#\s*endif\b.*$)</string>
946
+ <key>patterns</key>
947
+ <array>
948
+ <dict>
949
+ <key>include</key>
950
+ <string>#disabled</string>
951
+ </dict>
952
+ <dict>
953
+ <key>include</key>
954
+ <string>#pragma-mark</string>
955
+ </dict>
956
+ </array>
957
+ </dict>
958
+ <dict>
959
+ <key>begin</key>
960
+ <string></string>
961
+ <key>end</key>
962
+ <string>(?=^\s*#\s*(else|endif)\b.*$)</string>
963
+ <key>patterns</key>
964
+ <array>
965
+ <dict>
966
+ <key>include</key>
967
+ <string>#block_innards</string>
968
+ </dict>
969
+ </array>
970
+ </dict>
971
+ </array>
972
+ </dict>
973
+ <key>preprocessor-rule-other</key>
974
+ <dict>
975
+ <key>begin</key>
976
+ <string>^\s*(#\s*(if(n?def)?)\b.*?(?:(?=(?://|/\*))|$))</string>
977
+ <key>captures</key>
978
+ <dict>
979
+ <key>1</key>
980
+ <dict>
981
+ <key>name</key>
982
+ <string>meta.preprocessor.c</string>
983
+ </dict>
984
+ <key>2</key>
985
+ <dict>
986
+ <key>name</key>
987
+ <string>keyword.control.import.c</string>
988
+ </dict>
989
+ </dict>
990
+ <key>end</key>
991
+ <string>^\s*(#\s*(endif)\b).*$</string>
992
+ <key>patterns</key>
993
+ <array>
994
+ <dict>
995
+ <key>include</key>
996
+ <string>$base</string>
997
+ </dict>
998
+ </array>
999
+ </dict>
1000
+ <key>preprocessor-rule-other-block</key>
1001
+ <dict>
1002
+ <key>begin</key>
1003
+ <string>^\s*(#\s*(if(n?def)?)\b.*?(?:(?=(?://|/\*))|$))</string>
1004
+ <key>captures</key>
1005
+ <dict>
1006
+ <key>1</key>
1007
+ <dict>
1008
+ <key>name</key>
1009
+ <string>meta.preprocessor.c</string>
1010
+ </dict>
1011
+ <key>2</key>
1012
+ <dict>
1013
+ <key>name</key>
1014
+ <string>keyword.control.import.c</string>
1015
+ </dict>
1016
+ </dict>
1017
+ <key>end</key>
1018
+ <string>^\s*(#\s*(endif)\b).*$</string>
1019
+ <key>patterns</key>
1020
+ <array>
1021
+ <dict>
1022
+ <key>include</key>
1023
+ <string>#block_innards</string>
1024
+ </dict>
1025
+ </array>
1026
+ </dict>
1027
+ <key>sizeof</key>
1028
+ <dict>
1029
+ <key>match</key>
1030
+ <string>\b(sizeof)\b</string>
1031
+ <key>name</key>
1032
+ <string>keyword.operator.sizeof.c</string>
1033
+ </dict>
1034
+ <key>string_escaped_char</key>
1035
+ <dict>
1036
+ <key>patterns</key>
1037
+ <array>
1038
+ <dict>
1039
+ <key>match</key>
1040
+ <string>\\(\\|[abefnprtv'"?]|[0-3]\d{,2}|[4-7]\d?|x[a-fA-F0-9]{,2})</string>
1041
+ <key>name</key>
1042
+ <string>constant.character.escape.c</string>
1043
+ </dict>
1044
+ <dict>
1045
+ <key>match</key>
1046
+ <string>\\.</string>
1047
+ <key>name</key>
1048
+ <string>invalid.illegal.unknown-escape.c</string>
1049
+ </dict>
1050
+ </array>
1051
+ </dict>
1052
+ <key>string_placeholder</key>
1053
+ <dict>
1054
+ <key>patterns</key>
1055
+ <array>
1056
+ <dict>
1057
+ <key>match</key>
1058
+ <string>(?x)%
1059
+ (\d+\$)? # field (argument #)
1060
+ [#0\- +']* # flags
1061
+ [,;:_]? # separator character (AltiVec)
1062
+ ((-?\d+)|\*(-?\d+\$)?)? # minimum field width
1063
+ (\.((-?\d+)|\*(-?\d+\$)?)?)? # precision
1064
+ (hh|h|ll|l|j|t|z|q|L|vh|vl|v|hv|hl)? # length modifier
1065
+ [diouxXDOUeEfFgGaACcSspn%] # conversion type
1066
+ </string>
1067
+ <key>name</key>
1068
+ <string>constant.other.placeholder.c</string>
1069
+ </dict>
1070
+ <dict>
1071
+ <key>match</key>
1072
+ <string>%</string>
1073
+ <key>name</key>
1074
+ <string>invalid.illegal.placeholder.c</string>
1075
+ </dict>
1076
+ </array>
1077
+ </dict>
1078
+ </dict>
1079
+ <key>scopeName</key>
1080
+ <string>source.c</string>
1081
+ <key>uuid</key>
1082
+ <string>25066DC2-6B1D-11D9-9D5B-000D93589AF6</string>
1083
+ </dict>
1084
+ </plist>