redcar 0.5.2dev → 0.5.3dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (960) hide show
  1. data/CHANGES +25 -13
  2. data/Rakefile +1 -1
  3. data/bin/redcar +3 -2
  4. data/lib/plugin_manager/README.md +3 -0
  5. data/lib/plugin_manager/lib/plugin_manager.rb +138 -47
  6. data/lib/plugin_manager/lib/plugin_manager/definition_builder.rb +19 -1
  7. data/lib/plugin_manager/lib/plugin_manager/plugin_definition.rb +11 -3
  8. data/lib/plugin_manager/spec/fixtures/{error_in_definition → plugin_loading/error_in_definition}/core/plugin.rb +0 -0
  9. data/lib/plugin_manager/spec/fixtures/{error_in_plugin → plugin_loading/error_in_plugin}/core/core.rb +0 -0
  10. data/lib/plugin_manager/spec/fixtures/{error_in_plugin → plugin_loading/error_in_plugin}/core/plugin.rb +0 -0
  11. data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/core/core.rb +0 -0
  12. data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/core/plugin.rb +0 -0
  13. data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/debug/debug.rb +0 -0
  14. data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/debug/plugin.rb +0 -0
  15. data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/extras/extras.rb +0 -0
  16. data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/extras/plugin.rb +0 -0
  17. data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core/core.rb +0 -0
  18. data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core/plugin.rb +0 -0
  19. data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core2/core.rb +0 -0
  20. data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core2/plugin.rb +0 -0
  21. data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core/core.rb +0 -0
  22. data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core/plugin.rb +0 -0
  23. data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core2/core.rb +0 -0
  24. data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core2/plugin.rb +0 -0
  25. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/core/core.rb +0 -0
  26. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/core/plugin.rb +0 -0
  27. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/debug/debug.rb +0 -0
  28. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/debug/plugin.rb +0 -0
  29. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/core/core.rb +0 -0
  30. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/core/plugin.rb +0 -0
  31. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/debug/debug.rb +0 -0
  32. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/debug/plugin.rb +0 -0
  33. data/lib/plugin_manager/spec/plugin_manager_spec.rb +54 -16
  34. data/lib/redcar.rb +68 -62
  35. data/lib/redcar/installer.rb +8 -13
  36. data/lib/redcar/jvm_options_probe.rb +14 -0
  37. data/lib/redcar/runner.rb +55 -5
  38. data/plugins/application/features/support/env.rb +6 -6
  39. data/plugins/application/icons/redcar-splash.png +0 -0
  40. data/plugins/application/lib/application.rb +44 -2
  41. data/plugins/application/lib/application/toolbar.rb +91 -0
  42. data/plugins/application/lib/application/toolbar/builder.rb +80 -0
  43. data/plugins/application/lib/application/toolbar/builder/group.rb +47 -0
  44. data/plugins/application/lib/application/toolbar/item.rb +72 -0
  45. data/plugins/application/lib/application/toolbar/lazy_toolbar.rb +25 -0
  46. data/plugins/application/lib/application/window.rb +9 -1
  47. data/plugins/application/spec/spec_helper.rb +1 -1
  48. data/plugins/application_swt/lib/application_swt.rb +23 -41
  49. data/plugins/application_swt/lib/application_swt/toolbar.rb +134 -0
  50. data/plugins/application_swt/lib/application_swt/toolbar/binding_translator.rb +94 -0
  51. data/plugins/application_swt/lib/application_swt/window.rb +33 -4
  52. data/plugins/application_swt/plugin.rb +2 -1
  53. data/plugins/application_swt/spec/spec_helper.rb +1 -1
  54. data/plugins/auto_indenter/spec/spec_helper.rb +1 -1
  55. data/plugins/core/spec/spec_helper.rb +1 -1
  56. data/plugins/declarations/lib/declarations/select_tag_dialog.rb +5 -4
  57. data/plugins/declarations/spec/spec_helper.rb +1 -1
  58. data/plugins/document_search/features/replace.feature +17 -4
  59. data/plugins/document_search/lib/document_search/replace.rb +5 -3
  60. data/plugins/document_search/lib/document_search/search.rb +9 -10
  61. data/plugins/edit_view/features/cut_and_paste.feature +8 -10
  62. data/plugins/edit_view/lib/edit_view/grammars/default.rb +1 -1
  63. data/plugins/edit_view/lib/edit_view/grammars/ruby.rb +1 -1
  64. data/plugins/edit_view/spec/spec_helper.rb +1 -1
  65. data/plugins/edit_view_swt/lib/edit_view_swt.rb +3 -2
  66. data/plugins/edit_view_swt/spec/spec_helper.rb +1 -1
  67. data/plugins/project/lib/project/dir_controller.rb +1 -1
  68. data/plugins/project/lib/project/drb_service.rb +4 -4
  69. data/plugins/project/plugin.rb +2 -1
  70. data/plugins/project/spec/spec_helper.rb +1 -1
  71. data/plugins/redcar/redcar.rb +76 -40
  72. data/plugins/repl/spec/repl/clojure_mirror_spec.rb +2 -0
  73. data/plugins/repl/spec/repl/ruby_mirror_spec.rb +1 -1
  74. data/plugins/repl/spec/spec_helper.rb +1 -1
  75. data/plugins/runnables/spec/spec_helper.rb +1 -1
  76. data/plugins/scm/lib/scm.rb +1 -1
  77. data/plugins/scm/spec/spec_helper.rb +1 -1
  78. data/plugins/scm_git/vendor/ruby-git/lib/git/lib.rb +1 -1
  79. data/plugins/{application_swt/lib/application_swt/swt_wrapper.rb → swt/lib/swt.rb} +108 -2
  80. data/plugins/{application_swt/lib/application_swt → swt/lib/swt}/cucumber_patches.rb +0 -0
  81. data/plugins/swt/lib/swt/cucumber_runner.rb +23 -0
  82. data/plugins/swt/lib/swt/event_loop.rb +30 -0
  83. data/plugins/{application_swt/lib/application_swt → swt/lib}/swt/grid_data.rb +0 -0
  84. data/plugins/{application_swt/lib/application_swt → swt/lib}/swt/listener_helpers.rb +0 -0
  85. data/plugins/swt/plugin.rb +8 -0
  86. data/plugins/textmate/lib/textmate.rb +18 -27
  87. data/plugins/textmate/plugin.rb +1 -1
  88. data/plugins/tree/spec/spec_helper.rb +1 -1
  89. metadata +45 -904
  90. data/plugins/application_swt/lib/application_swt/cucumber_runner.rb +0 -25
  91. data/plugins/application_swt/lib/application_swt/event_loop.rb +0 -32
  92. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Completions___Modules.tmPreferences +0 -95
  93. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Completions___Modules_Identifiers.tmPreferences +0 -80
  94. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Default_Tag_Inside_Virtual_Host.tmPreferences +0 -24
  95. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Directory.tmPreferences +0 -19
  96. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Location.tmPreferences +0 -19
  97. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___VHost_Directory.tmPreferences +0 -19
  98. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___VHost_Location.tmPreferences +0 -19
  99. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Virtual_Host.plist +0 -19
  100. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_AllowOverride___allow__.tmSnippet +0 -16
  101. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_Options___opt__.tmSnippet +0 -16
  102. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_VirtualHost___vhost__.plist +0 -22
  103. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Comments___comments__.plist +0 -16
  104. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Cut___cut__.tmSnippet +0 -17
  105. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Date___date__.plist +0 -16
  106. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Keywords___keyw__.plist +0 -16
  107. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Ping___ping__.plist +0 -17
  108. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Pings___pings__.plist +0 -16
  109. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Tags___tags__.plist +0 -16
  110. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Title___title__.plist +0 -16
  111. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List.tmPreferences +0 -21
  112. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_Separator__.tmPreferences +0 -21
  113. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_item_scopes__.tmPreferences +0 -21
  114. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_items__.tmPreferences +0 -21
  115. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Begin_Captures.tmSnippet +0 -18
  116. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Content_Name.tmSnippet +0 -16
  117. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_ENV____TM___________.tmSnippet +0 -16
  118. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_End_Captures.tmSnippet +0 -18
  119. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Grammar____Single_Quotes.tmSnippet +0 -16
  120. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Patterns___Repository__.tmSnippet +0 -20
  121. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Require___Support__lib__________.tmSnippet +0 -16
  122. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule___Begin____End__.tmSnippet +0 -19
  123. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule___Repository__.tmSnippet +0 -20
  124. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Begin____End___Inside_Rule__.tmSnippet +0 -17
  125. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Match___Inside_Rule__.tmSnippet +0 -16
  126. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Match___Repository__.tmSnippet +0 -19
  127. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_Qt_C_____Completitions.tmPreferences +0 -161
  128. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_Qt_C_____Indentation_Rules.tmPreferences +0 -19
  129. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Comments.tmPreferences +0 -24
  130. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Completitions.tmPreferences +0 -44
  131. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Typing_Pairs.tmPreferences +0 -22
  132. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_Block_Comment.tmSnippet +0 -18
  133. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_Block_Comment_Newline.tmSnippet +0 -17
  134. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_QTimer____singleShot_______.tmSnippet +0 -16
  135. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_main___qmain__.tmSnippet +0 -23
  136. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qSort_______.tmSnippet +0 -16
  137. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qWarning___warn__.tmSnippet +0 -16
  138. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qmake_Project_template_stub.tmSnippet +0 -36
  139. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_toLatin1_____data_______latin__.tmSnippet +0 -16
  140. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_toUtf8_____data____.tmSnippet +0 -16
  141. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Comments___C______.tmPreferences +0 -42
  142. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Disable_Spell_Checking.plist +0 -17
  143. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_Completion.plist +0 -19
  144. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_Completion___System__.tmPreferences +0 -38
  145. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_typing_pairs.plist +0 -37
  146. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Indentation_Rules.plist +0 -38
  147. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Symbol_List___Indent_Class_Methods.tmPreferences +0 -20
  148. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Template__cast_typing_pairs.plist +0 -29
  149. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_010_main_______main__.plist +0 -20
  150. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_030_for_int_loop___fori__.plist +0 -19
  151. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_Include_header_once_only_guard.plist +0 -28
  152. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___1_begin_________1_end_______beginend__.plist +0 -16
  153. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___endif.plist +0 -17
  154. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___ifndef__________define__________endif.tmSnippet +0 -18
  155. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___include________Inc__.plist +0 -16
  156. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___pragma_mark___mark__.plist +0 -21
  157. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_class______class__.plist +0 -24
  158. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_do___while_loop___do__.plist +0 -18
  159. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_fprintf_______.tmSnippet +0 -16
  160. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_if______if__.plist +0 -19
  161. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_namespace______namespace__.plist +0 -20
  162. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_printf______printf__.plist +0 -16
  163. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_read_file___readF__.plist +0 -23
  164. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_std____map___map__.plist +0 -16
  165. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_std____vector___v__.plist +0 -16
  166. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_template___typename________template__.plist +0 -16
  167. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Property_Completions.tmPreferences +0 -151
  168. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Property_Value_Completions.tmPreferences +0 -144
  169. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Symbol_List___Group.tmPreferences +0 -19
  170. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Symbol_list.tmPreferences +0 -19
  171. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_Fixed_Position_Bottom_100___wide_IE6.tmSnippet +0 -18
  172. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next___important_CSS_______.plist +0 -18
  173. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background____color_image_repeat_attachment_position___background__.plist +0 -16
  174. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__attachment___scroll__fixed___background__.plist +0 -16
  175. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__hex___background__.plist +0 -16
  176. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__name___background__.plist +0 -16
  177. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__rgb___background__.plist +0 -16
  178. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____transparent___background__.plist +0 -16
  179. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__image____none___background__.plist +0 -16
  180. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__image____url___background__.plist +0 -16
  181. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__position____position___background__.plist +0 -16
  182. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__repeat____r__r__x__r__y__n__r___background__.plist +0 -16
  183. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border_____size_style_color___border__.plist +0 -16
  184. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom___size_style_color___border__.plist +0 -16
  185. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__color___size_style_color___border__.plist +0 -16
  186. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__style___size_style_color___border__.plist +0 -16
  187. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__width___size_style_color___border__.plist +0 -16
  188. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__color___color___border__.plist +0 -16
  189. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left___size_style_color___border__.plist +0 -16
  190. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__color___color___border__.plist +0 -16
  191. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__style___style___border__.plist +0 -16
  192. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__width___size___border__.plist +0 -16
  193. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right___size_style_color___border__.plist +0 -16
  194. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__color___color___border__.plist +0 -16
  195. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__style___style___border__.plist +0 -16
  196. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__width___size___border__.plist +0 -16
  197. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__style___style___border__.plist +0 -16
  198. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top___size_style_color___border__.plist +0 -16
  199. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__color___color___border__.plist +0 -16
  200. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__style___style___border__.plist +0 -16
  201. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__width___size___border__.plist +0 -16
  202. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__width___width___border__.plist +0 -16
  203. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_clear___value___clear__.plist +0 -16
  204. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__hex___color__.plist +0 -16
  205. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__name___color__.plist +0 -16
  206. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__rgb___color__.plist +0 -16
  207. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_cursor___type___cursor__.plist +0 -16
  208. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_cursor___url___cursor__.plist +0 -16
  209. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_direction___ltr__rtl___direction__.plist +0 -16
  210. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___block___display__.plist +0 -16
  211. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___common__types___display__.plist +0 -16
  212. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___inline___display__.plist +0 -16
  213. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___table__types___display__.plist +0 -16
  214. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_filter___AlphaImageLoader___for_IE_PNGs_____background__.plist +0 -19
  215. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_float___left__right__none___float__.plist +0 -16
  216. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font_____style_variant_weight_size__line__height_font___family___font__.plist +0 -16
  217. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font___size_font___font__.plist +0 -16
  218. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__family_____family___font__.plist +0 -16
  219. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__size___size___font__.plist +0 -16
  220. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__style_____normal__italic__oblique___font__.plist +0 -16
  221. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__variant_____normal__small__caps___font__.plist +0 -16
  222. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__weight___weight___font__.plist +0 -16
  223. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_letter__spacing_____length__em___letter__.plist +0 -16
  224. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_letter__spacing_____length__px___letter__.plist +0 -16
  225. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style___type_position_image___list__.plist +0 -16
  226. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__image___url___list__.plist +0 -16
  227. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__position___pos___list__.plist +0 -16
  228. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___asian___list__.plist +0 -16
  229. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___marker__list__.plist +0 -16
  230. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___numeric___list__.plist +0 -16
  231. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___other___list__.plist +0 -16
  232. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___roman__alpha__greek___list__.plist +0 -16
  233. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin___T_R_B_L___margin__.plist +0 -16
  234. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin___V_H___margin__.plist +0 -16
  235. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin_____all___margin__.plist +0 -16
  236. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__bottom___length___margin__.plist +0 -16
  237. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__left___length___margin__.plist +0 -16
  238. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__right___length___margin__.plist +0 -16
  239. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__top___length___margin__.plist +0 -16
  240. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_marker__offset___auto___marker__.plist +0 -16
  241. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_marker__offset___length___marker__.plist +0 -16
  242. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_opacity_____for_Safari___FF_and_IE_____opacity__.plist +0 -18
  243. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_overflow___type___overflow__.plist +0 -16
  244. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____T_R_B_L___padding__.plist +0 -16
  245. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____V_H___padding__.plist +0 -16
  246. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____all___padding__.plist +0 -16
  247. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__bottom___length___margin__.plist +0 -16
  248. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__left___length___margin__.plist +0 -16
  249. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__right___length___margin__.plist +0 -16
  250. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__top___length___margin__.plist +0 -16
  251. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_position___type___position__.plist +0 -16
  252. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_properties_______________.plist +0 -19
  253. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__align___left__center__right___txt__.plist +0 -16
  254. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__decoration___none__underline__overline__line__through__blink___text__.plist +0 -16
  255. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__indent___length___text__.plist +0 -16
  256. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___color__hex_x_y_blur___text__.plist +0 -16
  257. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___color__rgb_x_y_blur___text__.plist +0 -16
  258. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___none___text__.plist +0 -16
  259. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__transform___capitalize__upper__lower___text__.plist +0 -16
  260. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__transform___none___text__.plist +0 -16
  261. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_vertical__align___type___vertical__.plist +0 -16
  262. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_visibility___type___visibility__.plist +0 -16
  263. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_white__space____normal__pre__nowrap___white__.plist +0 -16
  264. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_word__spacing____length___word__.plist +0 -16
  265. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_word__spacing____normal___word__.plist +0 -16
  266. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_z__index___index___z__.plist +0 -16
  267. data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Cucumber_Plain_Text_Feature_Completions.tmPreferences +0 -30
  268. data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Scenario.tmPreferences +0 -19
  269. data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Steps.tmPreferences +0 -17
  270. data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Steps_with_String.tmPreferences +0 -17
  271. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -21
  272. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/next_Symbol_List__Method__Constructor.tmPreferences +0 -20
  273. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_Continue_Block_Comment.tmSnippet +0 -18
  274. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_err_format.tmSnippet +0 -16
  275. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_foreach_reverse.tmSnippet +0 -18
  276. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_if_else.tmSnippet +0 -21
  277. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_error.tmSnippet +0 -16
  278. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_fatal.tmSnippet +0 -16
  279. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_info.tmSnippet +0 -16
  280. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_trace.tmSnippet +0 -16
  281. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_warn.tmSnippet +0 -16
  282. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_main_with_args.tmSnippet +0 -19
  283. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_out_format.tmSnippet +0 -16
  284. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_catch.tmSnippet +0 -20
  285. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_catch_finally.tmSnippet +0 -22
  286. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_finally.tmSnippet +0 -20
  287. data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Changed.plist +0 -19
  288. data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Deleted.plist +0 -19
  289. data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Diff_metadata.plist +0 -21
  290. data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Header.plist +0 -19
  291. data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Inserted.plist +0 -19
  292. data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Range.plist +0 -21
  293. data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Symbol_List___Indent_Ranges.plist +0 -24
  294. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Preferences/next_Disable_spell_checking_in_raw.tmPreferences +0 -17
  295. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Preferences/next_Show_Heading_in_list.tmPreferences +0 -25
  296. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_1.tmSnippet +0 -17
  297. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_2.tmSnippet +0 -17
  298. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_3.tmSnippet +0 -17
  299. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_4.tmSnippet +0 -17
  300. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_5.tmSnippet +0 -17
  301. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Left_Header.tmSnippet +0 -16
  302. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Numbered_item.tmSnippet +0 -16
  303. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Numbered_item_2.tmSnippet +0 -19
  304. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Table_Cell.tmSnippet +0 -16
  305. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Top_Header.tmSnippet +0 -16
  306. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Unnumbered_item.tmSnippet +0 -16
  307. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Unnumbered_item_2.tmSnippet +0 -19
  308. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Completions_HTML_Attributes.tmPreferences +0 -346
  309. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Empty_tag_typing_pairs.plist +0 -26
  310. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Symbol_List___ID.plist +0 -17
  311. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Tag_Completions.tmPreferences +0 -30
  312. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Tag_preferences.plist +0 -48
  313. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Arrow___arrow__.plist +0 -16
  314. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Backspace___backspace__.plist +0 -16
  315. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Backtab___backtab__.plist +0 -16
  316. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Command___command__.plist +0 -16
  317. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Control___control__.plist +0 -16
  318. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Delete___delete__.plist +0 -16
  319. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_HTML_4_0_Strict.plist +0 -18
  320. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTL_1_0_Frameset.plist +0 -18
  321. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_0_Strict.plist +0 -18
  322. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_0_Transitional.plist +0 -18
  323. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_1.plist +0 -18
  324. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Down___down__.plist +0 -16
  325. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Embed_QT_movie___movie__.plist +0 -26
  326. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Enter___enter__.plist +0 -16
  327. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Escape___escape__.plist +0 -16
  328. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_HTML________4_0_Transitional___doctype__.plist +0 -18
  329. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer.tmSnippet +0 -16
  330. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_0_only.tmSnippet +0 -16
  331. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_5_only.tmSnippet +0 -16
  332. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_x.tmSnippet +0 -16
  333. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_6_and_below.tmSnippet +0 -16
  334. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_6_only.tmSnippet +0 -16
  335. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_7__.tmSnippet +0 -16
  336. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___NOT_Internet_Explorer.tmSnippet +0 -16
  337. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Input_with_Label.tmSnippet +0 -19
  338. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Left___left__.plist +0 -16
  339. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Option___option__.plist +0 -16
  340. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Return___return__.plist +0 -16
  341. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Right___right__.plist +0 -16
  342. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Select_Box.tmSnippet +0 -22
  343. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Shift___shift__.plist +0 -16
  344. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Smart_return__indent_for_tag_pairs.plist +0 -18
  345. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Tab___tab__.plist +0 -16
  346. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Up___up__.plist +0 -16
  347. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Wrap_Selection_In_Tag.plist +0 -16
  348. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Wrap_in___________________.plist +0 -14
  349. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML_____input__.plist +0 -16
  350. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML_____textarea__.plist +0 -16
  351. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___a_mailto_____.plist +0 -16
  352. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___base__.plist +0 -16
  353. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___body__.plist +0 -18
  354. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___br_____.plist +0 -16
  355. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___div__.plist +0 -18
  356. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___form__.plist +0 -20
  357. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___h1__.plist +0 -16
  358. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___head__.plist +0 -20
  359. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___link__.plist +0 -16
  360. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___meta__.plist +0 -16
  361. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___nbsp___NonBreakingSpace.plist +0 -16
  362. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___script__.plist +0 -18
  363. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___script_src_____.plist +0 -16
  364. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___style__.plist +0 -18
  365. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___table__.plist +0 -19
  366. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___title__.plist +0 -16
  367. data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Indent_Patterns.plist +0 -17
  368. data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Symbol_List.tmPreferences +0 -17
  369. data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Typing_Pairs.plist +0 -42
  370. data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/next___.plist +0 -16
  371. data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/next_t______f_t.tmSnippet +0 -16
  372. data/plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/next_Bulletin_Board.tmPreferences +0 -24
  373. data/plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/next_Fallback___not_supported__.tmPreferences +0 -22
  374. data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/next_Indentation_Rules.plist +0 -21
  375. data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/next_Typing_Pairs.plist +0 -37
  376. data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Indented_Bracketed_Line.plist +0 -20
  377. data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Indented_return.plist +0 -18
  378. data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Object_clone_do.plist +0 -18
  379. data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_clone_do.plist +0 -18
  380. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -21
  381. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Classes.tmPreferences +0 -17
  382. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Class_Methods.tmPreferences +0 -22
  383. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Classes.tmPreferences +0 -19
  384. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Inner_Class_Methods.tmPreferences +0 -22
  385. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Inner_Classes.tmPreferences +0 -19
  386. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Method.plist +0 -22
  387. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_constant_string.tmSnippet +0 -16
  388. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_else_if.tmSnippet +0 -18
  389. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_for___each__.tmSnippet +0 -18
  390. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_import_junit_framework_TestCase__.tmSnippet +0 -17
  391. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_method___main__.tmSnippet +0 -18
  392. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_test_case.tmSnippet +0 -18
  393. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Preferences/next_Prototype_Completions.tmPreferences +0 -185
  394. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Ajax_Options.tmSnippet +0 -23
  395. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Create_Class_Alt.tmSnippet +0 -23
  396. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Effect_Options.tmSnippet +0 -21
  397. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Enum_each___element__.tmSnippet +0 -19
  398. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Enum_each___index__.tmSnippet +0 -18
  399. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next___.tmSnippet +0 -16
  400. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next___function___________.tmSnippet +0 -18
  401. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next______Select_DOM_Element__.tmSnippet +0 -16
  402. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_____this__.tmSnippet +0 -16
  403. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxError.tmSnippet +0 -19
  404. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSend.tmSnippet +0 -19
  405. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSetup.tmSnippet +0 -28
  406. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSuccess.tmSnippet +0 -18
  407. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajax__hash__.tmSnippet +0 -28
  408. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____get.tmSnippet +0 -19
  409. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getIfModified.tmSnippet +0 -19
  410. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getJSON.tmSnippet +0 -21
  411. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getScript.tmSnippet +0 -19
  412. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____post.tmSnippet +0 -23
  413. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____trim.tmSnippet +0 -16
  414. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___checked.tmSnippet +0 -18
  415. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___contains____test____.tmSnippet +0 -18
  416. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___disabled.tmSnippet +0 -18
  417. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___empty.tmSnippet +0 -18
  418. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___enabled.tmSnippet +0 -18
  419. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___eq__n__.tmSnippet +0 -18
  420. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___even.tmSnippet +0 -18
  421. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first.tmSnippet +0 -18
  422. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first__child.tmSnippet +0 -18
  423. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first__of__type.tmSnippet +0 -18
  424. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___gt__n__.tmSnippet +0 -18
  425. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___hidden.tmSnippet +0 -19
  426. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last.tmSnippet +0 -18
  427. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last__child.tmSnippet +0 -18
  428. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last__of__type.tmSnippet +0 -18
  429. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___lt__n__.tmSnippet +0 -18
  430. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___not__s__.tmSnippet +0 -18
  431. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__child__n__.tmSnippet +0 -18
  432. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__last__child__n__.tmSnippet +0 -18
  433. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__of__type__n__.tmSnippet +0 -18
  434. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___odd.tmSnippet +0 -18
  435. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___only__child.tmSnippet +0 -18
  436. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___only__of__type.tmSnippet +0 -18
  437. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___parent.tmSnippet +0 -19
  438. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___root.tmSnippet +0 -18
  439. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___visible.tmSnippet +0 -19
  440. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_attr__hash__.tmSnippet +0 -16
  441. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_css__hash__.tmSnippet +0 -16
  442. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeIn____with_callback.tmSnippet +0 -19
  443. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeOut____with_callback.tmSnippet +0 -19
  444. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeTo____with_callback.tmSnippet +0 -19
  445. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_hide____with_callback.tmSnippet +0 -19
  446. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_load___AHAH__.tmSnippet +0 -21
  447. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_show____with_callback.tmSnippet +0 -19
  448. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_slideDown____with_callback.tmSnippet +0 -19
  449. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_slideUp____with_callback.tmSnippet +0 -19
  450. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_toggle___show__hide__.tmSnippet +0 -16
  451. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_JavaScript_Indent.tmPreferences +0 -19
  452. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Banned.tmPreferences +0 -17
  453. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Class.tmPreferences +0 -21
  454. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Instance.tmPreferences +0 -21
  455. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Sub_1.tmPreferences +0 -21
  456. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Sub_2.tmPreferences +0 -21
  457. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Get_Elements.tmSnippet +0 -16
  458. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Method.tmSnippet +0 -18
  459. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Method_String.tmSnippet +0 -18
  460. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Value_JS.tmSnippet +0 -16
  461. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_key________key_____value__.tmSnippet +0 -18
  462. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Prototype___proto__.plist +0 -19
  463. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_for______________________.tmSnippet +0 -18
  464. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_for_________________________faster__.tmSnippet +0 -18
  465. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_function___fun__.plist +0 -18
  466. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_if_____else.tmSnippet +0 -16
  467. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_setTimeout_function.tmSnippet +0 -16
  468. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Beamer_Symbol_List.tmPreferences +0 -21
  469. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Cite_Completion.plist +0 -19
  470. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Disable_Smart_Typing_after_Backslashes.tmPreferences +0 -19
  471. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Label_Completion.plist +0 -19
  472. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Miscellaneous___BibTeX__.tmPreferences +0 -53
  473. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Smart_Typing___Strings__.tmPreferences +0 -65
  474. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Spell_Checking___Disable_for_Comments.tmPreferences +0 -17
  475. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Spell_Checking_in_Strings.tmPreferences +0 -17
  476. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Symbol_list.plist +0 -28
  477. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_TexShop_comments.plist +0 -17
  478. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Beamer_Overlay_Specification.tmSnippet +0 -16
  479. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Change_Style_of_selected_text.plist +0 -16
  480. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Displaymath_________.plist +0 -20
  481. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Gather__ed__.tmSnippet +0 -20
  482. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Item__description__.plist +0 -16
  483. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Lines_to_list_environment.plist +0 -19
  484. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Math_mode__________.plist +0 -16
  485. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_New_Line.tmSnippet +0 -17
  486. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Sub_Paragraph.tmSnippet +0 -19
  487. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Unnumbered_Equation.tmSnippet +0 -18
  488. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_Selection_in_Environment.plist +0 -19
  489. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_in___left____right.plist +0 -16
  490. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_selection_in_double_quotes.tmSnippet +0 -16
  491. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___begin____________end____.tmSnippet +0 -18
  492. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___section______section__.plist +0 -19
  493. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___subsection______sub__.plist +0 -19
  494. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___subsubsection______ssub__.plist +0 -19
  495. data/plugins/textmate/vendor/redcar-bundles/Bundles/Lisp.tmbundle/Snippets/next_____.tmSnippet +0 -16
  496. data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Disable_spell_checking_for_raw.plist +0 -17
  497. data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Indent___Raw.plist +0 -19
  498. data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Symbol_List___Heading.plist +0 -23
  499. data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Typing_Pairs___Disable___for_Raw.plist +0 -42
  500. data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Snippets/next_Hard_linebreak.plist +0 -17
  501. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Add_Magic_Methods_to_the_Symbol_List.tmPreferences +0 -17
  502. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Completion___includes.tmPreferences +0 -30
  503. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Disable_spellcheck_in_require.tmPreferences +0 -17
  504. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Enable_Spellchecking_for_Docblocks.tmPreferences +0 -17
  505. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -19
  506. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Symbols_List___functions.tmPreferences +0 -19
  507. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Continue_Block_Comment.tmSnippet +0 -18
  508. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Include_TextMate_Support_Script.tmSnippet +0 -25
  509. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_class.tmSnippet +0 -26
  510. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_class_var.tmSnippet +0 -23
  511. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_constant_definition.tmSnippet +0 -21
  512. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_function.tmSnippet +0 -26
  513. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_function_signature.tmSnippet +0 -26
  514. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_header.tmSnippet +0 -30
  515. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_interface.tmSnippet +0 -26
  516. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHP_Error_Catching.tmSnippet +0 -17
  517. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Special___Return_Between_PHP_Tags.tmSnippet +0 -18
  518. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Start_Docblock.tmSnippet +0 -18
  519. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next___GLOBALS________.tmSnippet +0 -16
  520. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____COOKIE________.tmSnippet +0 -16
  521. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____ENV________.tmSnippet +0 -16
  522. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____FILES________.tmSnippet +0 -16
  523. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____GET________.tmSnippet +0 -16
  524. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____POST________.tmSnippet +0 -16
  525. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____REQUEST________.tmSnippet +0 -16
  526. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____SERVER________.tmSnippet +0 -16
  527. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____SESSION________.tmSnippet +0 -16
  528. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_______________php.tmSnippet +0 -16
  529. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_____.tmSnippet +0 -16
  530. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_echo_________.tmSnippet +0 -16
  531. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_echo_htmlentities____________.tmSnippet +0 -16
  532. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_else_______.tmSnippet +0 -16
  533. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_foreach_________________php_endforeach_____.tmSnippet +0 -18
  534. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_if______________________php_else______________php_endif_____.tmSnippet +0 -20
  535. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_if______________________php_endif_____.tmSnippet +0 -18
  536. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_class______.tmSnippet +0 -27
  537. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_define_____.tmSnippet +0 -17
  538. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_defined_____.tmSnippet +0 -16
  539. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_do_while_____.tmSnippet +0 -18
  540. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_echo____.tmSnippet +0 -16
  541. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_else_____.tmSnippet +0 -18
  542. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_elseif_____.tmSnippet +0 -18
  543. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_for_____.tmSnippet +0 -18
  544. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_foreach_____.tmSnippet +0 -18
  545. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_function_xx_____.tmSnippet +0 -19
  546. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if_____.tmSnippet +0 -18
  547. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if______a____b__.tmSnippet +0 -16
  548. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if______else_____.tmSnippet +0 -21
  549. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_include_____.tmSnippet +0 -16
  550. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_include_once_____.tmSnippet +0 -16
  551. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_new_array_____.tmSnippet +0 -16
  552. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_require_____.tmSnippet +0 -16
  553. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_require_once_____.tmSnippet +0 -16
  554. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return_FALSE__.tmSnippet +0 -16
  555. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return_TRUE__.tmSnippet +0 -16
  556. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return___retVal__.tmSnippet +0 -16
  557. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_switch_____.tmSnippet +0 -24
  558. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_switch______case__.tmSnippet +0 -18
  559. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_try___________catch__________________.tmSnippet +0 -23
  560. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_while_____.tmSnippet +0 -18
  561. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl HTML-Template.tmbundle/Snippets/next_If__Else.tmSnippet +0 -20
  562. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl Template Toolkit.tmbundle/Preferences/next_Filename_Settings.plist +0 -17
  563. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_if__else___ife__.plist +0 -21
  564. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_if__elsif__else___ifee__.plist +0 -23
  565. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_one__line___unless__.plist +0 -17
  566. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_one__line___xif__.plist +0 -17
  567. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Function___sub__.plist +0 -19
  568. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Loop_one__line___xforeach__.plist +0 -17
  569. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Loop_one__line___xwhile__.plist +0 -17
  570. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_hash_pointer.plist +0 -16
  571. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_draw___se__.plist +0 -18
  572. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_float_______float______.plist +0 -16
  573. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_float___float__.plist +0 -16
  574. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_int_______int______.plist +0 -16
  575. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_int___int__.plist +0 -16
  576. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_opengl___gl__.plist +0 -16
  577. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_setup___se__.plist +0 -18
  578. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_size___size__.plist +0 -16
  579. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_string_______string______.plist +0 -16
  580. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_string___str__.plist +0 -16
  581. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_void_method___void__.plist +0 -18
  582. data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -19
  583. data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Symbol_List.plist +0 -17
  584. data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Typing_Pairs.plist +0 -50
  585. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/next_Symbol_List.tmPreferences +0 -22
  586. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/next_Symbol_List___Hide_Decorator.tmPreferences +0 -17
  587. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_Class_Def___Insert_________.tmSnippet +0 -16
  588. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_Function___Insert_________.tmSnippet +0 -16
  589. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_String___Insert___________.tmSnippet +0 -16
  590. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Class.tmSnippet +0 -19
  591. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Function.tmSnippet +0 -22
  592. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Method.tmSnippet +0 -17
  593. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Property.tmSnippet +0 -25
  594. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except.tmSnippet +0 -19
  595. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Else.tmSnippet +0 -21
  596. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Else__Finally.tmSnippet +0 -23
  597. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Finally.tmSnippet +0 -21
  598. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_if___name____________main____.tmSnippet +0 -17
  599. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Preferences/next_Symbol_List___Behaviour.tmPreferences +0 -19
  600. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Preferences/next_Symbol_List___Example.tmPreferences +0 -19
  601. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Custom_Matcher.tmSnippet +0 -39
  602. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Require_spec_helper.tmSnippet +0 -16
  603. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Set_Controller_for_Spec.tmSnippet +0 -16
  604. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_____.tmSnippet +0 -17
  605. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_eql.tmSnippet +0 -17
  606. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_not_____.tmSnippet +0 -17
  607. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_not_eql.tmSnippet +0 -17
  608. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Preferences/next_Template___ERB__.tmPreferences +0 -48
  609. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Preferences/next_Template___Haml__.tmPreferences +0 -48
  610. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_180_rails_form_tag.plist +0 -18
  611. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_binary_column.tmSnippet +0 -17
  612. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_boolean_column.tmSnippet +0 -17
  613. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_controller_class.tmSnippet +0 -25
  614. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_date_column.tmSnippet +0 -17
  615. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_datetime_column.tmSnippet +0 -17
  616. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_decimal_column.tmSnippet +0 -17
  617. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_float_column.tmSnippet +0 -17
  618. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_functional_test_class.tmSnippet +0 -21
  619. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_integer_column.tmSnippet +0 -17
  620. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_lock_version_column.tmSnippet +0 -17
  621. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_references_column.tmSnippet +0 -17
  622. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_string_column.tmSnippet +0 -17
  623. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_text_column.tmSnippet +0 -17
  624. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_time_column.tmSnippet +0 -17
  625. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_timestamp_column.tmSnippet +0 -17
  626. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_timestamps_columns.tmSnippet +0 -17
  627. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Create_Column_Continue___mccc__.plist +0 -17
  628. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Create_Column___mcc__.plist +0 -17
  629. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Drop_Create_Table___mdct__.plist +0 -16
  630. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Remove_and_Add_Column___mrac__.plist +0 -16
  631. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_RAILS_DEFAULT_LOGGER_debug___rdb__.plist +0 -16
  632. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Table_column__s___rename.tmSnippet +0 -17
  633. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Test_Assert_Redirected_To___art__.plist +0 -16
  634. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Test_Assert_Response___are__.plist +0 -16
  635. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next___3C_____Fixtures_identify____3Asymbol_______3E.tmSnippet +0 -16
  636. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next___LABEL.tmSnippet +0 -16
  637. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert__var____assigns____3Avar____.tmSnippet +0 -17
  638. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___nested_path__.tmSnippet +0 -16
  639. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___nested_path_plural__.tmSnippet +0 -16
  640. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___path__.tmSnippet +0 -16
  641. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___path_plural__.tmSnippet +0 -16
  642. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_belongs_to___bt__.plist +0 -16
  643. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_create____resource.tmSnippet +0 -30
  644. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_get_request.tmSnippet +0 -21
  645. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_post_request.tmSnippet +0 -21
  646. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find____3Aall__.tmSnippet +0 -16
  647. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find____3Afirst__.tmSnippet +0 -16
  648. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find__id__.tmSnippet +0 -16
  649. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_for_loop_erb.tmSnippet +0 -23
  650. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_check_box.tmSnippet +0 -16
  651. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_checkbox.tmSnippet +0 -16
  652. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_file_field.tmSnippet +0 -16
  653. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_file_field_2.tmSnippet +0 -16
  654. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_hidden_field.tmSnippet +0 -16
  655. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_hidden_field_2.tmSnippet +0 -16
  656. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_label.tmSnippet +0 -16
  657. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_label_2.tmSnippet +0 -16
  658. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_password_field.tmSnippet +0 -16
  659. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_password_field_2.tmSnippet +0 -16
  660. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_radio_box.tmSnippet +0 -16
  661. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_radio_box_2.tmSnippet +0 -16
  662. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_submit.tmSnippet +0 -16
  663. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_submit_2.tmSnippet +0 -16
  664. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_area.tmSnippet +0 -16
  665. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_area_2.tmSnippet +0 -16
  666. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_field.tmSnippet +0 -16
  667. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_field_2.tmSnippet +0 -16
  668. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_with_errors.tmSnippet +0 -20
  669. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_and_belongs_to_many___habtm__.plist +0 -16
  670. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___dependent________destroy.tmSnippet +0 -16
  671. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___hm__.plist +0 -16
  672. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___through__.tmSnippet +0 -16
  673. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_one___ho__.plist +0 -16
  674. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___nested_path__.tmSnippet +0 -16
  675. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___nested_path_plural__.tmSnippet +0 -16
  676. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___path__.tmSnippet +0 -16
  677. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___path_plural__.tmSnippet +0 -16
  678. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to_model.tmSnippet +0 -16
  679. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_map______3Asym_proc__.tmSnippet +0 -16
  680. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_named_scope_lambda.tmSnippet +0 -17
  681. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_hide_____2Aids__.tmSnippet +0 -16
  682. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_insert_html___position___id___partial__.tmSnippet +0 -16
  683. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_replace___id___partial__.tmSnippet +0 -16
  684. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_replace_html___id___partial__.tmSnippet +0 -16
  685. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_show_____2Aids__.tmSnippet +0 -16
  686. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_toggle_____2Aids__.tmSnippet +0 -16
  687. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_visual_effect___effect___id__.tmSnippet +0 -16
  688. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_flash.plist +0 -16
  689. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_params.plist +0 -16
  690. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_session.plist +0 -16
  691. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___nested_path__.tmSnippet +0 -16
  692. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___nested_path_plural__.tmSnippet +0 -16
  693. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___path__.tmSnippet +0 -16
  694. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___path_plural__.tmSnippet +0 -16
  695. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___action________ra__.plist +0 -16
  696. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___action__layout_____ral__.plist +0 -16
  697. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___file_____rf__.plist +0 -16
  698. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___file__use_full_path_____rfu__.plist +0 -16
  699. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline_____ri__.plist +0 -16
  700. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline__locals_____ril__.plist +0 -16
  701. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline__type_____rit__.plist +0 -16
  702. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___layout_____rl__.plist +0 -16
  703. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___nothing_____rn__.plist +0 -16
  704. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___nothing__status_____rns__.plist +0 -16
  705. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial_____rp__.plist +0 -16
  706. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__collection_____rpc__.plist +0 -16
  707. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__locals_____rpl__.plist +0 -16
  708. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__object_____rpo__.plist +0 -16
  709. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__status_____rps__.plist +0 -16
  710. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text_____rt__.plist +0 -16
  711. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__layout____3Etrue_____rtlt__.plist +0 -16
  712. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__layout_____rtl__.plist +0 -16
  713. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__status_____rts__.plist +0 -16
  714. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___update__.tmSnippet +0 -18
  715. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_respond_to___html__.tmSnippet +0 -21
  716. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_returning_do___7Cvariable__7C___E2__80__A6_end.tmSnippet +0 -18
  717. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_binary___tcbi__.tmSnippet +0 -17
  718. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_boolean___tcb__.tmSnippet +0 -17
  719. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_date___tcda__.tmSnippet +0 -17
  720. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_datetime___tcdt__.tmSnippet +0 -17
  721. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_decimal___tcd__.tmSnippet +0 -17
  722. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_float___tcf__.tmSnippet +0 -17
  723. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_integer___tci__.tmSnippet +0 -17
  724. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_lock_version___tcl__.tmSnippet +0 -17
  725. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_references___tcr__.tmSnippet +0 -17
  726. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_rename___tre__.tmSnippet +0 -17
  727. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_string___tcs__.tmSnippet +0 -17
  728. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_text___tct__.tmSnippet +0 -17
  729. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_time___tcti__.tmSnippet +0 -17
  730. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_timestamp___tcts__.tmSnippet +0 -17
  731. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_timestamps___tctss__.tmSnippet +0 -17
  732. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_acceptance_of_if.tmSnippet +0 -16
  733. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_associated___va__.plist +0 -16
  734. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_associated_if___vaif__.plist +0 -16
  735. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_confirmation_of___vc__.plist +0 -16
  736. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_confirmation_of_if___vcif__.plist +0 -16
  737. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_exclusion_of___ve__.plist +0 -16
  738. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_exclusion_of_if___veif__.plist +0 -16
  739. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_format_of_if.tmSnippet +0 -16
  740. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_inclusion_of_if.tmSnippet +0 -16
  741. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_length_of___vl__.plist +0 -16
  742. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_length_of_if.tmSnippet +0 -16
  743. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_numericality_of_if.tmSnippet +0 -16
  744. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_presence_of___vp__.plist +0 -16
  745. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_presence_of_if___vpif___2.plist +0 -16
  746. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_uniqueness_of___vu__.plist +0 -16
  747. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_uniqueness_of_if___vuif__.plist +0 -16
  748. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_verify____redirect___verify__.plist +0 -19
  749. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_verify___verify__.plist +0 -19
  750. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_delete.tmSnippet +0 -16
  751. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_get.tmSnippet +0 -16
  752. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_post.tmSnippet +0 -16
  753. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_put.tmSnippet +0 -16
  754. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Block_typing_pairs.plist +0 -42
  755. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Completion___ENV___________variables.tmPreferences +0 -17
  756. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Completion___require_strings.tmPreferences +0 -22
  757. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Symbo_List___Method.plist +0 -19
  758. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Symbol_List___No_Function_Call.tmPreferences +0 -17
  759. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_060_ruby_if_else.plist +0 -20
  760. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_070_ruby_if.plist +0 -18
  761. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_080_ruby_case.plist +0 -19
  762. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Add_____________Marker.tmSnippet +0 -16
  763. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Array_new__10________i____________Arr__.plist +0 -16
  764. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Benchmark_bmbm_______do____end.tmSnippet +0 -19
  765. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Dir__________.tmSnippet +0 -16
  766. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Dir_glob___________do___file______end____Dir__.plist +0 -16
  767. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_foreach____________do___line______end____File__.plist +0 -16
  768. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_open________________file________.tmSnippet +0 -16
  769. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_read__________.tmSnippet +0 -16
  770. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Hash_new______hash___key___hash__key_______________Has__.plist +0 -16
  771. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Insert_ERb__s______________or_______________.tmSnippet +0 -16
  772. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Marshal_dump__obj___file______Md__.plist +0 -16
  773. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Marshal_load__obj______Ml__.plist +0 -16
  774. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_PStore_new________.tmSnippet +0 -16
  775. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_RDoc_documentation_block.tmSnippet +0 -20
  776. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Wrap_in_Begin________Rescue________End.plist +0 -23
  777. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_YAML_dump_______file______Yd____.plist +0 -16
  778. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_YAML_load__file______Yl____.plist +0 -16
  779. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_______usr__local__bin__ruby___w.plist +0 -17
  780. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next___yields___RDoc_comment.tmSnippet +0 -16
  781. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_alias_method_______am__.plist +0 -16
  782. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_all________e____________all__.plist +0 -16
  783. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_any________e____________any__.plist +0 -16
  784. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_application_code_______app__.plist +0 -18
  785. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert__________as__.plist +0 -16
  786. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_in_delta__________asid__.plist +0 -16
  787. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_instance_of__________asio__.plist +0 -16
  788. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_kind_of__________asko__.plist +0 -16
  789. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_match__________asm__.plist +0 -16
  790. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nil__________asn__.plist +0 -16
  791. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_no_match__________asnm__.plist +0 -16
  792. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_equal__________asne__.plist +0 -16
  793. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_nil__________asnn__.plist +0 -16
  794. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_same__________asns__.plist +0 -16
  795. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nothing_raised___________________asnr__.plist +0 -16
  796. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nothing_thrown_____________asnt__.plist +0 -16
  797. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_operator__________aso__.plist +0 -16
  798. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_raise___________________asr__.plist +0 -16
  799. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_respond_to__________asrt__.plist +0 -16
  800. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_same__________ass__.plist +0 -16
  801. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_send__________ass__.plist +0 -16
  802. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_throws___________________ast__.plist +0 -16
  803. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_accessor_______rw__.plist +0 -16
  804. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_reader_______r__.plist +0 -16
  805. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_writer_______w__.plist +0 -16
  806. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______DelegateClass____initialize____end____class__.plist +0 -24
  807. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______ParentClass____initialize____end.plist +0 -22
  808. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______Struct____initialize____end.plist +0 -22
  809. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______Test____Unit____TestCase____end____tc__.plist +0 -24
  810. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class______self____end.tmSnippet +0 -18
  811. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____end____cla__.plist +0 -18
  812. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____initialize____end.plist +0 -22
  813. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____instance_methods____undef____initialize____end____class__.plist +0 -30
  814. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_from_name________clafn__.plist +0 -16
  815. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_classify______e____________clas__.plist +0 -16
  816. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_collect______e____________col__.plist +0 -16
  817. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_deep_copy__________dee__.plist +0 -16
  818. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_delegator______defd__.plist +0 -16
  819. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_delegators______defds__.plist +0 -16
  820. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_end.plist +0 -18
  821. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_method_missing____end____mm__.plist +0 -18
  822. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_self____end____defs__.plist +0 -18
  823. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_test_____end____t__.plist +0 -18
  824. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_delete_if______e____________deli__.plist +0 -16
  825. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_detect______e____________det__.plist +0 -16
  826. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_directory____.tmSnippet +0 -16
  827. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_do___obj______end___doo__.plist +0 -18
  828. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_downto__0________n____________dow__.plist +0 -16
  829. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each______e____________ea__.plist +0 -16
  830. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_byte______byte____________eab__.plist +0 -16
  831. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_char______chr____________eac____.plist +0 -16
  832. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_cons____________group____________eac____.plist +0 -16
  833. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_index______i____________eai__.plist +0 -16
  834. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_key______key____________eak__.plist +0 -16
  835. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_line______line____________eal__.plist +0 -16
  836. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_pair______name___val____________eap__.plist +0 -16
  837. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_slice______group____________eas__.plist +0 -16
  838. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_value______val____________eav__.plist +0 -16
  839. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_with_index______e___i____________eawi__.plist +0 -16
  840. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_elsif____.tmSnippet +0 -17
  841. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_embed_string_variable.plist +0 -16
  842. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_extend_Forwardable____Forw__.plist +0 -16
  843. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_fetch__name________key____________fet__.plist +0 -16
  844. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_fill__range________i____________fil__.plist +0 -16
  845. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_find______e____________fin__.plist +0 -16
  846. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_find_all______e____________fina__.plist +0 -16
  847. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_flatten_once____fla__.plist +0 -16
  848. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_flunk__________fl__.plist +0 -16
  849. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_grep____pattern__________match____________gre__.plist +0 -16
  850. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_gsub________________match____________gsu__.plist +0 -16
  851. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_hash_pair_______.plist +0 -16
  852. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_hash_pointer.plist +0 -16
  853. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_include_Comparable_______Comp__.plist +0 -20
  854. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_include_Enumerable_______Enum__.plist +0 -20
  855. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_inject__init________mem___var____________inj__.plist +0 -16
  856. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_lambda______args____________lam__.plist +0 -16
  857. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_loop_________.tmSnippet +0 -16
  858. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_map______e____________map__.plist +0 -16
  859. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_map_with_index______e___i____________mapwi__.plist +0 -16
  860. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_max______a___b____________max__.plist +0 -16
  861. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_min______a___b____________min__.plist +0 -16
  862. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____ClassMethods____end.plist +0 -29
  863. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____end.plist +0 -18
  864. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____module_function____end.plist +0 -20
  865. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_namespace______do____end.tmSnippet +0 -18
  866. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_open____path__or__url_______w_____do___doc______end___ope__.plist +0 -16
  867. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_open_yield_block_______.plist +0 -16
  868. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_option_parse_____________optp__.plist +0 -43
  869. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_partition______e____________par__.plist +0 -16
  870. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_path_from_here________.tmSnippet +0 -16
  871. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_randomize____ran__.plist +0 -16
  872. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_reject______e____________rej__.plist +0 -16
  873. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require___________req__.plist +0 -16
  874. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require___tc____________ts__.plist +0 -20
  875. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require_gem_______.tmSnippet +0 -16
  876. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_results_report_______________.tmSnippet +0 -16
  877. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_reverse_each______e____________rea__.plist +0 -16
  878. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_scan________________match____________sca__.plist +0 -16
  879. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_select______e____________sel__.plist +0 -16
  880. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_singleton_class____.tmSnippet +0 -16
  881. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sort______a___b____________sor__.plist +0 -16
  882. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sort_by______e____________sorb__.plist +0 -16
  883. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_step__2________e____________ste__.plist +0 -16
  884. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sub________________match____________sub__.plist +0 -16
  885. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_task___task_name__________dependent_____tasks___do____end.tmSnippet +0 -19
  886. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_times______n____________tim__.plist +0 -16
  887. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_transaction_________do____end.tmSnippet +0 -16
  888. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_unix_filter______uni__.plist +0 -18
  889. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_unless___unless__.plist +0 -18
  890. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_until_____end.tmSnippet +0 -18
  891. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_upto__1_0__0_0________n____________upt__.plist +0 -16
  892. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_usage_if________usai__.plist +0 -18
  893. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_usage_unless________usau__.plist +0 -18
  894. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_while_____end.tmSnippet +0 -18
  895. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_xmlread______.tmSnippet +0 -16
  896. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_xpath_______________.tmSnippet +0 -18
  897. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_zip__enums________row____________zip__.plist +0 -16
  898. data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_DynamicForward___df__.tmSnippet +0 -16
  899. data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_Host___host__.tmSnippet +0 -20
  900. data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_IdentityFile___idf__.tmSnippet +0 -16
  901. data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_LocalForward___lf__.tmSnippet +0 -16
  902. data/plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Snippets/next_Try__Catch__Finally.tmSnippet +0 -27
  903. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_______usr__bin__env_____env__.plist +0 -17
  904. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_case____esac___case__.plist +0 -19
  905. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_elif______elif__.plist +0 -17
  906. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_for________in________done___forin__.plist +0 -18
  907. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_for_____done___for__.plist +0 -18
  908. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_here_document___here__.plist +0 -18
  909. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_if_____then___if__.plist +0 -18
  910. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_until__________done__.plist +0 -18
  911. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_while__________done__.plist +0 -18
  912. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Disable_spell_checking_for_all.plist +0 -17
  913. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Enable_spell_checking_for_strings.plist +0 -17
  914. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_String__comment_typing_pairs.plist +0 -42
  915. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Symbol_list.plist +0 -17
  916. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Continue_line_comment.plist +0 -35
  917. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Escaped_Quote_Pair_____________.plist +0 -14
  918. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Escaped_Single_Quote_Pair_____________.plist +0 -14
  919. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Frame_text.plist +0 -16
  920. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next___n.plist +0 -16
  921. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Bold.plist +0 -17
  922. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Italic.plist +0 -17
  923. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Underline.plist +0 -17
  924. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Spell_checking.plist +0 -17
  925. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_010_Copyright.plist +0 -14
  926. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_bullet.plist +0 -17
  927. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_light_bullet.plist +0 -17
  928. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_star_bullet.plist +0 -17
  929. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Insert_ISO_date.plist +0 -14
  930. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Lorem_ipsum.plist +0 -14
  931. data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Smart_Pairs___Regex_Character_Class__.tmPreferences +0 -17
  932. data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Spell_Checking___Disable_for_CamelCase_Words.tmPreferences +0 -17
  933. data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Style___Separator.tmPreferences +0 -19
  934. data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Style___Separator____Release_Notes.tmPreferences +0 -19
  935. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/next_Disable_Spell_Check_in_Raw.plist +0 -17
  936. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/next_Symbol_List___Heading.plist +0 -29
  937. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Block_Quotes.tmSnippet +0 -18
  938. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Class_and_Id.tmSnippet +0 -16
  939. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Color_2.tmSnippet +0 -16
  940. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Convert_Tabs_To_Table.plist +0 -14
  941. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_1.tmSnippet +0 -18
  942. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_2.tmSnippet +0 -18
  943. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_3.tmSnippet +0 -18
  944. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_4.tmSnippet +0 -18
  945. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_5.tmSnippet +0 -18
  946. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_6.tmSnippet +0 -18
  947. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Linked_Image.tmSnippet +0 -16
  948. data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___enum.tmPreferences +0 -19
  949. data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___exception.tmPreferences +0 -19
  950. data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___function.tmPreferences +0 -19
  951. data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___senum.tmPreferences +0 -19
  952. data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___service.tmPreferences +0 -19
  953. data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___struct.tmPreferences +0 -19
  954. data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Preferences/next_Symbol_List___Templates.plist +0 -19
  955. data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_Smart_return__indent_for_tag_pairs.plist +0 -18
  956. data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_XML_Processing_Instruction.tmSnippet +0 -16
  957. data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_long_attribute_tag.plist +0 -17
  958. data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_long_tag.plist +0 -16
  959. data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_short_tag.plist +0 -16
  960. data/plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Snippets/next_line___.tmSnippet +0 -19
@@ -4,5 +4,6 @@ Plugin.define do
4
4
  version "1.0"
5
5
  file "lib", "application_swt"
6
6
  object "Redcar::ApplicationSWT"
7
- dependencies "application", ">0"
7
+ dependencies "application", ">0",
8
+ "swt", ">0"
8
9
  end
@@ -2,7 +2,7 @@ $:.push File.join(File.dirname(__FILE__), '..', '..', '..', 'lib')
2
2
 
3
3
  require 'redcar'
4
4
  Redcar.environment = :test
5
- Redcar.load
5
+ Redcar.load_unthreaded
6
6
 
7
7
  Spec::Runner.configure do |config|
8
8
  config.before(:suite) do
@@ -2,4 +2,4 @@ $:.push File.join(File.dirname(__FILE__), '..', '..', '..', 'lib')
2
2
 
3
3
  require 'redcar'
4
4
  Redcar.environment = :test
5
- Redcar.load
5
+ Redcar.load_unthreaded
@@ -2,7 +2,7 @@ $:.push File.join(File.dirname(__FILE__), '..', '..', '..', 'lib')
2
2
 
3
3
  require 'redcar'
4
4
  Redcar.environment = :test
5
- Redcar.load
5
+ Redcar.load_unthreaded
6
6
 
7
7
  class QuickTask < Redcar::Task
8
8
  def initialize(id=nil)
@@ -12,12 +12,13 @@ module Redcar
12
12
  end
13
13
 
14
14
  def update_list(filter)
15
- @last_list = @matches
16
- filtered_list = @last_list
15
+ @last_list = @matches
16
+ filtered_list = @matches
17
17
  if filter.length >= 1
18
18
  filtered_list = filter_and_rank_by(filtered_list, filter, filtered_list.length) do |match|
19
19
  match[:file].split(::File::SEPARATOR).last
20
20
  end
21
+ @last_list = filtered_list
21
22
  end
22
23
  align_matches_for_display(filtered_list)
23
24
  end
@@ -28,9 +29,9 @@ module Redcar
28
29
  Redcar::Declarations.go_to_definition(@last_list[ix])
29
30
  end
30
31
  end
31
-
32
+
32
33
  private
33
-
34
+
34
35
  def align_matches_for_display(filtered_list)
35
36
  filtered_list.collect do |match|
36
37
  file_path = match[:file]
@@ -2,4 +2,4 @@ $:.push File.join(File.dirname(__FILE__), '..', '..', '..', 'lib')
2
2
 
3
3
  require 'redcar'
4
4
  Redcar.environment = :test
5
- Redcar.load
5
+ Redcar.load_unthreaded
@@ -16,11 +16,11 @@ Feature: Replace in file
16
16
  And I move the cursor to 4
17
17
  And I run the command DocumentSearch::SearchAndReplaceCommand
18
18
  And I type "Rab" into the "Search" field in the speedbar
19
- And I type "RAB" into the "Replace" field in the speedbar
19
+ And I type "RABBIT" into the "Replace" field in the speedbar
20
20
  And I press "Replace" in the speedbar
21
- Then the contents should be "Foo\nBar RAB Rab\nBaz"
22
- And the selected text should be "RAB"
23
- And the selection range should be from 8 to 11
21
+ Then the contents should be "Foo\nBar RABBIT Rab\nBaz"
22
+ And the selected text should be "RABBIT"
23
+ And the selection range should be from 8 to 14
24
24
 
25
25
  Scenario: Replace next occurrence on the same line twice
26
26
  When I replace the contents with "Foo\nBar Rab Rab\nBaz"
@@ -120,4 +120,17 @@ Feature: Replace in file
120
120
  And I press "Replace" in the speedbar
121
121
  Then the contents should be "Curry beef"
122
122
 
123
+ Scenario: Replace should move past the current replacement if the query is a substring of the replacement
124
+ When I replace the contents with "foo\nfoo\nfoo"
125
+ And I move the cursor to 0
126
+ And I run the command DocumentSearch::SearchAndReplaceCommand
127
+ And I type "foo" into the "Search" field in the speedbar
128
+ And I type "foobar" into the "Replace" field in the speedbar
129
+ And I press "Replace" in the speedbar
130
+ And I press "Replace" in the speedbar
131
+ And I press "Replace" in the speedbar
132
+ Then the contents should be "foobar\nfoobar\nfoobar"
133
+ And the selection range should be from 14 to 20
134
+
135
+
123
136
 
@@ -5,9 +5,11 @@ module DocumentSearch
5
5
  end
6
6
 
7
7
  def replace_next(query, replace, &body)
8
- # Get the current line and then get the line segment from the cursor to the end of the line
9
- curr_line = @doc.get_line(@doc.cursor_line)
10
- cursor_line_offset = @doc.cursor_offset - @doc.offset_at_line(@doc.cursor_line)
8
+ # Get the current line and then get the line segment from the cursor or selection to the end of the line
9
+ latest_point = [@doc.cursor_offset, @doc.selection_offset].max
10
+ curr_line_number = @doc.line_at_offset(latest_point)
11
+ cursor_line_offset = latest_point - @doc.offset_at_line(curr_line_number)
12
+ curr_line = @doc.get_line(curr_line_number)
11
13
  line_seg = curr_line[cursor_line_offset..-1]
12
14
 
13
15
  # Call the search method passed by the caller
@@ -2,27 +2,26 @@ module DocumentSearch
2
2
  class Search
3
3
  # An instance of a search type method: Regular expression
4
4
  def self.regex_search_method(line, query, replace)
5
- new_line = line.sub(/#{query}/, replace)
6
-
7
- if match = $~
8
- startoff = match.pre_match.length
9
- endoff = (startoff + match[0].length) - 1
5
+ re = /#{query}/
6
+ if match_data = line.match(re)
7
+ new_text = match_data.to_s.sub(re, replace)
8
+ new_line = match_data.pre_match + new_text + match_data.post_match
10
9
 
11
- return new_line, startoff, startoff + match[0].length
10
+ startoff = match_data.pre_match.length
11
+ endoff = startoff + new_text.length
12
+
13
+ return new_line, startoff, endoff
12
14
  end
13
- return nil
14
15
  end
15
16
 
16
17
  # An instance of a search type method: Plain text search
17
18
  def self.plain_search_method(line, query, replace)
18
- i = line.index(query)
19
- if i
19
+ if i = line.index(query)
20
20
  startoff = i
21
21
  endoff = i + query.length - 1
22
22
  line[startoff..endoff] = replace
23
23
  return line, startoff, startoff + replace.length
24
24
  end
25
- return nil
26
25
  end
27
26
 
28
27
  # An instance of a search type method: Glob text search
@@ -1,23 +1,23 @@
1
1
  Feature: Cut and Paste
2
2
 
3
- Scenario: Cut removes the text
3
+ Background:
4
4
  When I open a new edit tab
5
- And I replace the contents with "Frank"
5
+
6
+ Scenario: Cut removes the text
7
+ When I replace the contents with "Frank"
6
8
  And I select from 0 to 3
7
9
  And I cut text
8
10
  Then I should not see "Fra" in the edit tab
9
11
  And I should see "nk" in the edit tab
10
12
 
11
13
  Scenario: Copy leaves the text
12
- When I open a new edit tab
13
- And I replace the contents with "Frank"
14
+ When I replace the contents with "Frank"
14
15
  And I select from 0 to 3
15
16
  And I copy text
16
17
  Then I should see "Frank" in the edit tab
17
18
 
18
19
  Scenario: Paste inserts the cut text
19
- When I open a new edit tab
20
- And I replace the contents with "Frank"
20
+ When I replace the contents with "Frank"
21
21
  And I select from 0 to 3
22
22
  And I cut text
23
23
  And I move the cursor to 2
@@ -25,8 +25,7 @@ Feature: Cut and Paste
25
25
  Then the contents should be "nkFra<c>"
26
26
 
27
27
  Scenario: Paste inserts the copied text
28
- When I open a new edit tab
29
- And I replace the contents with "Frank"
28
+ When I replace the contents with "Frank"
30
29
  And I select from 0 to 3
31
30
  And I copy text
32
31
  And I move the cursor to 2
@@ -35,8 +34,7 @@ Feature: Cut and Paste
35
34
  Then the contents should be "FrFra<c>ank"
36
35
 
37
36
  Scenario: Paste pastes the most recent copy
38
- When I open a new edit tab
39
- And I replace the contents with "Frank"
37
+ When I replace the contents with "Frank"
40
38
  And I select from 0 to 3
41
39
  And I copy text
42
40
  And I select from 3 to 5
@@ -3,7 +3,7 @@ module Redcar
3
3
  module Default
4
4
 
5
5
  def word
6
- /^\w+$/
6
+ /^\w+$/u
7
7
  end
8
8
  end
9
9
  end
@@ -3,7 +3,7 @@ module Redcar
3
3
  module Ruby
4
4
 
5
5
  def word
6
- /^(\w)+(\?|\!)?$/
6
+ /^(\w)+(\?|\!)?$/u
7
7
  end
8
8
  end
9
9
  end
@@ -2,4 +2,4 @@ $:.push File.join(File.dirname(__FILE__), '..', '..', '..', 'lib')
2
2
 
3
3
  require 'redcar'
4
4
  Redcar.environment = :test
5
- Redcar.load
5
+ Redcar.load_unthreaded
@@ -13,8 +13,9 @@ module Redcar
13
13
  include Redcar::Observable
14
14
 
15
15
  def self.start
16
- gui = ApplicationSWT.gui
17
- gui.register_controllers(Redcar::EditTab => EditViewSWT::Tab)
16
+ if gui = Redcar.gui
17
+ gui.register_controllers(Redcar::EditTab => EditViewSWT::Tab)
18
+ end
18
19
  load_textmate_assets
19
20
  end
20
21
 
@@ -2,4 +2,4 @@ $:.push File.join(File.dirname(__FILE__), '..', '..', '..', 'lib')
2
2
 
3
3
  require 'redcar'
4
4
  Redcar.environment = :test
5
- Redcar.load
5
+ Redcar.load_unthreaded
@@ -251,7 +251,7 @@ module Redcar
251
251
  adapter = DirController.adapter(node, tree)
252
252
  adapter.mv(node.path, new_path)
253
253
  tree.refresh
254
- new_node = DirMirror::Node.create_from_path(adapter, {:fullname => new_path})
254
+ new_node = DirMirror::Node.create_from_path(adapter, {:fullname => new_path, :type => node.type})
255
255
  tree.select(new_node)
256
256
  end
257
257
 
@@ -14,7 +14,7 @@ module Redcar
14
14
  begin
15
15
  puts 'drb opening untitled ' + full_path if $VERBOSE
16
16
  if File.file?(path)
17
- Redcar::ApplicationSWT.sync_exec do
17
+ Swt.sync_exec do
18
18
  Project::Manager.open_untitled_path(path)
19
19
  Redcar.app.focussed_window.controller.bring_to_front
20
20
  end
@@ -30,7 +30,7 @@ module Redcar
30
30
  begin
31
31
  puts 'drb opening ' + full_path if $VERBOSE
32
32
  if File.directory? full_path
33
- Redcar::ApplicationSWT.sync_exec do
33
+ Swt.sync_exec do
34
34
  if Redcar.app.windows.length == 0 and Application.storage['last_open_dir'] == full_path
35
35
  Project::Manager.restore_last_session
36
36
  end
@@ -48,7 +48,7 @@ module Redcar
48
48
  end
49
49
  'ok'
50
50
  elsif full_path == 'just_bring_to_front'
51
- Redcar::ApplicationSWT.sync_exec do
51
+ Swt.sync_exec do
52
52
  if Redcar.app.windows.length == 0
53
53
  Project::Manager.restore_last_session
54
54
  end
@@ -56,7 +56,7 @@ module Redcar
56
56
  end
57
57
  'ok'
58
58
  elsif File.file?(full_path)
59
- Redcar::ApplicationSWT.sync_exec do
59
+ Swt.sync_exec do
60
60
  if Redcar.app.windows.length == 0
61
61
  Project::Manager.restore_last_session
62
62
  end
@@ -7,5 +7,6 @@ Plugin.define do
7
7
  dependencies "edit_view", ">0",
8
8
  "HTML View", ">0",
9
9
  "connection_manager", ">0",
10
- "application", ">=1.1"
10
+ "application", ">=1.1",
11
+ "tree", ">=0"
11
12
  end
@@ -2,7 +2,7 @@ $:.push File.join(File.dirname(__FILE__), '..', '..', '..', 'lib')
2
2
 
3
3
  require 'redcar'
4
4
  Redcar.environment = :test
5
- Redcar.load
5
+ Redcar.load_unthreaded
6
6
 
7
7
  def write_dir_contents(dirname, files)
8
8
  FileUtils.mkdir_p(dirname)
@@ -5,17 +5,17 @@ module Redcar
5
5
  yield
6
6
  rescue => e
7
7
  message = "Error in: " + (text || e.message)
8
- Application::Dialog.message_box(
9
- message,
10
- :type => :error, :buttons => :ok)
11
8
  puts message
12
9
  puts e.class.to_s + ": " + e.message
13
10
  puts e.backtrace
11
+ Application::Dialog.message_box(
12
+ message,
13
+ :type => :error, :buttons => :ok)
14
14
  end
15
15
  end
16
16
 
17
17
  def self.update_gui
18
- ApplicationSWT.sync_exec do
18
+ Swt.sync_exec do
19
19
  safely do
20
20
  yield
21
21
  end
@@ -224,11 +224,12 @@ module Redcar
224
224
  class AboutCommand < Command
225
225
  def execute
226
226
  new_tab = Top::NewCommand.new.run
227
- new_tab.document.text = "About: Redcar\nVersion: #{Redcar::VERSION}\n" +
228
- "Ruby Version: #{RUBY_VERSION}\n" +
229
- "Jruby version: #{JRUBY_VERSION}\n" +
230
- "Redcar.environment: #{Redcar.environment}\n" +
231
- "http://redcareditor.com"
227
+ new_tab.document.text = <<-TXT
228
+ About: Redcar\nVersion: #{Redcar::VERSION}
229
+ Ruby Version: #{RUBY_VERSION}
230
+ Jruby version: #{JRUBY_VERSION}
231
+ Redcar.environment: #{Redcar.environment}
232
+ TXT
232
233
  new_tab.title= 'About'
233
234
  new_tab.edit_view.reset_undo
234
235
  new_tab.document.set_modified(false)
@@ -553,29 +554,31 @@ module Redcar
553
554
  cursor_line = doc.cursor_line
554
555
  cursor_line_offset = doc.cursor_line_offset
555
556
  diff = 0
556
- doc.selection_ranges.each do |range|
557
- doc.delete(range.begin - diff, range.count)
558
- diff += range.count
559
- end
560
- texts = Redcar.app.clipboard.last.dup
561
- texts.each_with_index do |text, i|
562
- line_ix = start_line + i
563
- if line_ix == doc.line_count
564
- doc.insert(doc.length, "\n" + " "*line_offset)
565
- else
566
- line = doc.get_line(line_ix).chomp
567
- if line.length < line_offset
568
- doc.insert(
557
+ doc.controllers(AutoIndenter::DocumentController).first.disable do
558
+ doc.selection_ranges.each do |range|
559
+ doc.delete(range.begin - diff, range.count)
560
+ diff += range.count
561
+ end
562
+ texts = Redcar.app.clipboard.last.dup
563
+ texts.each_with_index do |text, i|
564
+ line_ix = start_line + i
565
+ if line_ix == doc.line_count
566
+ doc.insert(doc.length, "\n" + " "*line_offset)
567
+ else
568
+ line = doc.get_line(line_ix).chomp
569
+ if line.length < line_offset
570
+ doc.insert(
569
571
  doc.offset_at_inner_end_of_line(line_ix),
570
572
  " "*(line_offset - line.length)
571
- )
573
+ )
574
+ end
572
575
  end
573
- end
574
- doc.insert(
576
+ doc.insert(
575
577
  doc.offset_at_line(line_ix) + line_offset,
576
578
  text
577
- )
578
- doc.cursor_offset = doc.offset_at_line(line_ix) + line_offset + text.length
579
+ )
580
+ doc.cursor_offset = doc.offset_at_line(line_ix) + line_offset + text.length
581
+ end
579
582
  end
580
583
  end
581
584
  end
@@ -682,6 +685,13 @@ module Redcar
682
685
  end
683
686
  end
684
687
 
688
+ class ToggleToolbar < Redcar::EditTabCommand
689
+ def execute
690
+ Redcar.app.toggle_show_toolbar
691
+ Redcar.app.refresh_toolbar!
692
+ end
693
+ end
694
+
685
695
  class SelectNewFont < Command
686
696
  def execute
687
697
  Redcar::EditView::SelectFontDialog.new.open
@@ -863,6 +873,16 @@ module Redcar
863
873
  [linwin, osx]
864
874
  end
865
875
 
876
+ def self.toolbars
877
+ ToolBar::Builder.build do
878
+ item "New", :command => NewCommand, :icon => :new
879
+ item "Open", :command => Project::FileOpenCommand, :icon => :open
880
+ item "Save", :command => Project::FileSaveCommand, :icon => :save
881
+ item "Undo", :command => UndoCommand, :icon => :undo
882
+ item "Redo", :command => RedoCommand, :icon => :redo
883
+ end
884
+ end
885
+
866
886
  def self.menus
867
887
  Menu::Builder.build do
868
888
  sub_menu "File", :priority => :first do
@@ -1013,20 +1033,36 @@ module Redcar
1013
1033
 
1014
1034
  def self.start(args=[])
1015
1035
  puts "loading plugins took #{Time.now - PROCESS_START_TIME}"
1016
- Application.start
1017
- ApplicationSWT.start
1018
- EditViewSWT.start
1019
- s = Time.now
1020
- Redcar.gui = ApplicationSWT.gui
1021
- Redcar.app.controller = ApplicationSWT.new(Redcar.app)
1022
- Redcar.app.refresh_menu!
1023
- Redcar.app.load_sensitivities
1024
- puts "initializing gui took #{Time.now - s}s"
1025
- s = Time.now
1026
- Redcar::Project::Manager.start(args)
1027
- puts "project start took #{Time.now - s}s"
1028
- Redcar.app.make_sure_at_least_one_window_open
1036
+ Redcar.update_gui do
1037
+ Application.start
1038
+ ApplicationSWT.start
1039
+ Swt.splash_screen.inc(1) if Swt.splash_screen
1040
+ EditViewSWT.start
1041
+ Swt.splash_screen.inc(7) if Swt.splash_screen
1042
+ s = Time.now
1043
+ if Redcar.gui
1044
+ Redcar.app.controller = ApplicationSWT.new(Redcar.app)
1045
+ end
1046
+ Redcar.app.refresh_toolbar!
1047
+ Redcar.app.refresh_menu!
1048
+ Redcar.app.load_sensitivities
1049
+ puts "initializing gui took #{Time.now - s}s"
1050
+ end
1051
+ Redcar.update_gui do
1052
+ Swt.splash_screen.inc(2) if Swt.splash_screen
1053
+ s = Time.now
1054
+ Redcar::Project::Manager.start(args)
1055
+ puts "project start took #{Time.now - s}s"
1056
+ Redcar.app.make_sure_at_least_one_window_open
1057
+ end
1058
+ Redcar.update_gui do
1059
+ Swt.splash_screen.close if Swt.splash_screen
1060
+ end
1029
1061
  puts "start time: #{Time.now - $redcar_process_start_time}"
1062
+ if args.include?("--compute-textmate-cache-and-quit")
1063
+ Redcar::Textmate.all_bundles
1064
+ exit
1065
+ end
1030
1066
  end
1031
1067
  end
1032
1068
  end