redcar 0.4.1 → 0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1019) hide show
  1. data/CHANGES +48 -12
  2. data/README.md +2 -10
  3. data/Rakefile +7 -8
  4. data/bin/redcar +14 -9
  5. data/lib/plugin_manager/README.md +3 -0
  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/lib/plugin_manager.rb +138 -47
  9. data/lib/plugin_manager/spec/fixtures/{error_in_definition → plugin_loading/error_in_definition}/core/plugin.rb +0 -0
  10. data/lib/plugin_manager/spec/fixtures/{error_in_plugin → plugin_loading/error_in_plugin}/core/core.rb +0 -0
  11. data/lib/plugin_manager/spec/fixtures/{error_in_plugin → plugin_loading/error_in_plugin}/core/plugin.rb +0 -0
  12. data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/core/core.rb +0 -0
  13. data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/core/plugin.rb +0 -0
  14. data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/debug/debug.rb +0 -0
  15. data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/debug/plugin.rb +0 -0
  16. data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/extras/extras.rb +0 -0
  17. data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/extras/plugin.rb +0 -0
  18. data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core/core.rb +0 -0
  19. data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core/plugin.rb +0 -0
  20. data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core2/core.rb +0 -0
  21. data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core2/plugin.rb +0 -0
  22. data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core/core.rb +0 -0
  23. data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core/plugin.rb +0 -0
  24. data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core2/core.rb +0 -0
  25. data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core2/plugin.rb +0 -0
  26. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/core/core.rb +0 -0
  27. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/core/plugin.rb +0 -0
  28. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/debug/debug.rb +0 -0
  29. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/debug/plugin.rb +0 -0
  30. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/core/core.rb +0 -0
  31. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/core/plugin.rb +0 -0
  32. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/debug/debug.rb +0 -0
  33. data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/debug/plugin.rb +0 -0
  34. data/lib/plugin_manager/spec/plugin_manager_spec.rb +54 -16
  35. data/lib/redcar/installer.rb +80 -206
  36. data/lib/redcar/jvm_options_probe.rb +33 -0
  37. data/lib/redcar/runner.rb +80 -15
  38. data/lib/redcar.rb +92 -74
  39. data/lib/redcar_quick_start.rb +26 -2
  40. data/plugins/application/features/support/env.rb +6 -6
  41. data/plugins/application/icons/redcar-splash.png +0 -0
  42. data/plugins/application/lib/application.rb +3 -1
  43. data/plugins/application/spec/spec_helper.rb +1 -1
  44. data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +13 -2
  45. data/plugins/application_swt/lib/application_swt.rb +14 -43
  46. data/plugins/application_swt/plugin.rb +2 -1
  47. data/plugins/application_swt/spec/spec_helper.rb +1 -1
  48. data/plugins/auto_completer/lib/auto_completer.rb +46 -24
  49. data/plugins/auto_indenter/features/ruby_style_indentation.feature +15 -1
  50. data/plugins/auto_indenter/features/step_definitions/indentation_steps.rb +3 -1
  51. data/plugins/auto_indenter/lib/auto_indenter/commands.rb +5 -3
  52. data/plugins/auto_indenter/spec/spec_helper.rb +1 -1
  53. data/plugins/connection_manager/views/index.html.erb +1 -1
  54. data/plugins/core/spec/core/resource_spec.rb +124 -123
  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/grammar.rb +1 -1
  63. data/plugins/edit_view/lib/edit_view/grammars/default.rb +1 -1
  64. data/plugins/edit_view/lib/edit_view/grammars/ruby.rb +1 -1
  65. data/plugins/edit_view/lib/edit_view/select_theme_dialog.rb +2 -0
  66. data/plugins/edit_view/lib/edit_view.rb +95 -71
  67. data/plugins/edit_view/spec/spec_helper.rb +1 -1
  68. data/plugins/edit_view_swt/lib/edit_view_swt/document.rb +50 -35
  69. data/plugins/edit_view_swt/lib/edit_view_swt.rb +78 -51
  70. data/plugins/edit_view_swt/spec/spec_helper.rb +1 -1
  71. data/plugins/edit_view_swt/vendor/java-mateview.rb +2 -3
  72. data/plugins/execute_current_tab/lib/execute_current_tab.rb +0 -7
  73. data/plugins/file_parser/lib/file_parser.rb +109 -0
  74. data/plugins/file_parser/plugin.rb +7 -0
  75. data/plugins/find-in-project/TODO.md +2 -6
  76. data/plugins/find-in-project/lib/find_in_project/controllers.rb +83 -38
  77. data/plugins/find-in-project/lib/find_in_project/stylesheets/style.css +35 -27
  78. data/plugins/find-in-project/lib/find_in_project/views/_file_heading.html.erb +10 -0
  79. data/plugins/find-in-project/lib/find_in_project/views/_file_line.html.erb +6 -0
  80. data/plugins/find-in-project/lib/find_in_project/views/index.html.erb +45 -29
  81. data/plugins/find-in-project/lib/find_in_project.rb +7 -36
  82. data/plugins/find-in-project/plugin.rb +3 -2
  83. data/plugins/html_view/features/step_definitions/html_view_steps.rb +6 -4
  84. data/plugins/html_view/plugin.rb +2 -1
  85. data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +8 -4
  86. data/plugins/project/lib/project/commands.rb +142 -44
  87. data/plugins/project/lib/project/dir_controller.rb +1 -1
  88. data/plugins/project/lib/project/drb_service.rb +4 -4
  89. data/plugins/project/lib/project/find_file_dialog.rb +30 -24
  90. data/plugins/project/lib/project/manager.rb +60 -42
  91. data/plugins/project/lib/project.rb +2 -0
  92. data/plugins/project/plugin.rb +2 -1
  93. data/plugins/project/spec/spec_helper.rb +1 -1
  94. data/plugins/redcar/redcar.rb +71 -50
  95. data/plugins/repl/spec/repl/clojure_mirror_spec.rb +2 -0
  96. data/plugins/repl/spec/repl/ruby_mirror_spec.rb +1 -1
  97. data/plugins/repl/spec/spec_helper.rb +1 -1
  98. data/plugins/runnables/features/support/env.rb +7 -7
  99. data/plugins/runnables/lib/runnables/command_output_controller.rb +31 -10
  100. data/plugins/runnables/spec/spec_helper.rb +1 -1
  101. data/plugins/scm/lib/scm/commands.rb +34 -0
  102. data/plugins/scm/lib/scm/scm_changes_mirror/change.rb +2 -0
  103. data/plugins/scm/lib/scm/scm_commits_mirror/commit.rb +1 -1
  104. data/plugins/scm/lib/scm/scm_commits_mirror/commits_node.rb +1 -1
  105. data/plugins/scm/lib/scm.rb +8 -24
  106. data/plugins/scm/spec/spec_helper.rb +1 -1
  107. data/plugins/scm_git/lib/scm_git/change.rb +8 -7
  108. data/plugins/scm_git/lib/scm_git.rb +23 -6
  109. data/plugins/scm_git/vendor/ruby-git/lib/git/lib.rb +1 -1
  110. data/plugins/strip_trailing_spaces/CHANGELOG +2 -2
  111. data/plugins/strip_trailing_spaces/lib/strip_trailing_spaces.rb +34 -13
  112. data/plugins/{application_swt/lib/application_swt → swt/lib/swt}/cucumber_patches.rb +0 -0
  113. data/plugins/swt/lib/swt/cucumber_runner.rb +23 -0
  114. data/plugins/swt/lib/swt/event_loop.rb +30 -0
  115. data/plugins/{application_swt/lib/application_swt/swt_wrapper.rb → swt/lib/swt/full_swt.rb} +8 -48
  116. data/plugins/{application_swt/lib/application_swt → swt/lib}/swt/grid_data.rb +0 -0
  117. data/plugins/{application_swt/lib/application_swt → swt/lib}/swt/listener_helpers.rb +0 -0
  118. data/plugins/swt/lib/swt.rb +192 -0
  119. data/plugins/swt/plugin.rb +8 -0
  120. data/plugins/textmate/lib/textmate/tree_mirror.rb +4 -4
  121. data/plugins/textmate/lib/textmate.rb +18 -27
  122. data/plugins/textmate/plugin.rb +1 -1
  123. data/plugins/tree/spec/spec_helper.rb +1 -1
  124. data/plugins/tree_view_swt/lib/tree_view_swt.rb +2 -0
  125. metadata +91 -948
  126. data/plugins/application_swt/lib/application_swt/cucumber_runner.rb +0 -25
  127. data/plugins/application_swt/lib/application_swt/event_loop.rb +0 -32
  128. data/plugins/application_swt/vendor/swt/linux/dummy +0 -1
  129. data/plugins/application_swt/vendor/swt/osx/dummy +0 -1
  130. data/plugins/application_swt/vendor/swt/osx64/dummy +0 -1
  131. data/plugins/application_swt/vendor/swt/win32/dummy +0 -1
  132. data/plugins/find-in-project/README.md +0 -9
  133. data/plugins/find-in-project/lib/find_in_project/engines/ack.rb +0 -42
  134. data/plugins/find-in-project/lib/find_in_project/engines/grep.rb +0 -52
  135. data/plugins/find-in-project/lib/find_in_project/views/_results.html.erb +0 -50
  136. data/plugins/scm/icons/ATTRIBUTION +0 -5
  137. data/plugins/scm/icons/folder--arrow.png +0 -0
  138. data/plugins/scm/icons/folder--exclamation.png +0 -0
  139. data/plugins/scm/icons/folder--minus.png +0 -0
  140. data/plugins/scm/icons/folder--pencil.png +0 -0
  141. data/plugins/scm/icons/folder--plus.png +0 -0
  142. data/plugins/scm/icons/notebook--arrow.png +0 -0
  143. data/plugins/scm/icons/notebook--exclamation.png +0 -0
  144. data/plugins/scm/icons/notebook--minus.png +0 -0
  145. data/plugins/scm/icons/notebook--pencil.png +0 -0
  146. data/plugins/scm/icons/notebook--plus.png +0 -0
  147. data/plugins/textmate/ATTRIBUTION +0 -4
  148. data/plugins/textmate/icons/document-snippet.png +0 -0
  149. data/plugins/textmate/icons/document-tree.png +0 -0
  150. data/plugins/textmate/icons/ui-menu-blue.png +0 -0
  151. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Completions___Modules.tmPreferences +0 -95
  152. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Completions___Modules_Identifiers.tmPreferences +0 -80
  153. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Default_Tag_Inside_Virtual_Host.tmPreferences +0 -24
  154. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Directory.tmPreferences +0 -19
  155. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Location.tmPreferences +0 -19
  156. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___VHost_Directory.tmPreferences +0 -19
  157. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___VHost_Location.tmPreferences +0 -19
  158. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Virtual_Host.plist +0 -19
  159. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_AllowOverride___allow__.tmSnippet +0 -16
  160. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_Options___opt__.tmSnippet +0 -16
  161. data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_VirtualHost___vhost__.plist +0 -22
  162. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Comments___comments__.plist +0 -16
  163. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Cut___cut__.tmSnippet +0 -17
  164. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Date___date__.plist +0 -16
  165. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Keywords___keyw__.plist +0 -16
  166. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Ping___ping__.plist +0 -17
  167. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Pings___pings__.plist +0 -16
  168. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Tags___tags__.plist +0 -16
  169. data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Title___title__.plist +0 -16
  170. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List.tmPreferences +0 -21
  171. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_Separator__.tmPreferences +0 -21
  172. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_item_scopes__.tmPreferences +0 -21
  173. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_items__.tmPreferences +0 -21
  174. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Begin_Captures.tmSnippet +0 -18
  175. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Content_Name.tmSnippet +0 -16
  176. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_ENV____TM___________.tmSnippet +0 -16
  177. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_End_Captures.tmSnippet +0 -18
  178. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Grammar____Single_Quotes.tmSnippet +0 -16
  179. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Patterns___Repository__.tmSnippet +0 -20
  180. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Require___Support__lib__________.tmSnippet +0 -16
  181. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule___Begin____End__.tmSnippet +0 -19
  182. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule___Repository__.tmSnippet +0 -20
  183. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Begin____End___Inside_Rule__.tmSnippet +0 -17
  184. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Match___Inside_Rule__.tmSnippet +0 -16
  185. data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Match___Repository__.tmSnippet +0 -19
  186. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_Qt_C_____Completitions.tmPreferences +0 -161
  187. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_Qt_C_____Indentation_Rules.tmPreferences +0 -19
  188. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Comments.tmPreferences +0 -24
  189. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Completitions.tmPreferences +0 -44
  190. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Typing_Pairs.tmPreferences +0 -22
  191. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_Block_Comment.tmSnippet +0 -18
  192. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_Block_Comment_Newline.tmSnippet +0 -17
  193. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_QTimer____singleShot_______.tmSnippet +0 -16
  194. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_main___qmain__.tmSnippet +0 -23
  195. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qSort_______.tmSnippet +0 -16
  196. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qWarning___warn__.tmSnippet +0 -16
  197. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qmake_Project_template_stub.tmSnippet +0 -36
  198. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_toLatin1_____data_______latin__.tmSnippet +0 -16
  199. data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_toUtf8_____data____.tmSnippet +0 -16
  200. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Comments___C______.tmPreferences +0 -42
  201. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Disable_Spell_Checking.plist +0 -17
  202. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_Completion.plist +0 -19
  203. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_Completion___System__.tmPreferences +0 -38
  204. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_typing_pairs.plist +0 -37
  205. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Indentation_Rules.plist +0 -38
  206. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Symbol_List___Indent_Class_Methods.tmPreferences +0 -20
  207. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Template__cast_typing_pairs.plist +0 -29
  208. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_010_main_______main__.plist +0 -20
  209. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_030_for_int_loop___fori__.plist +0 -19
  210. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_Include_header_once_only_guard.plist +0 -28
  211. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___1_begin_________1_end_______beginend__.plist +0 -16
  212. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___endif.plist +0 -17
  213. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___ifndef__________define__________endif.tmSnippet +0 -18
  214. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___include________Inc__.plist +0 -16
  215. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___pragma_mark___mark__.plist +0 -21
  216. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_class______class__.plist +0 -24
  217. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_do___while_loop___do__.plist +0 -18
  218. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_fprintf_______.tmSnippet +0 -16
  219. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_if______if__.plist +0 -19
  220. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_namespace______namespace__.plist +0 -20
  221. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_printf______printf__.plist +0 -16
  222. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_read_file___readF__.plist +0 -23
  223. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_std____map___map__.plist +0 -16
  224. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_std____vector___v__.plist +0 -16
  225. data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_template___typename________template__.plist +0 -16
  226. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Property_Completions.tmPreferences +0 -151
  227. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Property_Value_Completions.tmPreferences +0 -144
  228. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Symbol_List___Group.tmPreferences +0 -19
  229. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Symbol_list.tmPreferences +0 -19
  230. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_Fixed_Position_Bottom_100___wide_IE6.tmSnippet +0 -18
  231. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next___important_CSS_______.plist +0 -18
  232. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background____color_image_repeat_attachment_position___background__.plist +0 -16
  233. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__attachment___scroll__fixed___background__.plist +0 -16
  234. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__hex___background__.plist +0 -16
  235. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__name___background__.plist +0 -16
  236. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__rgb___background__.plist +0 -16
  237. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____transparent___background__.plist +0 -16
  238. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__image____none___background__.plist +0 -16
  239. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__image____url___background__.plist +0 -16
  240. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__position____position___background__.plist +0 -16
  241. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__repeat____r__r__x__r__y__n__r___background__.plist +0 -16
  242. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border_____size_style_color___border__.plist +0 -16
  243. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom___size_style_color___border__.plist +0 -16
  244. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__color___size_style_color___border__.plist +0 -16
  245. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__style___size_style_color___border__.plist +0 -16
  246. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__width___size_style_color___border__.plist +0 -16
  247. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__color___color___border__.plist +0 -16
  248. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left___size_style_color___border__.plist +0 -16
  249. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__color___color___border__.plist +0 -16
  250. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__style___style___border__.plist +0 -16
  251. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__width___size___border__.plist +0 -16
  252. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right___size_style_color___border__.plist +0 -16
  253. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__color___color___border__.plist +0 -16
  254. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__style___style___border__.plist +0 -16
  255. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__width___size___border__.plist +0 -16
  256. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__style___style___border__.plist +0 -16
  257. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top___size_style_color___border__.plist +0 -16
  258. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__color___color___border__.plist +0 -16
  259. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__style___style___border__.plist +0 -16
  260. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__width___size___border__.plist +0 -16
  261. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__width___width___border__.plist +0 -16
  262. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_clear___value___clear__.plist +0 -16
  263. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__hex___color__.plist +0 -16
  264. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__name___color__.plist +0 -16
  265. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__rgb___color__.plist +0 -16
  266. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_cursor___type___cursor__.plist +0 -16
  267. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_cursor___url___cursor__.plist +0 -16
  268. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_direction___ltr__rtl___direction__.plist +0 -16
  269. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___block___display__.plist +0 -16
  270. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___common__types___display__.plist +0 -16
  271. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___inline___display__.plist +0 -16
  272. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___table__types___display__.plist +0 -16
  273. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_filter___AlphaImageLoader___for_IE_PNGs_____background__.plist +0 -19
  274. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_float___left__right__none___float__.plist +0 -16
  275. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font_____style_variant_weight_size__line__height_font___family___font__.plist +0 -16
  276. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font___size_font___font__.plist +0 -16
  277. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__family_____family___font__.plist +0 -16
  278. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__size___size___font__.plist +0 -16
  279. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__style_____normal__italic__oblique___font__.plist +0 -16
  280. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__variant_____normal__small__caps___font__.plist +0 -16
  281. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__weight___weight___font__.plist +0 -16
  282. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_letter__spacing_____length__em___letter__.plist +0 -16
  283. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_letter__spacing_____length__px___letter__.plist +0 -16
  284. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style___type_position_image___list__.plist +0 -16
  285. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__image___url___list__.plist +0 -16
  286. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__position___pos___list__.plist +0 -16
  287. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___asian___list__.plist +0 -16
  288. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___marker__list__.plist +0 -16
  289. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___numeric___list__.plist +0 -16
  290. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___other___list__.plist +0 -16
  291. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___roman__alpha__greek___list__.plist +0 -16
  292. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin___T_R_B_L___margin__.plist +0 -16
  293. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin___V_H___margin__.plist +0 -16
  294. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin_____all___margin__.plist +0 -16
  295. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__bottom___length___margin__.plist +0 -16
  296. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__left___length___margin__.plist +0 -16
  297. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__right___length___margin__.plist +0 -16
  298. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__top___length___margin__.plist +0 -16
  299. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_marker__offset___auto___marker__.plist +0 -16
  300. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_marker__offset___length___marker__.plist +0 -16
  301. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_opacity_____for_Safari___FF_and_IE_____opacity__.plist +0 -18
  302. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_overflow___type___overflow__.plist +0 -16
  303. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____T_R_B_L___padding__.plist +0 -16
  304. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____V_H___padding__.plist +0 -16
  305. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____all___padding__.plist +0 -16
  306. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__bottom___length___margin__.plist +0 -16
  307. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__left___length___margin__.plist +0 -16
  308. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__right___length___margin__.plist +0 -16
  309. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__top___length___margin__.plist +0 -16
  310. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_position___type___position__.plist +0 -16
  311. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_properties_______________.plist +0 -19
  312. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__align___left__center__right___txt__.plist +0 -16
  313. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__decoration___none__underline__overline__line__through__blink___text__.plist +0 -16
  314. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__indent___length___text__.plist +0 -16
  315. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___color__hex_x_y_blur___text__.plist +0 -16
  316. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___color__rgb_x_y_blur___text__.plist +0 -16
  317. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___none___text__.plist +0 -16
  318. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__transform___capitalize__upper__lower___text__.plist +0 -16
  319. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__transform___none___text__.plist +0 -16
  320. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_vertical__align___type___vertical__.plist +0 -16
  321. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_visibility___type___visibility__.plist +0 -16
  322. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_white__space____normal__pre__nowrap___white__.plist +0 -16
  323. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_word__spacing____length___word__.plist +0 -16
  324. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_word__spacing____normal___word__.plist +0 -16
  325. data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_z__index___index___z__.plist +0 -16
  326. data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Cucumber_Plain_Text_Feature_Completions.tmPreferences +0 -30
  327. data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Scenario.tmPreferences +0 -19
  328. data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Steps.tmPreferences +0 -17
  329. data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Steps_with_String.tmPreferences +0 -17
  330. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -21
  331. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/next_Symbol_List__Method__Constructor.tmPreferences +0 -20
  332. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_Continue_Block_Comment.tmSnippet +0 -18
  333. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_err_format.tmSnippet +0 -16
  334. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_foreach_reverse.tmSnippet +0 -18
  335. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_if_else.tmSnippet +0 -21
  336. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_error.tmSnippet +0 -16
  337. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_fatal.tmSnippet +0 -16
  338. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_info.tmSnippet +0 -16
  339. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_trace.tmSnippet +0 -16
  340. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_warn.tmSnippet +0 -16
  341. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_main_with_args.tmSnippet +0 -19
  342. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_out_format.tmSnippet +0 -16
  343. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_catch.tmSnippet +0 -20
  344. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_catch_finally.tmSnippet +0 -22
  345. data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_finally.tmSnippet +0 -20
  346. data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Changed.plist +0 -19
  347. data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Deleted.plist +0 -19
  348. data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Diff_metadata.plist +0 -21
  349. data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Header.plist +0 -19
  350. data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Inserted.plist +0 -19
  351. data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Range.plist +0 -21
  352. data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Symbol_List___Indent_Ranges.plist +0 -24
  353. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Preferences/next_Disable_spell_checking_in_raw.tmPreferences +0 -17
  354. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Preferences/next_Show_Heading_in_list.tmPreferences +0 -25
  355. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_1.tmSnippet +0 -17
  356. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_2.tmSnippet +0 -17
  357. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_3.tmSnippet +0 -17
  358. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_4.tmSnippet +0 -17
  359. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_5.tmSnippet +0 -17
  360. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Left_Header.tmSnippet +0 -16
  361. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Numbered_item.tmSnippet +0 -16
  362. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Numbered_item_2.tmSnippet +0 -19
  363. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Table_Cell.tmSnippet +0 -16
  364. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Top_Header.tmSnippet +0 -16
  365. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Unnumbered_item.tmSnippet +0 -16
  366. data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Unnumbered_item_2.tmSnippet +0 -19
  367. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Completions_HTML_Attributes.tmPreferences +0 -346
  368. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Empty_tag_typing_pairs.plist +0 -26
  369. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Symbol_List___ID.plist +0 -17
  370. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Tag_Completions.tmPreferences +0 -30
  371. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Tag_preferences.plist +0 -48
  372. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Arrow___arrow__.plist +0 -16
  373. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Backspace___backspace__.plist +0 -16
  374. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Backtab___backtab__.plist +0 -16
  375. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Command___command__.plist +0 -16
  376. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Control___control__.plist +0 -16
  377. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Delete___delete__.plist +0 -16
  378. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_HTML_4_0_Strict.plist +0 -18
  379. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTL_1_0_Frameset.plist +0 -18
  380. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_0_Strict.plist +0 -18
  381. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_0_Transitional.plist +0 -18
  382. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_1.plist +0 -18
  383. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Down___down__.plist +0 -16
  384. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Embed_QT_movie___movie__.plist +0 -26
  385. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Enter___enter__.plist +0 -16
  386. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Escape___escape__.plist +0 -16
  387. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_HTML________4_0_Transitional___doctype__.plist +0 -18
  388. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer.tmSnippet +0 -16
  389. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_0_only.tmSnippet +0 -16
  390. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_5_only.tmSnippet +0 -16
  391. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_x.tmSnippet +0 -16
  392. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_6_and_below.tmSnippet +0 -16
  393. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_6_only.tmSnippet +0 -16
  394. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_7__.tmSnippet +0 -16
  395. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___NOT_Internet_Explorer.tmSnippet +0 -16
  396. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Input_with_Label.tmSnippet +0 -19
  397. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Left___left__.plist +0 -16
  398. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Option___option__.plist +0 -16
  399. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Return___return__.plist +0 -16
  400. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Right___right__.plist +0 -16
  401. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Select_Box.tmSnippet +0 -22
  402. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Shift___shift__.plist +0 -16
  403. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Smart_return__indent_for_tag_pairs.plist +0 -18
  404. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Tab___tab__.plist +0 -16
  405. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Up___up__.plist +0 -16
  406. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Wrap_Selection_In_Tag.plist +0 -16
  407. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Wrap_in___________________.plist +0 -14
  408. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML_____input__.plist +0 -16
  409. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML_____textarea__.plist +0 -16
  410. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___a_mailto_____.plist +0 -16
  411. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___base__.plist +0 -16
  412. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___body__.plist +0 -18
  413. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___br_____.plist +0 -16
  414. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___div__.plist +0 -18
  415. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___form__.plist +0 -20
  416. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___h1__.plist +0 -16
  417. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___head__.plist +0 -20
  418. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___link__.plist +0 -16
  419. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___meta__.plist +0 -16
  420. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___nbsp___NonBreakingSpace.plist +0 -16
  421. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___script__.plist +0 -18
  422. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___script_src_____.plist +0 -16
  423. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___style__.plist +0 -18
  424. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___table__.plist +0 -19
  425. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___title__.plist +0 -16
  426. data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Indent_Patterns.plist +0 -17
  427. data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Symbol_List.tmPreferences +0 -17
  428. data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Typing_Pairs.plist +0 -42
  429. data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/next___.plist +0 -16
  430. data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/next_t______f_t.tmSnippet +0 -16
  431. data/plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/next_Bulletin_Board.tmPreferences +0 -24
  432. data/plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/next_Fallback___not_supported__.tmPreferences +0 -22
  433. data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/next_Indentation_Rules.plist +0 -21
  434. data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/next_Typing_Pairs.plist +0 -37
  435. data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Indented_Bracketed_Line.plist +0 -20
  436. data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Indented_return.plist +0 -18
  437. data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Object_clone_do.plist +0 -18
  438. data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_clone_do.plist +0 -18
  439. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -21
  440. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Classes.tmPreferences +0 -17
  441. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Class_Methods.tmPreferences +0 -22
  442. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Classes.tmPreferences +0 -19
  443. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Inner_Class_Methods.tmPreferences +0 -22
  444. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Inner_Classes.tmPreferences +0 -19
  445. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Method.plist +0 -22
  446. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_constant_string.tmSnippet +0 -16
  447. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_else_if.tmSnippet +0 -18
  448. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_for___each__.tmSnippet +0 -18
  449. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_import_junit_framework_TestCase__.tmSnippet +0 -17
  450. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_method___main__.tmSnippet +0 -18
  451. data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_test_case.tmSnippet +0 -18
  452. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Preferences/next_Prototype_Completions.tmPreferences +0 -185
  453. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Ajax_Options.tmSnippet +0 -23
  454. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Create_Class_Alt.tmSnippet +0 -23
  455. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Effect_Options.tmSnippet +0 -21
  456. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Enum_each___element__.tmSnippet +0 -19
  457. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Enum_each___index__.tmSnippet +0 -18
  458. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next___.tmSnippet +0 -16
  459. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next___function___________.tmSnippet +0 -18
  460. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next______Select_DOM_Element__.tmSnippet +0 -16
  461. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_____this__.tmSnippet +0 -16
  462. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxError.tmSnippet +0 -19
  463. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSend.tmSnippet +0 -19
  464. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSetup.tmSnippet +0 -28
  465. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSuccess.tmSnippet +0 -18
  466. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajax__hash__.tmSnippet +0 -28
  467. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____get.tmSnippet +0 -19
  468. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getIfModified.tmSnippet +0 -19
  469. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getJSON.tmSnippet +0 -21
  470. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getScript.tmSnippet +0 -19
  471. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____post.tmSnippet +0 -23
  472. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____trim.tmSnippet +0 -16
  473. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___checked.tmSnippet +0 -18
  474. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___contains____test____.tmSnippet +0 -18
  475. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___disabled.tmSnippet +0 -18
  476. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___empty.tmSnippet +0 -18
  477. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___enabled.tmSnippet +0 -18
  478. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___eq__n__.tmSnippet +0 -18
  479. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___even.tmSnippet +0 -18
  480. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first.tmSnippet +0 -18
  481. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first__child.tmSnippet +0 -18
  482. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first__of__type.tmSnippet +0 -18
  483. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___gt__n__.tmSnippet +0 -18
  484. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___hidden.tmSnippet +0 -19
  485. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last.tmSnippet +0 -18
  486. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last__child.tmSnippet +0 -18
  487. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last__of__type.tmSnippet +0 -18
  488. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___lt__n__.tmSnippet +0 -18
  489. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___not__s__.tmSnippet +0 -18
  490. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__child__n__.tmSnippet +0 -18
  491. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__last__child__n__.tmSnippet +0 -18
  492. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__of__type__n__.tmSnippet +0 -18
  493. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___odd.tmSnippet +0 -18
  494. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___only__child.tmSnippet +0 -18
  495. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___only__of__type.tmSnippet +0 -18
  496. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___parent.tmSnippet +0 -19
  497. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___root.tmSnippet +0 -18
  498. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___visible.tmSnippet +0 -19
  499. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_attr__hash__.tmSnippet +0 -16
  500. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_css__hash__.tmSnippet +0 -16
  501. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeIn____with_callback.tmSnippet +0 -19
  502. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeOut____with_callback.tmSnippet +0 -19
  503. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeTo____with_callback.tmSnippet +0 -19
  504. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_hide____with_callback.tmSnippet +0 -19
  505. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_load___AHAH__.tmSnippet +0 -21
  506. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_show____with_callback.tmSnippet +0 -19
  507. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_slideDown____with_callback.tmSnippet +0 -19
  508. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_slideUp____with_callback.tmSnippet +0 -19
  509. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_toggle___show__hide__.tmSnippet +0 -16
  510. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_JavaScript_Indent.tmPreferences +0 -19
  511. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Banned.tmPreferences +0 -17
  512. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Class.tmPreferences +0 -21
  513. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Instance.tmPreferences +0 -21
  514. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Sub_1.tmPreferences +0 -21
  515. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Sub_2.tmPreferences +0 -21
  516. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Get_Elements.tmSnippet +0 -16
  517. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Method.tmSnippet +0 -18
  518. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Method_String.tmSnippet +0 -18
  519. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Value_JS.tmSnippet +0 -16
  520. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_key________key_____value__.tmSnippet +0 -18
  521. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Prototype___proto__.plist +0 -19
  522. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_for______________________.tmSnippet +0 -18
  523. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_for_________________________faster__.tmSnippet +0 -18
  524. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_function___fun__.plist +0 -18
  525. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_if_____else.tmSnippet +0 -16
  526. data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_setTimeout_function.tmSnippet +0 -16
  527. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Beamer_Symbol_List.tmPreferences +0 -21
  528. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Cite_Completion.plist +0 -19
  529. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Disable_Smart_Typing_after_Backslashes.tmPreferences +0 -19
  530. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Label_Completion.plist +0 -19
  531. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Miscellaneous___BibTeX__.tmPreferences +0 -53
  532. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Smart_Typing___Strings__.tmPreferences +0 -65
  533. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Spell_Checking___Disable_for_Comments.tmPreferences +0 -17
  534. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Spell_Checking_in_Strings.tmPreferences +0 -17
  535. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Symbol_list.plist +0 -28
  536. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_TexShop_comments.plist +0 -17
  537. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Beamer_Overlay_Specification.tmSnippet +0 -16
  538. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Change_Style_of_selected_text.plist +0 -16
  539. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Displaymath_________.plist +0 -20
  540. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Gather__ed__.tmSnippet +0 -20
  541. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Item__description__.plist +0 -16
  542. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Lines_to_list_environment.plist +0 -19
  543. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Math_mode__________.plist +0 -16
  544. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_New_Line.tmSnippet +0 -17
  545. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Sub_Paragraph.tmSnippet +0 -19
  546. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Unnumbered_Equation.tmSnippet +0 -18
  547. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_Selection_in_Environment.plist +0 -19
  548. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_in___left____right.plist +0 -16
  549. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_selection_in_double_quotes.tmSnippet +0 -16
  550. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___begin____________end____.tmSnippet +0 -18
  551. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___section______section__.plist +0 -19
  552. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___subsection______sub__.plist +0 -19
  553. data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___subsubsection______ssub__.plist +0 -19
  554. data/plugins/textmate/vendor/redcar-bundles/Bundles/Lisp.tmbundle/Snippets/next_____.tmSnippet +0 -16
  555. data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Disable_spell_checking_for_raw.plist +0 -17
  556. data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Indent___Raw.plist +0 -19
  557. data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Symbol_List___Heading.plist +0 -23
  558. data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Typing_Pairs___Disable___for_Raw.plist +0 -42
  559. data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Snippets/next_Hard_linebreak.plist +0 -17
  560. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Add_Magic_Methods_to_the_Symbol_List.tmPreferences +0 -17
  561. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Completion___includes.tmPreferences +0 -30
  562. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Disable_spellcheck_in_require.tmPreferences +0 -17
  563. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Enable_Spellchecking_for_Docblocks.tmPreferences +0 -17
  564. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -19
  565. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Symbols_List___functions.tmPreferences +0 -19
  566. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Continue_Block_Comment.tmSnippet +0 -18
  567. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Include_TextMate_Support_Script.tmSnippet +0 -25
  568. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_class.tmSnippet +0 -26
  569. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_class_var.tmSnippet +0 -23
  570. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_constant_definition.tmSnippet +0 -21
  571. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_function.tmSnippet +0 -26
  572. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_function_signature.tmSnippet +0 -26
  573. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_header.tmSnippet +0 -30
  574. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_interface.tmSnippet +0 -26
  575. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHP_Error_Catching.tmSnippet +0 -17
  576. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Special___Return_Between_PHP_Tags.tmSnippet +0 -18
  577. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Start_Docblock.tmSnippet +0 -18
  578. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next___GLOBALS________.tmSnippet +0 -16
  579. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____COOKIE________.tmSnippet +0 -16
  580. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____ENV________.tmSnippet +0 -16
  581. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____FILES________.tmSnippet +0 -16
  582. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____GET________.tmSnippet +0 -16
  583. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____POST________.tmSnippet +0 -16
  584. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____REQUEST________.tmSnippet +0 -16
  585. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____SERVER________.tmSnippet +0 -16
  586. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____SESSION________.tmSnippet +0 -16
  587. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_______________php.tmSnippet +0 -16
  588. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_____.tmSnippet +0 -16
  589. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_echo_________.tmSnippet +0 -16
  590. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_echo_htmlentities____________.tmSnippet +0 -16
  591. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_else_______.tmSnippet +0 -16
  592. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_foreach_________________php_endforeach_____.tmSnippet +0 -18
  593. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_if______________________php_else______________php_endif_____.tmSnippet +0 -20
  594. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_if______________________php_endif_____.tmSnippet +0 -18
  595. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_class______.tmSnippet +0 -27
  596. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_define_____.tmSnippet +0 -17
  597. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_defined_____.tmSnippet +0 -16
  598. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_do_while_____.tmSnippet +0 -18
  599. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_echo____.tmSnippet +0 -16
  600. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_else_____.tmSnippet +0 -18
  601. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_elseif_____.tmSnippet +0 -18
  602. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_for_____.tmSnippet +0 -18
  603. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_foreach_____.tmSnippet +0 -18
  604. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_function_xx_____.tmSnippet +0 -19
  605. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if_____.tmSnippet +0 -18
  606. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if______a____b__.tmSnippet +0 -16
  607. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if______else_____.tmSnippet +0 -21
  608. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_include_____.tmSnippet +0 -16
  609. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_include_once_____.tmSnippet +0 -16
  610. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_new_array_____.tmSnippet +0 -16
  611. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_require_____.tmSnippet +0 -16
  612. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_require_once_____.tmSnippet +0 -16
  613. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return_FALSE__.tmSnippet +0 -16
  614. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return_TRUE__.tmSnippet +0 -16
  615. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return___retVal__.tmSnippet +0 -16
  616. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_switch_____.tmSnippet +0 -24
  617. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_switch______case__.tmSnippet +0 -18
  618. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_try___________catch__________________.tmSnippet +0 -23
  619. data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_while_____.tmSnippet +0 -18
  620. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl HTML-Template.tmbundle/Snippets/next_If__Else.tmSnippet +0 -20
  621. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl Template Toolkit.tmbundle/Preferences/next_Filename_Settings.plist +0 -17
  622. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_if__else___ife__.plist +0 -21
  623. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_if__elsif__else___ifee__.plist +0 -23
  624. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_one__line___unless__.plist +0 -17
  625. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_one__line___xif__.plist +0 -17
  626. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Function___sub__.plist +0 -19
  627. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Loop_one__line___xforeach__.plist +0 -17
  628. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Loop_one__line___xwhile__.plist +0 -17
  629. data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_hash_pointer.plist +0 -16
  630. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_draw___se__.plist +0 -18
  631. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_float_______float______.plist +0 -16
  632. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_float___float__.plist +0 -16
  633. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_int_______int______.plist +0 -16
  634. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_int___int__.plist +0 -16
  635. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_opengl___gl__.plist +0 -16
  636. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_setup___se__.plist +0 -18
  637. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_size___size__.plist +0 -16
  638. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_string_______string______.plist +0 -16
  639. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_string___str__.plist +0 -16
  640. data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_void_method___void__.plist +0 -18
  641. data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -19
  642. data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Symbol_List.plist +0 -17
  643. data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Typing_Pairs.plist +0 -50
  644. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/next_Symbol_List.tmPreferences +0 -22
  645. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/next_Symbol_List___Hide_Decorator.tmPreferences +0 -17
  646. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_Class_Def___Insert_________.tmSnippet +0 -16
  647. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_Function___Insert_________.tmSnippet +0 -16
  648. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_String___Insert___________.tmSnippet +0 -16
  649. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Class.tmSnippet +0 -19
  650. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Function.tmSnippet +0 -22
  651. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Method.tmSnippet +0 -17
  652. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Property.tmSnippet +0 -25
  653. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except.tmSnippet +0 -19
  654. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Else.tmSnippet +0 -21
  655. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Else__Finally.tmSnippet +0 -23
  656. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Finally.tmSnippet +0 -21
  657. data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_if___name____________main____.tmSnippet +0 -17
  658. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Preferences/next_Symbol_List___Behaviour.tmPreferences +0 -19
  659. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Preferences/next_Symbol_List___Example.tmPreferences +0 -19
  660. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Custom_Matcher.tmSnippet +0 -39
  661. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Require_spec_helper.tmSnippet +0 -16
  662. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Set_Controller_for_Spec.tmSnippet +0 -16
  663. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_____.tmSnippet +0 -17
  664. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_eql.tmSnippet +0 -17
  665. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_not_____.tmSnippet +0 -17
  666. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_not_eql.tmSnippet +0 -17
  667. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Preferences/next_Template___ERB__.tmPreferences +0 -48
  668. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Preferences/next_Template___Haml__.tmPreferences +0 -48
  669. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_180_rails_form_tag.plist +0 -18
  670. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_binary_column.tmSnippet +0 -17
  671. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_boolean_column.tmSnippet +0 -17
  672. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_controller_class.tmSnippet +0 -25
  673. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_date_column.tmSnippet +0 -17
  674. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_datetime_column.tmSnippet +0 -17
  675. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_decimal_column.tmSnippet +0 -17
  676. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_float_column.tmSnippet +0 -17
  677. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_functional_test_class.tmSnippet +0 -21
  678. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_integer_column.tmSnippet +0 -17
  679. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_lock_version_column.tmSnippet +0 -17
  680. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_references_column.tmSnippet +0 -17
  681. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_string_column.tmSnippet +0 -17
  682. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_text_column.tmSnippet +0 -17
  683. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_time_column.tmSnippet +0 -17
  684. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_timestamp_column.tmSnippet +0 -17
  685. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_timestamps_columns.tmSnippet +0 -17
  686. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Create_Column_Continue___mccc__.plist +0 -17
  687. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Create_Column___mcc__.plist +0 -17
  688. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Drop_Create_Table___mdct__.plist +0 -16
  689. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Remove_and_Add_Column___mrac__.plist +0 -16
  690. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_RAILS_DEFAULT_LOGGER_debug___rdb__.plist +0 -16
  691. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Table_column__s___rename.tmSnippet +0 -17
  692. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Test_Assert_Redirected_To___art__.plist +0 -16
  693. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Test_Assert_Response___are__.plist +0 -16
  694. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next___3C_____Fixtures_identify____3Asymbol_______3E.tmSnippet +0 -16
  695. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next___LABEL.tmSnippet +0 -16
  696. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert__var____assigns____3Avar____.tmSnippet +0 -17
  697. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___nested_path__.tmSnippet +0 -16
  698. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___nested_path_plural__.tmSnippet +0 -16
  699. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___path__.tmSnippet +0 -16
  700. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___path_plural__.tmSnippet +0 -16
  701. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_belongs_to___bt__.plist +0 -16
  702. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_create____resource.tmSnippet +0 -30
  703. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_get_request.tmSnippet +0 -21
  704. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_post_request.tmSnippet +0 -21
  705. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find____3Aall__.tmSnippet +0 -16
  706. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find____3Afirst__.tmSnippet +0 -16
  707. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find__id__.tmSnippet +0 -16
  708. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_for_loop_erb.tmSnippet +0 -23
  709. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_check_box.tmSnippet +0 -16
  710. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_checkbox.tmSnippet +0 -16
  711. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_file_field.tmSnippet +0 -16
  712. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_file_field_2.tmSnippet +0 -16
  713. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_hidden_field.tmSnippet +0 -16
  714. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_hidden_field_2.tmSnippet +0 -16
  715. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_label.tmSnippet +0 -16
  716. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_label_2.tmSnippet +0 -16
  717. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_password_field.tmSnippet +0 -16
  718. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_password_field_2.tmSnippet +0 -16
  719. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_radio_box.tmSnippet +0 -16
  720. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_radio_box_2.tmSnippet +0 -16
  721. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_submit.tmSnippet +0 -16
  722. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_submit_2.tmSnippet +0 -16
  723. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_area.tmSnippet +0 -16
  724. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_area_2.tmSnippet +0 -16
  725. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_field.tmSnippet +0 -16
  726. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_field_2.tmSnippet +0 -16
  727. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_with_errors.tmSnippet +0 -20
  728. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_and_belongs_to_many___habtm__.plist +0 -16
  729. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___dependent________destroy.tmSnippet +0 -16
  730. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___hm__.plist +0 -16
  731. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___through__.tmSnippet +0 -16
  732. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_one___ho__.plist +0 -16
  733. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___nested_path__.tmSnippet +0 -16
  734. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___nested_path_plural__.tmSnippet +0 -16
  735. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___path__.tmSnippet +0 -16
  736. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___path_plural__.tmSnippet +0 -16
  737. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to_model.tmSnippet +0 -16
  738. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_map______3Asym_proc__.tmSnippet +0 -16
  739. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_named_scope_lambda.tmSnippet +0 -17
  740. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_hide_____2Aids__.tmSnippet +0 -16
  741. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_insert_html___position___id___partial__.tmSnippet +0 -16
  742. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_replace___id___partial__.tmSnippet +0 -16
  743. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_replace_html___id___partial__.tmSnippet +0 -16
  744. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_show_____2Aids__.tmSnippet +0 -16
  745. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_toggle_____2Aids__.tmSnippet +0 -16
  746. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_visual_effect___effect___id__.tmSnippet +0 -16
  747. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_flash.plist +0 -16
  748. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_params.plist +0 -16
  749. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_session.plist +0 -16
  750. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___nested_path__.tmSnippet +0 -16
  751. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___nested_path_plural__.tmSnippet +0 -16
  752. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___path__.tmSnippet +0 -16
  753. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___path_plural__.tmSnippet +0 -16
  754. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___action________ra__.plist +0 -16
  755. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___action__layout_____ral__.plist +0 -16
  756. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___file_____rf__.plist +0 -16
  757. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___file__use_full_path_____rfu__.plist +0 -16
  758. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline_____ri__.plist +0 -16
  759. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline__locals_____ril__.plist +0 -16
  760. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline__type_____rit__.plist +0 -16
  761. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___layout_____rl__.plist +0 -16
  762. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___nothing_____rn__.plist +0 -16
  763. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___nothing__status_____rns__.plist +0 -16
  764. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial_____rp__.plist +0 -16
  765. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__collection_____rpc__.plist +0 -16
  766. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__locals_____rpl__.plist +0 -16
  767. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__object_____rpo__.plist +0 -16
  768. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__status_____rps__.plist +0 -16
  769. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text_____rt__.plist +0 -16
  770. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__layout____3Etrue_____rtlt__.plist +0 -16
  771. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__layout_____rtl__.plist +0 -16
  772. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__status_____rts__.plist +0 -16
  773. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___update__.tmSnippet +0 -18
  774. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_respond_to___html__.tmSnippet +0 -21
  775. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_returning_do___7Cvariable__7C___E2__80__A6_end.tmSnippet +0 -18
  776. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_binary___tcbi__.tmSnippet +0 -17
  777. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_boolean___tcb__.tmSnippet +0 -17
  778. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_date___tcda__.tmSnippet +0 -17
  779. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_datetime___tcdt__.tmSnippet +0 -17
  780. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_decimal___tcd__.tmSnippet +0 -17
  781. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_float___tcf__.tmSnippet +0 -17
  782. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_integer___tci__.tmSnippet +0 -17
  783. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_lock_version___tcl__.tmSnippet +0 -17
  784. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_references___tcr__.tmSnippet +0 -17
  785. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_rename___tre__.tmSnippet +0 -17
  786. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_string___tcs__.tmSnippet +0 -17
  787. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_text___tct__.tmSnippet +0 -17
  788. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_time___tcti__.tmSnippet +0 -17
  789. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_timestamp___tcts__.tmSnippet +0 -17
  790. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_timestamps___tctss__.tmSnippet +0 -17
  791. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_acceptance_of_if.tmSnippet +0 -16
  792. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_associated___va__.plist +0 -16
  793. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_associated_if___vaif__.plist +0 -16
  794. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_confirmation_of___vc__.plist +0 -16
  795. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_confirmation_of_if___vcif__.plist +0 -16
  796. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_exclusion_of___ve__.plist +0 -16
  797. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_exclusion_of_if___veif__.plist +0 -16
  798. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_format_of_if.tmSnippet +0 -16
  799. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_inclusion_of_if.tmSnippet +0 -16
  800. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_length_of___vl__.plist +0 -16
  801. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_length_of_if.tmSnippet +0 -16
  802. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_numericality_of_if.tmSnippet +0 -16
  803. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_presence_of___vp__.plist +0 -16
  804. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_presence_of_if___vpif___2.plist +0 -16
  805. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_uniqueness_of___vu__.plist +0 -16
  806. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_uniqueness_of_if___vuif__.plist +0 -16
  807. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_verify____redirect___verify__.plist +0 -19
  808. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_verify___verify__.plist +0 -19
  809. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_delete.tmSnippet +0 -16
  810. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_get.tmSnippet +0 -16
  811. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_post.tmSnippet +0 -16
  812. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_put.tmSnippet +0 -16
  813. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Block_typing_pairs.plist +0 -42
  814. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Completion___ENV___________variables.tmPreferences +0 -17
  815. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Completion___require_strings.tmPreferences +0 -22
  816. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Symbo_List___Method.plist +0 -19
  817. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Symbol_List___No_Function_Call.tmPreferences +0 -17
  818. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_060_ruby_if_else.plist +0 -20
  819. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_070_ruby_if.plist +0 -18
  820. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_080_ruby_case.plist +0 -19
  821. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Add_____________Marker.tmSnippet +0 -16
  822. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Array_new__10________i____________Arr__.plist +0 -16
  823. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Benchmark_bmbm_______do____end.tmSnippet +0 -19
  824. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Dir__________.tmSnippet +0 -16
  825. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Dir_glob___________do___file______end____Dir__.plist +0 -16
  826. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_foreach____________do___line______end____File__.plist +0 -16
  827. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_open________________file________.tmSnippet +0 -16
  828. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_read__________.tmSnippet +0 -16
  829. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Hash_new______hash___key___hash__key_______________Has__.plist +0 -16
  830. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Insert_ERb__s______________or_______________.tmSnippet +0 -16
  831. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Marshal_dump__obj___file______Md__.plist +0 -16
  832. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Marshal_load__obj______Ml__.plist +0 -16
  833. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_PStore_new________.tmSnippet +0 -16
  834. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_RDoc_documentation_block.tmSnippet +0 -20
  835. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Wrap_in_Begin________Rescue________End.plist +0 -23
  836. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_YAML_dump_______file______Yd____.plist +0 -16
  837. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_YAML_load__file______Yl____.plist +0 -16
  838. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_______usr__local__bin__ruby___w.plist +0 -17
  839. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next___yields___RDoc_comment.tmSnippet +0 -16
  840. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_alias_method_______am__.plist +0 -16
  841. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_all________e____________all__.plist +0 -16
  842. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_any________e____________any__.plist +0 -16
  843. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_application_code_______app__.plist +0 -18
  844. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert__________as__.plist +0 -16
  845. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_in_delta__________asid__.plist +0 -16
  846. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_instance_of__________asio__.plist +0 -16
  847. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_kind_of__________asko__.plist +0 -16
  848. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_match__________asm__.plist +0 -16
  849. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nil__________asn__.plist +0 -16
  850. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_no_match__________asnm__.plist +0 -16
  851. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_equal__________asne__.plist +0 -16
  852. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_nil__________asnn__.plist +0 -16
  853. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_same__________asns__.plist +0 -16
  854. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nothing_raised___________________asnr__.plist +0 -16
  855. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nothing_thrown_____________asnt__.plist +0 -16
  856. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_operator__________aso__.plist +0 -16
  857. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_raise___________________asr__.plist +0 -16
  858. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_respond_to__________asrt__.plist +0 -16
  859. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_same__________ass__.plist +0 -16
  860. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_send__________ass__.plist +0 -16
  861. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_throws___________________ast__.plist +0 -16
  862. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_accessor_______rw__.plist +0 -16
  863. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_reader_______r__.plist +0 -16
  864. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_writer_______w__.plist +0 -16
  865. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______DelegateClass____initialize____end____class__.plist +0 -24
  866. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______ParentClass____initialize____end.plist +0 -22
  867. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______Struct____initialize____end.plist +0 -22
  868. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______Test____Unit____TestCase____end____tc__.plist +0 -24
  869. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class______self____end.tmSnippet +0 -18
  870. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____end____cla__.plist +0 -18
  871. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____initialize____end.plist +0 -22
  872. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____instance_methods____undef____initialize____end____class__.plist +0 -30
  873. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_from_name________clafn__.plist +0 -16
  874. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_classify______e____________clas__.plist +0 -16
  875. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_collect______e____________col__.plist +0 -16
  876. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_deep_copy__________dee__.plist +0 -16
  877. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_delegator______defd__.plist +0 -16
  878. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_delegators______defds__.plist +0 -16
  879. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_end.plist +0 -18
  880. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_method_missing____end____mm__.plist +0 -18
  881. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_self____end____defs__.plist +0 -18
  882. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_test_____end____t__.plist +0 -18
  883. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_delete_if______e____________deli__.plist +0 -16
  884. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_detect______e____________det__.plist +0 -16
  885. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_directory____.tmSnippet +0 -16
  886. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_do___obj______end___doo__.plist +0 -18
  887. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_downto__0________n____________dow__.plist +0 -16
  888. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each______e____________ea__.plist +0 -16
  889. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_byte______byte____________eab__.plist +0 -16
  890. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_char______chr____________eac____.plist +0 -16
  891. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_cons____________group____________eac____.plist +0 -16
  892. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_index______i____________eai__.plist +0 -16
  893. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_key______key____________eak__.plist +0 -16
  894. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_line______line____________eal__.plist +0 -16
  895. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_pair______name___val____________eap__.plist +0 -16
  896. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_slice______group____________eas__.plist +0 -16
  897. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_value______val____________eav__.plist +0 -16
  898. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_with_index______e___i____________eawi__.plist +0 -16
  899. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_elsif____.tmSnippet +0 -17
  900. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_embed_string_variable.plist +0 -16
  901. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_extend_Forwardable____Forw__.plist +0 -16
  902. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_fetch__name________key____________fet__.plist +0 -16
  903. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_fill__range________i____________fil__.plist +0 -16
  904. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_find______e____________fin__.plist +0 -16
  905. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_find_all______e____________fina__.plist +0 -16
  906. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_flatten_once____fla__.plist +0 -16
  907. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_flunk__________fl__.plist +0 -16
  908. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_grep____pattern__________match____________gre__.plist +0 -16
  909. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_gsub________________match____________gsu__.plist +0 -16
  910. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_hash_pair_______.plist +0 -16
  911. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_hash_pointer.plist +0 -16
  912. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_include_Comparable_______Comp__.plist +0 -20
  913. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_include_Enumerable_______Enum__.plist +0 -20
  914. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_inject__init________mem___var____________inj__.plist +0 -16
  915. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_lambda______args____________lam__.plist +0 -16
  916. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_loop_________.tmSnippet +0 -16
  917. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_map______e____________map__.plist +0 -16
  918. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_map_with_index______e___i____________mapwi__.plist +0 -16
  919. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_max______a___b____________max__.plist +0 -16
  920. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_min______a___b____________min__.plist +0 -16
  921. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____ClassMethods____end.plist +0 -29
  922. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____end.plist +0 -18
  923. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____module_function____end.plist +0 -20
  924. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_namespace______do____end.tmSnippet +0 -18
  925. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_open____path__or__url_______w_____do___doc______end___ope__.plist +0 -16
  926. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_open_yield_block_______.plist +0 -16
  927. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_option_parse_____________optp__.plist +0 -43
  928. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_partition______e____________par__.plist +0 -16
  929. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_path_from_here________.tmSnippet +0 -16
  930. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_randomize____ran__.plist +0 -16
  931. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_reject______e____________rej__.plist +0 -16
  932. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require___________req__.plist +0 -16
  933. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require___tc____________ts__.plist +0 -20
  934. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require_gem_______.tmSnippet +0 -16
  935. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_results_report_______________.tmSnippet +0 -16
  936. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_reverse_each______e____________rea__.plist +0 -16
  937. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_scan________________match____________sca__.plist +0 -16
  938. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_select______e____________sel__.plist +0 -16
  939. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_singleton_class____.tmSnippet +0 -16
  940. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sort______a___b____________sor__.plist +0 -16
  941. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sort_by______e____________sorb__.plist +0 -16
  942. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_step__2________e____________ste__.plist +0 -16
  943. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sub________________match____________sub__.plist +0 -16
  944. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_task___task_name__________dependent_____tasks___do____end.tmSnippet +0 -19
  945. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_times______n____________tim__.plist +0 -16
  946. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_transaction_________do____end.tmSnippet +0 -16
  947. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_unix_filter______uni__.plist +0 -18
  948. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_unless___unless__.plist +0 -18
  949. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_until_____end.tmSnippet +0 -18
  950. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_upto__1_0__0_0________n____________upt__.plist +0 -16
  951. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_usage_if________usai__.plist +0 -18
  952. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_usage_unless________usau__.plist +0 -18
  953. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_while_____end.tmSnippet +0 -18
  954. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_xmlread______.tmSnippet +0 -16
  955. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_xpath_______________.tmSnippet +0 -18
  956. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_zip__enums________row____________zip__.plist +0 -16
  957. data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_DynamicForward___df__.tmSnippet +0 -16
  958. data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_Host___host__.tmSnippet +0 -20
  959. data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_IdentityFile___idf__.tmSnippet +0 -16
  960. data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_LocalForward___lf__.tmSnippet +0 -16
  961. data/plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Snippets/next_Try__Catch__Finally.tmSnippet +0 -27
  962. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_______usr__bin__env_____env__.plist +0 -17
  963. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_case____esac___case__.plist +0 -19
  964. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_elif______elif__.plist +0 -17
  965. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_for________in________done___forin__.plist +0 -18
  966. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_for_____done___for__.plist +0 -18
  967. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_here_document___here__.plist +0 -18
  968. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_if_____then___if__.plist +0 -18
  969. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_until__________done__.plist +0 -18
  970. data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_while__________done__.plist +0 -18
  971. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Disable_spell_checking_for_all.plist +0 -17
  972. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Enable_spell_checking_for_strings.plist +0 -17
  973. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_String__comment_typing_pairs.plist +0 -42
  974. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Symbol_list.plist +0 -17
  975. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Continue_line_comment.plist +0 -35
  976. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Escaped_Quote_Pair_____________.plist +0 -14
  977. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Escaped_Single_Quote_Pair_____________.plist +0 -14
  978. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Frame_text.plist +0 -16
  979. data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next___n.plist +0 -16
  980. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Bold.plist +0 -17
  981. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Italic.plist +0 -17
  982. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Underline.plist +0 -17
  983. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Spell_checking.plist +0 -17
  984. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_010_Copyright.plist +0 -14
  985. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_bullet.plist +0 -17
  986. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_light_bullet.plist +0 -17
  987. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_star_bullet.plist +0 -17
  988. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Insert_ISO_date.plist +0 -14
  989. data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Lorem_ipsum.plist +0 -14
  990. data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Smart_Pairs___Regex_Character_Class__.tmPreferences +0 -17
  991. data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Spell_Checking___Disable_for_CamelCase_Words.tmPreferences +0 -17
  992. data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Style___Separator.tmPreferences +0 -19
  993. data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Style___Separator____Release_Notes.tmPreferences +0 -19
  994. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/next_Disable_Spell_Check_in_Raw.plist +0 -17
  995. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/next_Symbol_List___Heading.plist +0 -29
  996. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Block_Quotes.tmSnippet +0 -18
  997. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Class_and_Id.tmSnippet +0 -16
  998. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Color_2.tmSnippet +0 -16
  999. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Convert_Tabs_To_Table.plist +0 -14
  1000. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_1.tmSnippet +0 -18
  1001. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_2.tmSnippet +0 -18
  1002. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_3.tmSnippet +0 -18
  1003. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_4.tmSnippet +0 -18
  1004. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_5.tmSnippet +0 -18
  1005. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_6.tmSnippet +0 -18
  1006. data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Linked_Image.tmSnippet +0 -16
  1007. data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___enum.tmPreferences +0 -19
  1008. data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___exception.tmPreferences +0 -19
  1009. data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___function.tmPreferences +0 -19
  1010. data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___senum.tmPreferences +0 -19
  1011. data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___service.tmPreferences +0 -19
  1012. data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___struct.tmPreferences +0 -19
  1013. data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Preferences/next_Symbol_List___Templates.plist +0 -19
  1014. data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_Smart_return__indent_for_tag_pairs.plist +0 -18
  1015. data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_XML_Processing_Instruction.tmSnippet +0 -16
  1016. data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_long_attribute_tag.plist +0 -17
  1017. data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_long_tag.plist +0 -16
  1018. data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_short_tag.plist +0 -16
  1019. data/plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Snippets/next_line___.tmSnippet +0 -19
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redcar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ hash: 1
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 5
9
+ version: "0.5"
5
10
  platform: ruby
6
11
  authors:
7
12
  - Daniel Lucraft
@@ -9,49 +14,65 @@ autorequire:
9
14
  bindir: bin
10
15
  cert_chain: []
11
16
 
12
- date: 2010-08-24 00:00:00 +01:00
17
+ date: 2010-09-07 00:00:00 +01:00
13
18
  default_executable:
14
19
  dependencies:
15
20
  - !ruby/object:Gem::Dependency
16
21
  name: rubyzip
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
20
25
  requirements:
21
26
  - - ">="
22
27
  - !ruby/object:Gem::Version
28
+ hash: 3
29
+ segments:
30
+ - 0
23
31
  version: "0"
24
- version:
32
+ type: :runtime
33
+ version_requirements: *id001
25
34
  - !ruby/object:Gem::Dependency
26
35
  name: cucumber
27
- type: :development
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ none: false
30
39
  requirements:
31
40
  - - ">="
32
41
  - !ruby/object:Gem::Version
42
+ hash: 3
43
+ segments:
44
+ - 0
33
45
  version: "0"
34
- version:
46
+ type: :development
47
+ version_requirements: *id002
35
48
  - !ruby/object:Gem::Dependency
36
49
  name: rspec
37
- type: :development
38
- version_requirement:
39
- version_requirements: !ruby/object:Gem::Requirement
50
+ prerelease: false
51
+ requirement: &id003 !ruby/object:Gem::Requirement
52
+ none: false
40
53
  requirements:
41
54
  - - ">="
42
55
  - !ruby/object:Gem::Version
56
+ hash: 3
57
+ segments:
58
+ - 0
43
59
  version: "0"
44
- version:
60
+ type: :development
61
+ version_requirements: *id003
45
62
  - !ruby/object:Gem::Dependency
46
63
  name: watchr
47
- type: :development
48
- version_requirement:
49
- version_requirements: !ruby/object:Gem::Requirement
64
+ prerelease: false
65
+ requirement: &id004 !ruby/object:Gem::Requirement
66
+ none: false
50
67
  requirements:
51
68
  - - ">="
52
69
  - !ruby/object:Gem::Version
70
+ hash: 3
71
+ segments:
72
+ - 0
53
73
  version: "0"
54
- version:
74
+ type: :development
75
+ version_requirements: *id004
55
76
  description:
56
77
  email: dan@fluentradical.com
57
78
  executables:
@@ -566,35 +587,36 @@ files:
566
587
  - lib/plugin_manager/plugin_manager.gemspec
567
588
  - lib/plugin_manager/Rakefile
568
589
  - lib/plugin_manager/README.md
569
- - lib/plugin_manager/spec/fixtures/error_in_definition/core/plugin.rb
570
- - lib/plugin_manager/spec/fixtures/error_in_plugin/core/core.rb
571
- - lib/plugin_manager/spec/fixtures/error_in_plugin/core/plugin.rb
572
- - lib/plugin_manager/spec/fixtures/example/core/core.rb
573
- - lib/plugin_manager/spec/fixtures/example/core/plugin.rb
574
- - lib/plugin_manager/spec/fixtures/example/debug/debug.rb
575
- - lib/plugin_manager/spec/fixtures/example/debug/plugin.rb
576
- - lib/plugin_manager/spec/fixtures/example/extras/extras.rb
577
- - lib/plugin_manager/spec/fixtures/example/extras/plugin.rb
578
- - lib/plugin_manager/spec/fixtures/two_versions1/core/core.rb
579
- - lib/plugin_manager/spec/fixtures/two_versions1/core/plugin.rb
580
- - lib/plugin_manager/spec/fixtures/two_versions1/core2/core.rb
581
- - lib/plugin_manager/spec/fixtures/two_versions1/core2/plugin.rb
582
- - lib/plugin_manager/spec/fixtures/two_versions2/core/core.rb
583
- - lib/plugin_manager/spec/fixtures/two_versions2/core/plugin.rb
584
- - lib/plugin_manager/spec/fixtures/two_versions2/core2/core.rb
585
- - lib/plugin_manager/spec/fixtures/two_versions2/core2/plugin.rb
586
- - lib/plugin_manager/spec/fixtures/unmet_dependencies1/core/core.rb
587
- - lib/plugin_manager/spec/fixtures/unmet_dependencies1/core/plugin.rb
588
- - lib/plugin_manager/spec/fixtures/unmet_dependencies1/debug/debug.rb
589
- - lib/plugin_manager/spec/fixtures/unmet_dependencies1/debug/plugin.rb
590
- - lib/plugin_manager/spec/fixtures/unmet_dependencies2/core/core.rb
591
- - lib/plugin_manager/spec/fixtures/unmet_dependencies2/core/plugin.rb
592
- - lib/plugin_manager/spec/fixtures/unmet_dependencies2/debug/debug.rb
593
- - lib/plugin_manager/spec/fixtures/unmet_dependencies2/debug/plugin.rb
590
+ - lib/plugin_manager/spec/fixtures/plugin_loading/error_in_definition/core/plugin.rb
591
+ - lib/plugin_manager/spec/fixtures/plugin_loading/error_in_plugin/core/core.rb
592
+ - lib/plugin_manager/spec/fixtures/plugin_loading/error_in_plugin/core/plugin.rb
593
+ - lib/plugin_manager/spec/fixtures/plugin_loading/example/core/core.rb
594
+ - lib/plugin_manager/spec/fixtures/plugin_loading/example/core/plugin.rb
595
+ - lib/plugin_manager/spec/fixtures/plugin_loading/example/debug/debug.rb
596
+ - lib/plugin_manager/spec/fixtures/plugin_loading/example/debug/plugin.rb
597
+ - lib/plugin_manager/spec/fixtures/plugin_loading/example/extras/extras.rb
598
+ - lib/plugin_manager/spec/fixtures/plugin_loading/example/extras/plugin.rb
599
+ - lib/plugin_manager/spec/fixtures/plugin_loading/two_versions1/core/core.rb
600
+ - lib/plugin_manager/spec/fixtures/plugin_loading/two_versions1/core/plugin.rb
601
+ - lib/plugin_manager/spec/fixtures/plugin_loading/two_versions1/core2/core.rb
602
+ - lib/plugin_manager/spec/fixtures/plugin_loading/two_versions1/core2/plugin.rb
603
+ - lib/plugin_manager/spec/fixtures/plugin_loading/two_versions2/core/core.rb
604
+ - lib/plugin_manager/spec/fixtures/plugin_loading/two_versions2/core/plugin.rb
605
+ - lib/plugin_manager/spec/fixtures/plugin_loading/two_versions2/core2/core.rb
606
+ - lib/plugin_manager/spec/fixtures/plugin_loading/two_versions2/core2/plugin.rb
607
+ - lib/plugin_manager/spec/fixtures/plugin_loading/unmet_dependencies1/core/core.rb
608
+ - lib/plugin_manager/spec/fixtures/plugin_loading/unmet_dependencies1/core/plugin.rb
609
+ - lib/plugin_manager/spec/fixtures/plugin_loading/unmet_dependencies1/debug/debug.rb
610
+ - lib/plugin_manager/spec/fixtures/plugin_loading/unmet_dependencies1/debug/plugin.rb
611
+ - lib/plugin_manager/spec/fixtures/plugin_loading/unmet_dependencies2/core/core.rb
612
+ - lib/plugin_manager/spec/fixtures/plugin_loading/unmet_dependencies2/core/plugin.rb
613
+ - lib/plugin_manager/spec/fixtures/plugin_loading/unmet_dependencies2/debug/debug.rb
614
+ - lib/plugin_manager/spec/fixtures/plugin_loading/unmet_dependencies2/debug/plugin.rb
594
615
  - lib/plugin_manager/spec/plugin_manager_spec.rb
595
616
  - lib/plugin_manager/spec/spec_helper.rb
596
617
  - lib/redcar/installer.rb
597
618
  - lib/redcar/instance_exec.rb
619
+ - lib/redcar/jvm_options_probe.rb
598
620
  - lib/redcar/plist.rb
599
621
  - lib/redcar/ruby_extensions.rb
600
622
  - lib/redcar/runner.rb
@@ -614,6 +636,7 @@ files:
614
636
  - plugins/application/icons/close.png
615
637
  - plugins/application/icons/darwin-file.png
616
638
  - plugins/application/icons/darwin-folder.png
639
+ - plugins/application/icons/redcar-splash.png
617
640
  - plugins/application/icons/redcar_icon_beta.png
618
641
  - plugins/application/icons/redcar_icon_beta_dev.png
619
642
  - plugins/application/lib/application/assets/file.png
@@ -662,12 +685,9 @@ files:
662
685
  - plugins/application_swt/build.xml
663
686
  - plugins/application_swt/lib/application_swt/bring_to_front.rb
664
687
  - plugins/application_swt/lib/application_swt/clipboard.rb
665
- - plugins/application_swt/lib/application_swt/cucumber_patches.rb
666
- - plugins/application_swt/lib/application_swt/cucumber_runner.rb
667
688
  - plugins/application_swt/lib/application_swt/dialog_adapter.rb
668
689
  - plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb
669
690
  - plugins/application_swt/lib/application_swt/dialogs/no_buttons_dialog.rb
670
- - plugins/application_swt/lib/application_swt/event_loop.rb
671
691
  - plugins/application_swt/lib/application_swt/html_tab.rb
672
692
  - plugins/application_swt/lib/application_swt/menu/binding_translator.rb
673
693
  - plugins/application_swt/lib/application_swt/menu.rb
@@ -675,9 +695,6 @@ files:
675
695
  - plugins/application_swt/lib/application_swt/notebook/tab_transfer.rb
676
696
  - plugins/application_swt/lib/application_swt/notebook.rb
677
697
  - plugins/application_swt/lib/application_swt/speedbar.rb
678
- - plugins/application_swt/lib/application_swt/swt/grid_data.rb
679
- - plugins/application_swt/lib/application_swt/swt/listener_helpers.rb
680
- - plugins/application_swt/lib/application_swt/swt_wrapper.rb
681
698
  - plugins/application_swt/lib/application_swt/tab.rb
682
699
  - plugins/application_swt/lib/application_swt/treebook.rb
683
700
  - plugins/application_swt/lib/application_swt/window.rb
@@ -687,10 +704,6 @@ files:
687
704
  - plugins/application_swt/spec/application_swt/menu_spec.rb
688
705
  - plugins/application_swt/spec/spec_helper.rb
689
706
  - plugins/application_swt/src/com/redcareditor/application_swt/CocoaUIEnhancer.java
690
- - plugins/application_swt/vendor/swt/linux/dummy
691
- - plugins/application_swt/vendor/swt/osx/dummy
692
- - plugins/application_swt/vendor/swt/osx64/dummy
693
- - plugins/application_swt/vendor/swt/win32/dummy
694
707
  - plugins/auto_completer/features/auto_complete.feature
695
708
  - plugins/auto_completer/features/step_definitions/auto_complete_steps.rb
696
709
  - plugins/auto_completer/features/support/env.rb
@@ -829,18 +842,18 @@ files:
829
842
  - plugins/encryption/plugin.rb
830
843
  - plugins/execute_current_tab/lib/execute_current_tab.rb
831
844
  - plugins/execute_current_tab/plugin.rb
845
+ - plugins/file_parser/lib/file_parser.rb
846
+ - plugins/file_parser/plugin.rb
832
847
  - plugins/find-in-project/lib/find_in_project/commands.rb
833
848
  - plugins/find-in-project/lib/find_in_project/controllers.rb
834
- - plugins/find-in-project/lib/find_in_project/engines/ack.rb
835
- - plugins/find-in-project/lib/find_in_project/engines/grep.rb
836
849
  - plugins/find-in-project/lib/find_in_project/images/collapsed.png
837
850
  - plugins/find-in-project/lib/find_in_project/images/expanded.png
838
851
  - plugins/find-in-project/lib/find_in_project/stylesheets/style.css
839
- - plugins/find-in-project/lib/find_in_project/views/_results.html.erb
852
+ - plugins/find-in-project/lib/find_in_project/views/_file_heading.html.erb
853
+ - plugins/find-in-project/lib/find_in_project/views/_file_line.html.erb
840
854
  - plugins/find-in-project/lib/find_in_project/views/index.html.erb
841
855
  - plugins/find-in-project/lib/find_in_project.rb
842
856
  - plugins/find-in-project/plugin.rb
843
- - plugins/find-in-project/README.md
844
857
  - plugins/find-in-project/TODO.md
845
858
  - plugins/html_view/assets/blueprint/ie.css
846
859
  - plugins/html_view/assets/blueprint/print.css
@@ -1177,17 +1190,7 @@ files:
1177
1190
  - plugins/runnables/views/running_test.html
1178
1191
  - plugins/runnables/views/wedgeDown.png
1179
1192
  - plugins/runnables/views/wedgeRight.png
1180
- - plugins/scm/icons/ATTRIBUTION
1181
- - plugins/scm/icons/folder--arrow.png
1182
- - plugins/scm/icons/folder--exclamation.png
1183
- - plugins/scm/icons/folder--minus.png
1184
- - plugins/scm/icons/folder--pencil.png
1185
- - plugins/scm/icons/folder--plus.png
1186
- - plugins/scm/icons/notebook--arrow.png
1187
- - plugins/scm/icons/notebook--exclamation.png
1188
- - plugins/scm/icons/notebook--minus.png
1189
- - plugins/scm/icons/notebook--pencil.png
1190
- - plugins/scm/icons/notebook--plus.png
1193
+ - plugins/scm/lib/scm/commands.rb
1191
1194
  - plugins/scm/lib/scm/commit_mirror.rb
1192
1195
  - plugins/scm/lib/scm/diff_mirror.rb
1193
1196
  - plugins/scm/lib/scm/errors.rb
@@ -1534,10 +1537,17 @@ files:
1534
1537
  - plugins/strip_trailing_spaces/lib/strip_trailing_spaces.rb
1535
1538
  - plugins/strip_trailing_spaces/plugin.rb
1536
1539
  - plugins/strip_trailing_spaces/README.md
1540
+ - plugins/swt/lib/swt/cucumber_patches.rb
1541
+ - plugins/swt/lib/swt/cucumber_runner.rb
1542
+ - plugins/swt/lib/swt/event_loop.rb
1543
+ - plugins/swt/lib/swt/full_swt.rb
1544
+ - plugins/swt/lib/swt/grid_data.rb
1545
+ - plugins/swt/lib/swt/listener_helpers.rb
1546
+ - plugins/swt/lib/swt.rb
1547
+ - plugins/swt/plugin.rb
1537
1548
  - plugins/task_manager/lib/task_manager.rb
1538
1549
  - plugins/task_manager/plugin.rb
1539
1550
  - plugins/task_manager/views/index.html.erb
1540
- - plugins/textmate/ATTRIBUTION
1541
1551
  - plugins/textmate/features/bundle_tree.feature
1542
1552
  - plugins/textmate/features/step_definitions/tree_steps.rb
1543
1553
  - plugins/textmate/features/support/env.rb
@@ -1549,9 +1559,6 @@ files:
1549
1559
  - plugins/textmate/features/support/test_bundle.tmbundle/Snippets/next_If__Else.tmSnippet
1550
1560
  - plugins/textmate/features/support/test_bundle.tmbundle/Snippets/Unless.tmSnippet
1551
1561
  - plugins/textmate/features/support/test_bundle.tmbundle/Snippets/Var.tmSnippet
1552
- - plugins/textmate/icons/document-snippet.png
1553
- - plugins/textmate/icons/document-tree.png
1554
- - plugins/textmate/icons/ui-menu-blue.png
1555
1562
  - plugins/textmate/lib/textmate/bundle.rb
1556
1563
  - plugins/textmate/lib/textmate/commands.rb
1557
1564
  - plugins/textmate/lib/textmate/environment.rb
@@ -1676,23 +1683,11 @@ files:
1676
1683
  - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/Completions___Modules_Identifiers.tmPreferences
1677
1684
  - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/Default_Tag_Inside_Virtual_Host.tmPreferences
1678
1685
  - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/Miscellaneous.plist
1679
- - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Completions___Modules.tmPreferences
1680
- - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Completions___Modules_Identifiers.tmPreferences
1681
- - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Default_Tag_Inside_Virtual_Host.tmPreferences
1682
- - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Directory.tmPreferences
1683
- - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Location.tmPreferences
1684
- - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___VHost_Directory.tmPreferences
1685
- - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___VHost_Location.tmPreferences
1686
- - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Virtual_Host.plist
1687
1686
  - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/Symbols___Directory.tmPreferences
1688
1687
  - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/Symbols___Location.tmPreferences
1689
1688
  - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/Symbols___VHost_Directory.tmPreferences
1690
1689
  - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/Symbols___VHost_Location.tmPreferences
1691
1690
  - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/Symbols___Virtual_Host.plist
1692
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List.tmPreferences
1693
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_item_scopes__.tmPreferences
1694
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_items__.tmPreferences
1695
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_Separator__.tmPreferences
1696
1691
  - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/Symbol_List.tmPreferences
1697
1692
  - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/Symbol_List___Repository_item_scopes__.tmPreferences
1698
1693
  - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/Symbol_List___Repository_items__.tmPreferences
@@ -1700,11 +1695,6 @@ files:
1700
1695
  - plugins/textmate/vendor/redcar-bundles/Bundles/C Sharp.tmbundle/Preferences/Miscellaneous___NAnt_Build_File__.tmPreferences
1701
1696
  - plugins/textmate/vendor/redcar-bundles/Bundles/C Sharp.tmbundle/Preferences/Symbol_List___Method____Constructor.plist
1702
1697
  - plugins/textmate/vendor/redcar-bundles/Bundles/C Sharp.tmbundle/Preferences/Unity___C_____Auto_Complete.plist
1703
- - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Comments.tmPreferences
1704
- - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Completitions.tmPreferences
1705
- - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Typing_Pairs.tmPreferences
1706
- - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_Qt_C_____Completitions.tmPreferences
1707
- - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_Qt_C_____Indentation_Rules.tmPreferences
1708
1698
  - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/qmake_Comments.tmPreferences
1709
1699
  - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/qmake_Completitions.tmPreferences
1710
1700
  - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/qmake_Typing_Pairs.tmPreferences
@@ -1717,14 +1707,6 @@ files:
1717
1707
  - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/Include_typing_pairs.plist
1718
1708
  - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/Indentation_Rules.plist
1719
1709
  - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/Indentation_Rules___Comments__.tmPreferences
1720
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Comments___C______.tmPreferences
1721
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Disable_Spell_Checking.plist
1722
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_Completion.plist
1723
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_Completion___System__.tmPreferences
1724
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_typing_pairs.plist
1725
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Indentation_Rules.plist
1726
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Symbol_List___Indent_Class_Methods.tmPreferences
1727
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Template__cast_typing_pairs.plist
1728
1710
  - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/Symbol_List___Indent_Class_Methods.tmPreferences
1729
1711
  - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/Symbol_List___Prefix_Banner_Items.tmPreferences
1730
1712
  - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/Template__cast_typing_pairs.plist
@@ -1740,10 +1722,6 @@ files:
1740
1722
  - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/Comments.tmPreferences
1741
1723
  - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/Completions.tmPreferences
1742
1724
  - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/Miscellaneous.tmPreferences
1743
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Property_Completions.tmPreferences
1744
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Property_Value_Completions.tmPreferences
1745
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Symbol_list.tmPreferences
1746
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Symbol_List___Group.tmPreferences
1747
1725
  - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/Property_Completions.tmPreferences
1748
1726
  - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/Property_Value_Completions.tmPreferences
1749
1727
  - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/PropertyName.tmPreferences
@@ -1751,17 +1729,11 @@ files:
1751
1729
  - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/Symbol_List___Group.tmPreferences
1752
1730
  - plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/Comments.tmPreferences
1753
1731
  - plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/Cucumber_Plain_Text_Feature_Completions.tmPreferences
1754
- - plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Cucumber_Plain_Text_Feature_Completions.tmPreferences
1755
- - plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Scenario.tmPreferences
1756
- - plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Steps.tmPreferences
1757
- - plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Steps_with_String.tmPreferences
1758
1732
  - plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/Symbol_list___Scenario.tmPreferences
1759
1733
  - plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/Symbol_list___Steps.tmPreferences
1760
1734
  - plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/Symbol_list___Steps_with_String.tmPreferences
1761
1735
  - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/Comments.tmPreferences
1762
1736
  - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/Indentation_Rules.tmPreferences
1763
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/next_Indentation_Rules.tmPreferences
1764
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/next_Symbol_List__Method__Constructor.tmPreferences
1765
1737
  - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/Symbol_List__Method__Constructor.tmPreferences
1766
1738
  - plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/Markup_style___Changed.plist
1767
1739
  - plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/Markup_style___Deleted.plist
@@ -1769,17 +1741,8 @@ files:
1769
1741
  - plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/Markup_style___Header.plist
1770
1742
  - plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/Markup_style___Inserted.plist
1771
1743
  - plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/Markup_style___Range.plist
1772
- - plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Changed.plist
1773
- - plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Deleted.plist
1774
- - plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Diff_metadata.plist
1775
- - plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Header.plist
1776
- - plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Inserted.plist
1777
- - plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Range.plist
1778
- - plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Symbol_List___Indent_Ranges.plist
1779
1744
  - plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/Symbol_List___Indent_Ranges.plist
1780
1745
  - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Preferences/Disable_spell_checking_in_raw.tmPreferences
1781
- - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Preferences/next_Disable_spell_checking_in_raw.tmPreferences
1782
- - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Preferences/next_Show_Heading_in_list.tmPreferences
1783
1746
  - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Preferences/Show_Heading_in_list.tmPreferences
1784
1747
  - plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Preferences/Symbol_List___Class_Variables.tmPreferences
1785
1748
  - plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Preferences/Symbol_List___Classes.tmPreferences
@@ -1788,20 +1751,12 @@ files:
1788
1751
  - plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Preferences/Symbol_List___Variables.tmPreferences
1789
1752
  - plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/Comments.tmPreferences
1790
1753
  - plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/Indent_Patterns.plist
1791
- - plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Indent_Patterns.plist
1792
- - plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Symbol_List.tmPreferences
1793
- - plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Typing_Pairs.plist
1794
1754
  - plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/Symbol_List.tmPreferences
1795
1755
  - plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/Typing_Pairs.plist
1796
1756
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/Comments.plist
1797
1757
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/Completions_HTML_Attributes.tmPreferences
1798
1758
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/Empty_tag_typing_pairs.plist
1799
1759
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/Miscellaneous.plist
1800
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Completions_HTML_Attributes.tmPreferences
1801
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Empty_tag_typing_pairs.plist
1802
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Symbol_List___ID.plist
1803
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Tag_Completions.tmPreferences
1804
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Tag_preferences.plist
1805
1760
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/Symbol_List___ID.plist
1806
1761
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/Tag_Completions.tmPreferences
1807
1762
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/Tag_preferences.plist
@@ -1813,41 +1768,23 @@ files:
1813
1768
  - plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/Markdown.tmPreferences
1814
1769
  - plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/Mediawiki.tmPreferences
1815
1770
  - plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/MoinMoin.tmPreferences
1816
- - plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/next_Bulletin_Board.tmPreferences
1817
- - plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/next_Fallback___not_supported__.tmPreferences
1818
1771
  - plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/reStructuredText.tmPreferences
1819
1772
  - plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/Textile.tmPreferences
1820
1773
  - plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/TWiki.tmPreferences
1821
1774
  - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/Comments.tmPreferences
1822
1775
  - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/Indentation_Rules.plist
1823
- - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/next_Indentation_Rules.plist
1824
- - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/next_Typing_Pairs.plist
1825
1776
  - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/Typing_Pairs.plist
1826
1777
  - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/Comments.tmPreferences
1827
1778
  - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/Indentation_Rules.tmPreferences
1828
- - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Indentation_Rules.tmPreferences
1829
- - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Classes.tmPreferences
1830
- - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Class_Methods.tmPreferences
1831
- - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Classes.tmPreferences
1832
- - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Inner_Class_Methods.tmPreferences
1833
- - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Inner_Classes.tmPreferences
1834
- - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Method.plist
1835
1779
  - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/Symbol_List___Classes.tmPreferences
1836
1780
  - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/Symbol_List___Inner_Class_Methods.tmPreferences
1837
1781
  - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/Symbol_List___Inner_Classes.tmPreferences
1838
1782
  - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/Symbol_List___Inner_Inner_Class_Methods.tmPreferences
1839
1783
  - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/Symbol_List___Inner_Inner_Classes.tmPreferences
1840
1784
  - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/Symbol_List___Method.plist
1841
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Preferences/next_Prototype_Completions.tmPreferences
1842
1785
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Preferences/Prototype_Completions.tmPreferences
1843
1786
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/Comments.tmPreferences
1844
1787
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/JavaScript_Indent.tmPreferences
1845
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_JavaScript_Indent.tmPreferences
1846
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Banned.tmPreferences
1847
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Class.tmPreferences
1848
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Instance.tmPreferences
1849
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Sub_1.tmPreferences
1850
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Sub_2.tmPreferences
1851
1788
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/Symbol_List_Banned.tmPreferences
1852
1789
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/Symbol_List_Class.tmPreferences
1853
1790
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/Symbol_List_Instance.tmPreferences
@@ -1860,16 +1797,6 @@ files:
1860
1797
  - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/Label_Completion.plist
1861
1798
  - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/Miscellaneous.plist
1862
1799
  - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/Miscellaneous___BibTeX__.tmPreferences
1863
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Beamer_Symbol_List.tmPreferences
1864
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Cite_Completion.plist
1865
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Disable_Smart_Typing_after_Backslashes.tmPreferences
1866
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Label_Completion.plist
1867
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Miscellaneous___BibTeX__.tmPreferences
1868
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Smart_Typing___Strings__.tmPreferences
1869
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Spell_Checking___Disable_for_Comments.tmPreferences
1870
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Spell_Checking_in_Strings.tmPreferences
1871
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Symbol_list.plist
1872
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_TexShop_comments.plist
1873
1800
  - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/Smart_Typing___Strings__.tmPreferences
1874
1801
  - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/Spell_Checking___Disable_for_Comments.tmPreferences
1875
1802
  - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/Spell_Checking_in_Strings.tmPreferences
@@ -1881,15 +1808,10 @@ files:
1881
1808
  - plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/Disable_spell_checking_for_raw.plist
1882
1809
  - plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/Indent___Raw.plist
1883
1810
  - plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/Miscellaneous.plist
1884
- - plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Disable_spell_checking_for_raw.plist
1885
- - plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Indent___Raw.plist
1886
- - plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Symbol_List___Heading.plist
1887
- - plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Typing_Pairs___Disable___for_Raw.plist
1888
1811
  - plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/Symbol_List___Heading.plist
1889
1812
  - plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/Typing_Pairs___Disable___for_Raw.plist
1890
1813
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl Template Toolkit.tmbundle/Preferences/Filename_Settings.plist
1891
1814
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl Template Toolkit.tmbundle/Preferences/Miscellaneous.plist
1892
- - plugins/textmate/vendor/redcar-bundles/Bundles/Perl Template Toolkit.tmbundle/Preferences/next_Filename_Settings.plist
1893
1815
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Preferences/Miscellaneous.plist
1894
1816
  - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/Add_Magic_Methods_to_the_Symbol_List.tmPreferences
1895
1817
  - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/Comments.plist
@@ -1899,36 +1821,21 @@ files:
1899
1821
  - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/Enable_Spellchecking_for_Docblocks.tmPreferences
1900
1822
  - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/Indentation_Rules.tmPreferences
1901
1823
  - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/Miscellaneous.plist
1902
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Add_Magic_Methods_to_the_Symbol_List.tmPreferences
1903
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Completion___includes.tmPreferences
1904
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Disable_spellcheck_in_require.tmPreferences
1905
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Enable_Spellchecking_for_Docblocks.tmPreferences
1906
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Indentation_Rules.tmPreferences
1907
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Symbols_List___functions.tmPreferences
1908
1824
  - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/Symbols_List___functions.tmPreferences
1909
1825
  - plugins/textmate/vendor/redcar-bundles/Bundles/Postscript.tmbundle/Preferences/Comments.tmPreferences
1910
1826
  - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Preferences/Miscellaneous.tmPreferences
1911
1827
  - plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/Comments.plist
1912
1828
  - plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/Indentation_Rules.tmPreferences
1913
- - plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Indentation_Rules.tmPreferences
1914
- - plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Symbol_List.plist
1915
- - plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Typing_Pairs.plist
1916
1829
  - plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/Symbol_List.plist
1917
1830
  - plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/Typing_Pairs.plist
1918
1831
  - plugins/textmate/vendor/redcar-bundles/Bundles/Python Django Templates.tmbundle/Preferences/Preferences.tmPreferences
1919
1832
  - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/Miscellaneous.plist
1920
- - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/next_Symbol_List.tmPreferences
1921
- - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/next_Symbol_List___Hide_Decorator.tmPreferences
1922
1833
  - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/Symbol_List.tmPreferences
1923
1834
  - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/Symbol_List___Hide_Decorator.tmPreferences
1924
1835
  - plugins/textmate/vendor/redcar-bundles/Bundles/Rez.tmbundle/Preferences/Miscellaneous.tmPreferences
1925
1836
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby Haml.tmbundle/Preferences/Comments.tmPreferences
1926
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Preferences/next_Template___ERB__.tmPreferences
1927
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Preferences/next_Template___Haml__.tmPreferences
1928
1837
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Preferences/Template___ERB__.tmPreferences
1929
1838
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Preferences/Template___Haml__.tmPreferences
1930
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Preferences/next_Symbol_List___Behaviour.tmPreferences
1931
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Preferences/next_Symbol_List___Example.tmPreferences
1932
1839
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Preferences/Symbol_List___Behaviour.tmPreferences
1933
1840
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Preferences/Symbol_List___Example.tmPreferences
1934
1841
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/Block_typing_pairs.plist
@@ -1936,11 +1843,6 @@ files:
1936
1843
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/Completion___ENV___________variables.tmPreferences
1937
1844
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/Completion___require_strings.tmPreferences
1938
1845
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/Miscellaneous.plist
1939
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Block_typing_pairs.plist
1940
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Completion___ENV___________variables.tmPreferences
1941
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Completion___require_strings.tmPreferences
1942
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Symbo_List___Method.plist
1943
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Symbol_List___No_Function_Call.tmPreferences
1944
1846
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/Symbo_List___Method.plist
1945
1847
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/Symbol_List___No_Function_Call.tmPreferences
1946
1848
  - plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Preferences/Comments.tmPreferences
@@ -1963,10 +1865,6 @@ files:
1963
1865
  - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/Disable_spell_checking_for_all.plist
1964
1866
  - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/Enable_spell_checking_for_strings.plist
1965
1867
  - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/Miscellaneous.plist
1966
- - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Disable_spell_checking_for_all.plist
1967
- - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Enable_spell_checking_for_strings.plist
1968
- - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_String__comment_typing_pairs.plist
1969
- - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Symbol_list.plist
1970
1868
  - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/String__comment_typing_pairs.plist
1971
1869
  - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/Symbol_list.plist
1972
1870
  - plugins/textmate/vendor/redcar-bundles/Bundles/SQL.tmbundle/Preferences/Comments.plist
@@ -1982,30 +1880,14 @@ files:
1982
1880
  - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/Markup_style___Italic.plist
1983
1881
  - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/Markup_style___Underline.plist
1984
1882
  - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/Miscellaneous.plist
1985
- - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Bold.plist
1986
- - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Italic.plist
1987
- - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Underline.plist
1988
- - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Spell_checking.plist
1989
1883
  - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/Spell_checking.plist
1990
1884
  - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/Disable_Spell_Check_in_Raw.plist
1991
- - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/next_Disable_Spell_Check_in_Raw.plist
1992
- - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/next_Symbol_List___Heading.plist
1993
1885
  - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/Preferences.plist
1994
1886
  - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/Symbol_List___Heading.plist
1995
- - plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Smart_Pairs___Regex_Character_Class__.tmPreferences
1996
- - plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Spell_Checking___Disable_for_CamelCase_Words.tmPreferences
1997
- - plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Style___Separator.tmPreferences
1998
- - plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Style___Separator____Release_Notes.tmPreferences
1999
1887
  - plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/Smart_Pairs___Regex_Character_Class__.tmPreferences
2000
1888
  - plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/Spell_Checking___Disable_for_CamelCase_Words.tmPreferences
2001
1889
  - plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/Style___Separator.tmPreferences
2002
1890
  - plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/Style___Separator____Release_Notes.tmPreferences
2003
- - plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___enum.tmPreferences
2004
- - plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___exception.tmPreferences
2005
- - plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___function.tmPreferences
2006
- - plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___senum.tmPreferences
2007
- - plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___service.tmPreferences
2008
- - plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___struct.tmPreferences
2009
1891
  - plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/Symbol_List___enum.tmPreferences
2010
1892
  - plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/Symbol_List___exception.tmPreferences
2011
1893
  - plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/Symbol_List___function.tmPreferences
@@ -2016,29 +1898,17 @@ files:
2016
1898
  - plugins/textmate/vendor/redcar-bundles/Bundles/Vala.tmbundle/Preferences/Symbol_List___Method____Constructor.plist
2017
1899
  - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Preferences/Comments.plist
2018
1900
  - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Preferences/Miscellaneous.plist
2019
- - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Preferences/next_Symbol_List___Templates.plist
2020
1901
  - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Preferences/Symbol_List___Templates.plist
2021
1902
  - plugins/textmate/vendor/redcar-bundles/Bundles/YAML.tmbundle/Preferences/Comments.plist
2022
1903
  - plugins/textmate/vendor/redcar-bundles/Bundles/YAML.tmbundle/Preferences/Indenting.plist
2023
1904
  - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/AllowOverride___allow__.tmSnippet
2024
1905
  - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/Directory.tmSnippet
2025
- - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_AllowOverride___allow__.tmSnippet
2026
- - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_Options___opt__.tmSnippet
2027
- - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_VirtualHost___vhost__.plist
2028
1906
  - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/Options___opt__.tmSnippet
2029
1907
  - plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/VirtualHost___vhost__.plist
2030
1908
  - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/Comments___comments__.plist
2031
1909
  - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/Cut___cut__.tmSnippet
2032
1910
  - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/Date___date__.plist
2033
1911
  - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/Keywords___keyw__.plist
2034
- - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Comments___comments__.plist
2035
- - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Cut___cut__.tmSnippet
2036
- - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Date___date__.plist
2037
- - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Keywords___keyw__.plist
2038
- - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Ping___ping__.plist
2039
- - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Pings___pings__.plist
2040
- - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Tags___tags__.plist
2041
- - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Title___title__.plist
2042
1912
  - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/Ping___ping__.plist
2043
1913
  - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/Pings___pings__.plist
2044
1914
  - plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/Tags___tags__.plist
@@ -2054,18 +1924,6 @@ files:
2054
1924
  - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/Include.tmSnippet
2055
1925
  - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/Match.tmSnippet
2056
1926
  - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/Name.tmSnippet
2057
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Begin_Captures.tmSnippet
2058
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Content_Name.tmSnippet
2059
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_End_Captures.tmSnippet
2060
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_ENV____TM___________.tmSnippet
2061
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Grammar____Single_Quotes.tmSnippet
2062
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Patterns___Repository__.tmSnippet
2063
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Require___Support__lib__________.tmSnippet
2064
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Begin____End___Inside_Rule__.tmSnippet
2065
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Match___Inside_Rule__.tmSnippet
2066
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Match___Repository__.tmSnippet
2067
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule___Begin____End__.tmSnippet
2068
- - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule___Repository__.tmSnippet
2069
1927
  - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/Patterns.tmSnippet
2070
1928
  - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/Patterns___Repository__.tmSnippet
2071
1929
  - plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/Repository.tmSnippet
@@ -2120,15 +1978,6 @@ files:
2120
1978
  - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/disconnect.tmSnippet
2121
1979
  - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/foreach.tmSnippet
2122
1980
  - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/main___qmain__.tmSnippet
2123
- - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_Block_Comment.tmSnippet
2124
- - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_Block_Comment_Newline.tmSnippet
2125
- - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_main___qmain__.tmSnippet
2126
- - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qmake_Project_template_stub.tmSnippet
2127
- - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qSort_______.tmSnippet
2128
- - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_QTimer____singleShot_______.tmSnippet
2129
- - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qWarning___warn__.tmSnippet
2130
- - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_toLatin1_____data_______latin__.tmSnippet
2131
- - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_toUtf8_____data____.tmSnippet
2132
1981
  - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/Q_PROPERTY.tmSnippet
2133
1982
  - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/qmake_Project_template_stub.tmSnippet
2134
1983
  - plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/qSort_______.tmSnippet
@@ -2150,24 +1999,6 @@ files:
2150
1999
  - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/if______if__.plist
2151
2000
  - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/Include_header_once_only_guard.plist
2152
2001
  - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/namespace______namespace__.plist
2153
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_010_main_______main__.plist
2154
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_030_for_int_loop___fori__.plist
2155
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___1_begin_________1_end_______beginend__.plist
2156
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___endif.plist
2157
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___ifndef__________define__________endif.tmSnippet
2158
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___include________Inc__.plist
2159
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___pragma_mark___mark__.plist
2160
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_class______class__.plist
2161
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_do___while_loop___do__.plist
2162
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_fprintf_______.tmSnippet
2163
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_if______if__.plist
2164
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_Include_header_once_only_guard.plist
2165
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_namespace______namespace__.plist
2166
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_printf______printf__.plist
2167
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_read_file___readF__.plist
2168
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_std____map___map__.plist
2169
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_std____vector___v__.plist
2170
- - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_template___typename________template__.plist
2171
2002
  - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/printf______printf__.plist
2172
2003
  - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/read_file___readF__.plist
2173
2004
  - plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/Shared_Pointer.tmSnippet
@@ -2279,102 +2110,6 @@ files:
2279
2110
  - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/margin__top___length___margin__.plist
2280
2111
  - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/marker__offset___auto___marker__.plist
2281
2112
  - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/marker__offset___length___marker__.plist
2282
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next___important_CSS_______.plist
2283
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background____color_image_repeat_attachment_position___background__.plist
2284
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__attachment___scroll__fixed___background__.plist
2285
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__hex___background__.plist
2286
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__name___background__.plist
2287
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__rgb___background__.plist
2288
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____transparent___background__.plist
2289
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__image____none___background__.plist
2290
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__image____url___background__.plist
2291
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__position____position___background__.plist
2292
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__repeat____r__r__x__r__y__n__r___background__.plist
2293
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border_____size_style_color___border__.plist
2294
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom___size_style_color___border__.plist
2295
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__color___size_style_color___border__.plist
2296
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__style___size_style_color___border__.plist
2297
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__width___size_style_color___border__.plist
2298
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__color___color___border__.plist
2299
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left___size_style_color___border__.plist
2300
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__color___color___border__.plist
2301
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__style___style___border__.plist
2302
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__width___size___border__.plist
2303
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right___size_style_color___border__.plist
2304
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__color___color___border__.plist
2305
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__style___style___border__.plist
2306
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__width___size___border__.plist
2307
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__style___style___border__.plist
2308
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top___size_style_color___border__.plist
2309
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__color___color___border__.plist
2310
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__style___style___border__.plist
2311
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__width___size___border__.plist
2312
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__width___width___border__.plist
2313
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_clear___value___clear__.plist
2314
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__hex___color__.plist
2315
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__name___color__.plist
2316
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__rgb___color__.plist
2317
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_cursor___type___cursor__.plist
2318
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_cursor___url___cursor__.plist
2319
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_direction___ltr__rtl___direction__.plist
2320
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___block___display__.plist
2321
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___common__types___display__.plist
2322
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___inline___display__.plist
2323
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___table__types___display__.plist
2324
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_filter___AlphaImageLoader___for_IE_PNGs_____background__.plist
2325
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_Fixed_Position_Bottom_100___wide_IE6.tmSnippet
2326
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_float___left__right__none___float__.plist
2327
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font_____style_variant_weight_size__line__height_font___family___font__.plist
2328
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font___size_font___font__.plist
2329
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__family_____family___font__.plist
2330
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__size___size___font__.plist
2331
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__style_____normal__italic__oblique___font__.plist
2332
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__variant_____normal__small__caps___font__.plist
2333
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__weight___weight___font__.plist
2334
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_letter__spacing_____length__em___letter__.plist
2335
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_letter__spacing_____length__px___letter__.plist
2336
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style___type_position_image___list__.plist
2337
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__image___url___list__.plist
2338
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__position___pos___list__.plist
2339
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___asian___list__.plist
2340
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___marker__list__.plist
2341
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___numeric___list__.plist
2342
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___other___list__.plist
2343
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___roman__alpha__greek___list__.plist
2344
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin_____all___margin__.plist
2345
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin___T_R_B_L___margin__.plist
2346
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin___V_H___margin__.plist
2347
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__bottom___length___margin__.plist
2348
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__left___length___margin__.plist
2349
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__right___length___margin__.plist
2350
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__top___length___margin__.plist
2351
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_marker__offset___auto___marker__.plist
2352
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_marker__offset___length___marker__.plist
2353
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_opacity_____for_Safari___FF_and_IE_____opacity__.plist
2354
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_overflow___type___overflow__.plist
2355
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____all___padding__.plist
2356
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____T_R_B_L___padding__.plist
2357
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____V_H___padding__.plist
2358
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__bottom___length___margin__.plist
2359
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__left___length___margin__.plist
2360
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__right___length___margin__.plist
2361
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__top___length___margin__.plist
2362
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_position___type___position__.plist
2363
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_properties_______________.plist
2364
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__align___left__center__right___txt__.plist
2365
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__decoration___none__underline__overline__line__through__blink___text__.plist
2366
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__indent___length___text__.plist
2367
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___color__hex_x_y_blur___text__.plist
2368
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___color__rgb_x_y_blur___text__.plist
2369
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___none___text__.plist
2370
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__transform___capitalize__upper__lower___text__.plist
2371
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__transform___none___text__.plist
2372
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_vertical__align___type___vertical__.plist
2373
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_visibility___type___visibility__.plist
2374
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_white__space____normal__pre__nowrap___white__.plist
2375
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_word__spacing____length___word__.plist
2376
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_word__spacing____normal___word__.plist
2377
- - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_z__index___index___z__.plist
2378
2113
  - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/opacity_____for_Safari___FF_and_IE_____opacity__.plist
2379
2114
  - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/overflow___type___overflow__.plist
2380
2115
  - plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/padding_____all___padding__.plist
@@ -2432,20 +2167,6 @@ files:
2432
2167
  - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/main.tmSnippet
2433
2168
  - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/main_with_args.tmSnippet
2434
2169
  - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/method.tmSnippet
2435
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_Continue_Block_Comment.tmSnippet
2436
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_err_format.tmSnippet
2437
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_foreach_reverse.tmSnippet
2438
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_if_else.tmSnippet
2439
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_error.tmSnippet
2440
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_fatal.tmSnippet
2441
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_info.tmSnippet
2442
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_trace.tmSnippet
2443
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_warn.tmSnippet
2444
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_main_with_args.tmSnippet
2445
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_out_format.tmSnippet
2446
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_catch.tmSnippet
2447
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_catch_finally.tmSnippet
2448
- - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_finally.tmSnippet
2449
2170
  - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/out.tmSnippet
2450
2171
  - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/out_format.tmSnippet
2451
2172
  - plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/return.tmSnippet
@@ -2468,18 +2189,6 @@ files:
2468
2189
  - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/Italic.tmSnippet
2469
2190
  - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/Left_Header.tmSnippet
2470
2191
  - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/Link.tmSnippet
2471
- - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_1.tmSnippet
2472
- - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_2.tmSnippet
2473
- - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_3.tmSnippet
2474
- - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_4.tmSnippet
2475
- - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_5.tmSnippet
2476
- - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Left_Header.tmSnippet
2477
- - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Numbered_item.tmSnippet
2478
- - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Numbered_item_2.tmSnippet
2479
- - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Table_Cell.tmSnippet
2480
- - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Top_Header.tmSnippet
2481
- - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Unnumbered_item.tmSnippet
2482
- - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Unnumbered_item_2.tmSnippet
2483
2192
  - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/Numbered_item.tmSnippet
2484
2193
  - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/Numbered_item_2.tmSnippet
2485
2194
  - plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/Table.tmSnippet
@@ -2616,7 +2325,6 @@ files:
2616
2325
  - plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Snippets/import.tmSnippet
2617
2326
  - plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Snippets/mkdir.tmSnippet
2618
2327
  - plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Snippets/new_File_______eachLine_________.tmSnippet
2619
- - plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Snippets/next_line___.tmSnippet
2620
2328
  - plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Snippets/package.tmSnippet
2621
2329
  - plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Snippets/print.tmSnippet
2622
2330
  - plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Snippets/println_.tmSnippet
@@ -2683,8 +2391,6 @@ files:
2683
2391
  - plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/Instance.tmSnippet
2684
2392
  - plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/Main.tmSnippet
2685
2393
  - plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/module.plist
2686
- - plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/next___.plist
2687
- - plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/next_t______f_t.tmSnippet
2688
2394
  - plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/t______f_t.tmSnippet
2689
2395
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/Arrow___arrow__.plist
2690
2396
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/Backspace___backspace__.plist
@@ -2714,60 +2420,6 @@ files:
2714
2420
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___NOT_Internet_Explorer.tmSnippet
2715
2421
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/Input_with_Label.tmSnippet
2716
2422
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/Left___left__.plist
2717
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Arrow___arrow__.plist
2718
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Backspace___backspace__.plist
2719
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Backtab___backtab__.plist
2720
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Command___command__.plist
2721
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Control___control__.plist
2722
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Delete___delete__.plist
2723
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_HTML_4_0_Strict.plist
2724
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTL_1_0_Frameset.plist
2725
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_0_Strict.plist
2726
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_0_Transitional.plist
2727
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_1.plist
2728
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Down___down__.plist
2729
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Embed_QT_movie___movie__.plist
2730
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Enter___enter__.plist
2731
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Escape___escape__.plist
2732
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_HTML________4_0_Transitional___doctype__.plist
2733
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer.tmSnippet
2734
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_0_only.tmSnippet
2735
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_5_only.tmSnippet
2736
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_x.tmSnippet
2737
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_6_and_below.tmSnippet
2738
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_6_only.tmSnippet
2739
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_7__.tmSnippet
2740
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___NOT_Internet_Explorer.tmSnippet
2741
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Input_with_Label.tmSnippet
2742
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Left___left__.plist
2743
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Option___option__.plist
2744
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Return___return__.plist
2745
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Right___right__.plist
2746
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Select_Box.tmSnippet
2747
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Shift___shift__.plist
2748
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Smart_return__indent_for_tag_pairs.plist
2749
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Tab___tab__.plist
2750
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Up___up__.plist
2751
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Wrap_in___________________.plist
2752
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Wrap_Selection_In_Tag.plist
2753
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML_____input__.plist
2754
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML_____textarea__.plist
2755
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___a_mailto_____.plist
2756
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___base__.plist
2757
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___body__.plist
2758
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___br_____.plist
2759
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___div__.plist
2760
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___form__.plist
2761
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___h1__.plist
2762
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___head__.plist
2763
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___link__.plist
2764
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___meta__.plist
2765
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___nbsp___NonBreakingSpace.plist
2766
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___script__.plist
2767
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___script_src_____.plist
2768
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___style__.plist
2769
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___table__.plist
2770
- - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___title__.plist
2771
2423
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/Option.tmSnippet
2772
2424
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/Option___option__.plist
2773
2425
  - plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/Return___return__.plist
@@ -2805,10 +2457,6 @@ files:
2805
2457
  - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/Indented_return.plist
2806
2458
  - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/Method.plist
2807
2459
  - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/newSlot.plist
2808
- - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_clone_do.plist
2809
- - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Indented_Bracketed_Line.plist
2810
- - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Indented_return.plist
2811
- - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Object_clone_do.plist
2812
2460
  - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/Object_clone_do.plist
2813
2461
  - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/testMethod.plist
2814
2462
  - plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/UnitTest.plist
@@ -2837,12 +2485,6 @@ files:
2837
2485
  - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/java_util_.tmSnippet
2838
2486
  - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/method.tmSnippet
2839
2487
  - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/method___main__.tmSnippet
2840
- - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_constant_string.tmSnippet
2841
- - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_else_if.tmSnippet
2842
- - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_for___each__.tmSnippet
2843
- - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_import_junit_framework_TestCase__.tmSnippet
2844
- - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_method___main__.tmSnippet
2845
- - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_test_case.tmSnippet
2846
2488
  - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/package.tmSnippet
2847
2489
  - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/print.tmSnippet
2848
2490
  - plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/println.tmSnippet
@@ -2948,56 +2590,6 @@ files:
2948
2590
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/mouseover.tmSnippet
2949
2591
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/mouseup.tmSnippet
2950
2592
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next.tmSnippet
2951
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next______Select_DOM_Element__.tmSnippet
2952
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_____this__.tmSnippet
2953
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajax__hash__.tmSnippet
2954
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxError.tmSnippet
2955
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSend.tmSnippet
2956
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSetup.tmSnippet
2957
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSuccess.tmSnippet
2958
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____get.tmSnippet
2959
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getIfModified.tmSnippet
2960
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getJSON.tmSnippet
2961
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getScript.tmSnippet
2962
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____post.tmSnippet
2963
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____trim.tmSnippet
2964
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___checked.tmSnippet
2965
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___contains____test____.tmSnippet
2966
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___disabled.tmSnippet
2967
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___empty.tmSnippet
2968
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___enabled.tmSnippet
2969
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___eq__n__.tmSnippet
2970
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___even.tmSnippet
2971
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first.tmSnippet
2972
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first__child.tmSnippet
2973
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first__of__type.tmSnippet
2974
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___gt__n__.tmSnippet
2975
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___hidden.tmSnippet
2976
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last.tmSnippet
2977
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last__child.tmSnippet
2978
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last__of__type.tmSnippet
2979
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___lt__n__.tmSnippet
2980
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___not__s__.tmSnippet
2981
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__child__n__.tmSnippet
2982
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__last__child__n__.tmSnippet
2983
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__of__type__n__.tmSnippet
2984
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___odd.tmSnippet
2985
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___only__child.tmSnippet
2986
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___only__of__type.tmSnippet
2987
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___parent.tmSnippet
2988
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___root.tmSnippet
2989
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___visible.tmSnippet
2990
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_attr__hash__.tmSnippet
2991
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_css__hash__.tmSnippet
2992
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeIn____with_callback.tmSnippet
2993
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeOut____with_callback.tmSnippet
2994
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeTo____with_callback.tmSnippet
2995
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_hide____with_callback.tmSnippet
2996
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_load___AHAH__.tmSnippet
2997
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_show____with_callback.tmSnippet
2998
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_slideDown____with_callback.tmSnippet
2999
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_slideUp____with_callback.tmSnippet
3000
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_toggle___show__hide__.tmSnippet
3001
2593
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/not.tmSnippet
3002
2594
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/one.tmSnippet
3003
2595
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/parent.tmSnippet
@@ -3087,13 +2679,6 @@ files:
3087
2679
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Insertion_Before.tmSnippet
3088
2680
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Insertion_Bottom.tmSnippet
3089
2681
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Insertion_Top.tmSnippet
3090
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next___.tmSnippet
3091
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next___function___________.tmSnippet
3092
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Ajax_Options.tmSnippet
3093
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Create_Class_Alt.tmSnippet
3094
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Effect_Options.tmSnippet
3095
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Enum_each___element__.tmSnippet
3096
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Enum_each___index__.tmSnippet
3097
2682
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Object_extend.tmSnippet
3098
2683
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Options.tmSnippet
3099
2684
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Position_absolutize.tmSnippet
@@ -3115,17 +2700,6 @@ files:
3115
2700
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/Get_Elements.tmSnippet
3116
2701
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/if.tmSnippet
3117
2702
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/if_____else.tmSnippet
3118
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_for______________________.tmSnippet
3119
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_for_________________________faster__.tmSnippet
3120
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_function___fun__.plist
3121
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Get_Elements.tmSnippet
3122
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_if_____else.tmSnippet
3123
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_key________key_____value__.tmSnippet
3124
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Method.tmSnippet
3125
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Method_String.tmSnippet
3126
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Value_JS.tmSnippet
3127
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Prototype___proto__.plist
3128
- - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_setTimeout_function.tmSnippet
3129
2703
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/Object_key________key_____value__.tmSnippet
3130
2704
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/Object_Method.tmSnippet
3131
2705
  - plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/Object_Method_String.tmSnippet
@@ -3154,23 +2728,6 @@ files:
3154
2728
  - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/Math_mode__________.plist
3155
2729
  - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/Matrix.tmSnippet
3156
2730
  - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/New_Line.tmSnippet
3157
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___begin____________end____.tmSnippet
3158
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___section______section__.plist
3159
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___subsection______sub__.plist
3160
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___subsubsection______ssub__.plist
3161
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Beamer_Overlay_Specification.tmSnippet
3162
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Change_Style_of_selected_text.plist
3163
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Displaymath_________.plist
3164
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Gather__ed__.tmSnippet
3165
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Item__description__.plist
3166
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Lines_to_list_environment.plist
3167
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Math_mode__________.plist
3168
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_New_Line.tmSnippet
3169
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Sub_Paragraph.tmSnippet
3170
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Unnumbered_Equation.tmSnippet
3171
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_in___left____right.plist
3172
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_selection_in_double_quotes.tmSnippet
3173
- - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_Selection_in_Environment.plist
3174
2731
  - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/Page.tmSnippet
3175
2732
  - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/Paragraph.tmSnippet
3176
2733
  - plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/Part.tmSnippet
@@ -3192,10 +2749,8 @@ files:
3192
2749
  - plugins/textmate/vendor/redcar-bundles/Bundles/Lisp.tmbundle/Snippets/if.tmSnippet
3193
2750
  - plugins/textmate/vendor/redcar-bundles/Bundles/Lisp.tmbundle/Snippets/let.tmSnippet
3194
2751
  - plugins/textmate/vendor/redcar-bundles/Bundles/Lisp.tmbundle/Snippets/let1.tmSnippet
3195
- - plugins/textmate/vendor/redcar-bundles/Bundles/Lisp.tmbundle/Snippets/next_____.tmSnippet
3196
2752
  - plugins/textmate/vendor/redcar-bundles/Bundles/Lisp.tmbundle/Snippets/setf.tmSnippet
3197
2753
  - plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Snippets/Hard_linebreak.plist
3198
- - plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Snippets/next_Hard_linebreak.plist
3199
2754
  - plugins/textmate/vendor/redcar-bundles/Bundles/Palm-WebOS-Development.tmbundle/Snippets/__L____.tmSnippet
3200
2755
  - plugins/textmate/vendor/redcar-bundles/Bundles/Palm-WebOS-Development.tmbundle/Snippets/_insert____.tmSnippet
3201
2756
  - plugins/textmate/vendor/redcar-bundles/Bundles/Palm-WebOS-Development.tmbundle/Snippets/_update____.tmSnippet
@@ -3217,7 +2772,6 @@ files:
3217
2772
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl HTML-Template.tmbundle/Snippets/If__Else.tmSnippet
3218
2773
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl HTML-Template.tmbundle/Snippets/Include.tmSnippet
3219
2774
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl HTML-Template.tmbundle/Snippets/Loop.tmSnippet
3220
- - plugins/textmate/vendor/redcar-bundles/Bundles/Perl HTML-Template.tmbundle/Snippets/next_If__Else.tmSnippet
3221
2775
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl HTML-Template.tmbundle/Snippets/Unless.tmSnippet
3222
2776
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl HTML-Template.tmbundle/Snippets/Var.tmSnippet
3223
2777
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl Template Toolkit.tmbundle/Snippets/for.plist
@@ -3238,14 +2792,6 @@ files:
3238
2792
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/if.plist
3239
2793
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/Loop_one__line___xforeach__.plist
3240
2794
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/Loop_one__line___xwhile__.plist
3241
- - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_if__else___ife__.plist
3242
- - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_if__elsif__else___ifee__.plist
3243
- - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_one__line___unless__.plist
3244
- - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_one__line___xif__.plist
3245
- - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Function___sub__.plist
3246
- - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_hash_pointer.plist
3247
- - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Loop_one__line___xforeach__.plist
3248
- - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Loop_one__line___xwhile__.plist
3249
2795
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/slurp.plist
3250
2796
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/Test.tmSnippet
3251
2797
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/unless.plist
@@ -3289,60 +2835,6 @@ files:
3289
2835
  - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/include_once_____.tmSnippet
3290
2836
  - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/Include_TextMate_Support_Script.tmSnippet
3291
2837
  - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/new_array_____.tmSnippet
3292
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_______________php.tmSnippet
3293
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_____.tmSnippet
3294
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_echo_________.tmSnippet
3295
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_echo_htmlentities____________.tmSnippet
3296
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_else_______.tmSnippet
3297
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_foreach_________________php_endforeach_____.tmSnippet
3298
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_if______________________php_else______________php_endif_____.tmSnippet
3299
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_if______________________php_endif_____.tmSnippet
3300
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____COOKIE________.tmSnippet
3301
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____ENV________.tmSnippet
3302
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____FILES________.tmSnippet
3303
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____GET________.tmSnippet
3304
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____POST________.tmSnippet
3305
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____REQUEST________.tmSnippet
3306
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____SERVER________.tmSnippet
3307
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____SESSION________.tmSnippet
3308
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next___GLOBALS________.tmSnippet
3309
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_class______.tmSnippet
3310
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Continue_Block_Comment.tmSnippet
3311
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_define_____.tmSnippet
3312
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_defined_____.tmSnippet
3313
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_do_while_____.tmSnippet
3314
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_echo____.tmSnippet
3315
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_else_____.tmSnippet
3316
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_elseif_____.tmSnippet
3317
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_for_____.tmSnippet
3318
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_foreach_____.tmSnippet
3319
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_function_xx_____.tmSnippet
3320
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if_____.tmSnippet
3321
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if______a____b__.tmSnippet
3322
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if______else_____.tmSnippet
3323
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_include_____.tmSnippet
3324
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_include_once_____.tmSnippet
3325
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Include_TextMate_Support_Script.tmSnippet
3326
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_new_array_____.tmSnippet
3327
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHP_Error_Catching.tmSnippet
3328
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_class.tmSnippet
3329
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_class_var.tmSnippet
3330
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_constant_definition.tmSnippet
3331
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_function.tmSnippet
3332
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_function_signature.tmSnippet
3333
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_header.tmSnippet
3334
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_interface.tmSnippet
3335
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_require_____.tmSnippet
3336
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_require_once_____.tmSnippet
3337
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return___retVal__.tmSnippet
3338
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return_FALSE__.tmSnippet
3339
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return_TRUE__.tmSnippet
3340
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Special___Return_Between_PHP_Tags.tmSnippet
3341
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Start_Docblock.tmSnippet
3342
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_switch_____.tmSnippet
3343
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_switch______case__.tmSnippet
3344
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_try___________catch__________________.tmSnippet
3345
- - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_while_____.tmSnippet
3346
2838
  - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/PHP_Error_Catching.tmSnippet
3347
2839
  - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/PHPDoc_class.tmSnippet
3348
2840
  - plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/PHPDoc_class____post_doc.tmSnippet
@@ -3372,17 +2864,6 @@ files:
3372
2864
  - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/float___float__.plist
3373
2865
  - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/int_______int______.plist
3374
2866
  - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/int___int__.plist
3375
- - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_draw___se__.plist
3376
- - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_float_______float______.plist
3377
- - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_float___float__.plist
3378
- - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_int_______int______.plist
3379
- - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_int___int__.plist
3380
- - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_opengl___gl__.plist
3381
- - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_setup___se__.plist
3382
- - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_size___size__.plist
3383
- - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_string_______string______.plist
3384
- - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_string___str__.plist
3385
- - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_void_method___void__.plist
3386
2867
  - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/opengl___gl__.plist
3387
2868
  - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/setup___se__.plist
3388
2869
  - plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/size___size__.plist
@@ -3514,18 +2995,6 @@ files:
3514
2995
  - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/New_Function.tmSnippet
3515
2996
  - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/New_Method.tmSnippet
3516
2997
  - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/New_Property.tmSnippet
3517
- - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_if___name____________main____.tmSnippet
3518
- - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_Class_Def___Insert_________.tmSnippet
3519
- - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_Function___Insert_________.tmSnippet
3520
- - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_String___Insert___________.tmSnippet
3521
- - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Class.tmSnippet
3522
- - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Function.tmSnippet
3523
- - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Method.tmSnippet
3524
- - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Property.tmSnippet
3525
- - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except.tmSnippet
3526
- - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Else.tmSnippet
3527
- - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Else__Finally.tmSnippet
3528
- - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Finally.tmSnippet
3529
2998
  - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/self.tmSnippet
3530
2999
  - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/Try__Except.tmSnippet
3531
3000
  - plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/Try__Except__Else.tmSnippet
@@ -3638,150 +3107,6 @@ files:
3638
3107
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/Migration_Remove_and_Add_Column___mrac__.plist
3639
3108
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/named_scope.tmSnippet
3640
3109
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/named_scope_lambda.tmSnippet
3641
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_180_rails_form_tag.plist
3642
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next___3C_____Fixtures_identify____3Asymbol_______3E.tmSnippet
3643
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next___LABEL.tmSnippet
3644
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert__var____assigns____3Avar____.tmSnippet
3645
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___nested_path__.tmSnippet
3646
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___nested_path_plural__.tmSnippet
3647
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___path__.tmSnippet
3648
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___path_plural__.tmSnippet
3649
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_belongs_to___bt__.plist
3650
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_binary_column.tmSnippet
3651
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_boolean_column.tmSnippet
3652
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_controller_class.tmSnippet
3653
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_date_column.tmSnippet
3654
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_datetime_column.tmSnippet
3655
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_decimal_column.tmSnippet
3656
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_float_column.tmSnippet
3657
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_functional_test_class.tmSnippet
3658
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_integer_column.tmSnippet
3659
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_lock_version_column.tmSnippet
3660
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_references_column.tmSnippet
3661
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_string_column.tmSnippet
3662
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_text_column.tmSnippet
3663
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_time_column.tmSnippet
3664
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_timestamp_column.tmSnippet
3665
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_timestamps_columns.tmSnippet
3666
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_create____resource.tmSnippet
3667
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_get_request.tmSnippet
3668
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_post_request.tmSnippet
3669
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find____3Aall__.tmSnippet
3670
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find____3Afirst__.tmSnippet
3671
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find__id__.tmSnippet
3672
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_for_loop_erb.tmSnippet
3673
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_check_box.tmSnippet
3674
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_checkbox.tmSnippet
3675
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_file_field.tmSnippet
3676
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_file_field_2.tmSnippet
3677
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_hidden_field.tmSnippet
3678
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_hidden_field_2.tmSnippet
3679
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_label.tmSnippet
3680
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_label_2.tmSnippet
3681
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_password_field.tmSnippet
3682
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_password_field_2.tmSnippet
3683
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_radio_box.tmSnippet
3684
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_radio_box_2.tmSnippet
3685
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_submit.tmSnippet
3686
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_submit_2.tmSnippet
3687
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_area.tmSnippet
3688
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_area_2.tmSnippet
3689
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_field.tmSnippet
3690
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_field_2.tmSnippet
3691
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_with_errors.tmSnippet
3692
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_and_belongs_to_many___habtm__.plist
3693
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___dependent________destroy.tmSnippet
3694
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___hm__.plist
3695
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___through__.tmSnippet
3696
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_one___ho__.plist
3697
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___nested_path__.tmSnippet
3698
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___nested_path_plural__.tmSnippet
3699
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___path__.tmSnippet
3700
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___path_plural__.tmSnippet
3701
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to_model.tmSnippet
3702
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_map______3Asym_proc__.tmSnippet
3703
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Create_Column___mcc__.plist
3704
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Create_Column_Continue___mccc__.plist
3705
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Drop_Create_Table___mdct__.plist
3706
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Remove_and_Add_Column___mrac__.plist
3707
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_named_scope_lambda.tmSnippet
3708
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_hide_____2Aids__.tmSnippet
3709
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_insert_html___position___id___partial__.tmSnippet
3710
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_replace___id___partial__.tmSnippet
3711
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_replace_html___id___partial__.tmSnippet
3712
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_show_____2Aids__.tmSnippet
3713
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_toggle_____2Aids__.tmSnippet
3714
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_visual_effect___effect___id__.tmSnippet
3715
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_RAILS_DEFAULT_LOGGER_debug___rdb__.plist
3716
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_flash.plist
3717
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_params.plist
3718
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_session.plist
3719
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___nested_path__.tmSnippet
3720
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___nested_path_plural__.tmSnippet
3721
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___path__.tmSnippet
3722
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___path_plural__.tmSnippet
3723
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___action________ra__.plist
3724
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___action__layout_____ral__.plist
3725
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___file_____rf__.plist
3726
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___file__use_full_path_____rfu__.plist
3727
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline_____ri__.plist
3728
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline__locals_____ril__.plist
3729
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline__type_____rit__.plist
3730
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___layout_____rl__.plist
3731
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___nothing_____rn__.plist
3732
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___nothing__status_____rns__.plist
3733
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial_____rp__.plist
3734
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__collection_____rpc__.plist
3735
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__locals_____rpl__.plist
3736
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__object_____rpo__.plist
3737
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__status_____rps__.plist
3738
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text_____rt__.plist
3739
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__layout____3Etrue_____rtlt__.plist
3740
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__layout_____rtl__.plist
3741
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__status_____rts__.plist
3742
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___update__.tmSnippet
3743
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_respond_to___html__.tmSnippet
3744
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_returning_do___7Cvariable__7C___E2__80__A6_end.tmSnippet
3745
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_binary___tcbi__.tmSnippet
3746
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_boolean___tcb__.tmSnippet
3747
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_date___tcda__.tmSnippet
3748
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_datetime___tcdt__.tmSnippet
3749
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_decimal___tcd__.tmSnippet
3750
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_float___tcf__.tmSnippet
3751
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_integer___tci__.tmSnippet
3752
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_lock_version___tcl__.tmSnippet
3753
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_references___tcr__.tmSnippet
3754
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_rename___tre__.tmSnippet
3755
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_string___tcs__.tmSnippet
3756
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_text___tct__.tmSnippet
3757
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_time___tcti__.tmSnippet
3758
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_timestamp___tcts__.tmSnippet
3759
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_timestamps___tctss__.tmSnippet
3760
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Table_column__s___rename.tmSnippet
3761
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Test_Assert_Redirected_To___art__.plist
3762
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Test_Assert_Response___are__.plist
3763
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_acceptance_of_if.tmSnippet
3764
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_associated___va__.plist
3765
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_associated_if___vaif__.plist
3766
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_confirmation_of___vc__.plist
3767
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_confirmation_of_if___vcif__.plist
3768
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_exclusion_of___ve__.plist
3769
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_exclusion_of_if___veif__.plist
3770
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_format_of_if.tmSnippet
3771
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_inclusion_of_if.tmSnippet
3772
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_length_of___vl__.plist
3773
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_length_of_if.tmSnippet
3774
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_numericality_of_if.tmSnippet
3775
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_presence_of___vp__.plist
3776
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_presence_of_if___vpif___2.plist
3777
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_uniqueness_of___vu__.plist
3778
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_uniqueness_of_if___vuif__.plist
3779
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_verify____redirect___verify__.plist
3780
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_verify___verify__.plist
3781
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_delete.tmSnippet
3782
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_get.tmSnippet
3783
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_post.tmSnippet
3784
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_put.tmSnippet
3785
3110
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/page_hide_____2Aids__.tmSnippet
3786
3111
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/page_insert_html___position___id___partial__.tmSnippet
3787
3112
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/page_replace___id___partial__.tmSnippet
@@ -3890,13 +3215,6 @@ files:
3890
3215
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/It.tmSnippet
3891
3216
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/it_should_behave_like.tmSnippet
3892
3217
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/mock.tmSnippet
3893
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Custom_Matcher.tmSnippet
3894
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Require_spec_helper.tmSnippet
3895
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Set_Controller_for_Spec.tmSnippet
3896
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_____.tmSnippet
3897
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_eql.tmSnippet
3898
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_not_____.tmSnippet
3899
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_not_eql.tmSnippet
3900
3218
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/once.tmSnippet
3901
3219
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/ordered.tmSnippet
3902
3220
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/Require_spec_helper.tmSnippet
@@ -4048,145 +3366,6 @@ files:
4048
3366
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/module____end.plist
4049
3367
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/module____module_function____end.plist
4050
3368
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/namespace______do____end.tmSnippet
4051
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_060_ruby_if_else.plist
4052
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_070_ruby_if.plist
4053
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_080_ruby_case.plist
4054
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_______usr__local__bin__ruby___w.plist
4055
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next___yields___RDoc_comment.tmSnippet
4056
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Add_____________Marker.tmSnippet
4057
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_alias_method_______am__.plist
4058
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_all________e____________all__.plist
4059
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_any________e____________any__.plist
4060
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_application_code_______app__.plist
4061
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Array_new__10________i____________Arr__.plist
4062
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert__________as__.plist
4063
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_in_delta__________asid__.plist
4064
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_instance_of__________asio__.plist
4065
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_kind_of__________asko__.plist
4066
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_match__________asm__.plist
4067
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nil__________asn__.plist
4068
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_no_match__________asnm__.plist
4069
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_equal__________asne__.plist
4070
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_nil__________asnn__.plist
4071
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_same__________asns__.plist
4072
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nothing_raised___________________asnr__.plist
4073
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nothing_thrown_____________asnt__.plist
4074
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_operator__________aso__.plist
4075
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_raise___________________asr__.plist
4076
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_respond_to__________asrt__.plist
4077
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_same__________ass__.plist
4078
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_send__________ass__.plist
4079
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_throws___________________ast__.plist
4080
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_accessor_______rw__.plist
4081
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_reader_______r__.plist
4082
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_writer_______w__.plist
4083
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Benchmark_bmbm_______do____end.tmSnippet
4084
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______DelegateClass____initialize____end____class__.plist
4085
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______ParentClass____initialize____end.plist
4086
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______Struct____initialize____end.plist
4087
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______Test____Unit____TestCase____end____tc__.plist
4088
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class______self____end.tmSnippet
4089
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____end____cla__.plist
4090
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____initialize____end.plist
4091
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____instance_methods____undef____initialize____end____class__.plist
4092
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_from_name________clafn__.plist
4093
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_classify______e____________clas__.plist
4094
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_collect______e____________col__.plist
4095
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_deep_copy__________dee__.plist
4096
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_delegator______defd__.plist
4097
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_delegators______defds__.plist
4098
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_end.plist
4099
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_method_missing____end____mm__.plist
4100
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_self____end____defs__.plist
4101
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_test_____end____t__.plist
4102
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_delete_if______e____________deli__.plist
4103
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_detect______e____________det__.plist
4104
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Dir__________.tmSnippet
4105
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Dir_glob___________do___file______end____Dir__.plist
4106
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_directory____.tmSnippet
4107
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_do___obj______end___doo__.plist
4108
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_downto__0________n____________dow__.plist
4109
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each______e____________ea__.plist
4110
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_byte______byte____________eab__.plist
4111
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_char______chr____________eac____.plist
4112
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_cons____________group____________eac____.plist
4113
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_index______i____________eai__.plist
4114
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_key______key____________eak__.plist
4115
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_line______line____________eal__.plist
4116
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_pair______name___val____________eap__.plist
4117
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_slice______group____________eas__.plist
4118
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_value______val____________eav__.plist
4119
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_with_index______e___i____________eawi__.plist
4120
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_elsif____.tmSnippet
4121
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_embed_string_variable.plist
4122
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_extend_Forwardable____Forw__.plist
4123
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_fetch__name________key____________fet__.plist
4124
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_foreach____________do___line______end____File__.plist
4125
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_open________________file________.tmSnippet
4126
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_read__________.tmSnippet
4127
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_fill__range________i____________fil__.plist
4128
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_find______e____________fin__.plist
4129
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_find_all______e____________fina__.plist
4130
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_flatten_once____fla__.plist
4131
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_flunk__________fl__.plist
4132
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_grep____pattern__________match____________gre__.plist
4133
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_gsub________________match____________gsu__.plist
4134
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Hash_new______hash___key___hash__key_______________Has__.plist
4135
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_hash_pair_______.plist
4136
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_hash_pointer.plist
4137
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_include_Comparable_______Comp__.plist
4138
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_include_Enumerable_______Enum__.plist
4139
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_inject__init________mem___var____________inj__.plist
4140
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Insert_ERb__s______________or_______________.tmSnippet
4141
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_lambda______args____________lam__.plist
4142
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_loop_________.tmSnippet
4143
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_map______e____________map__.plist
4144
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_map_with_index______e___i____________mapwi__.plist
4145
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Marshal_dump__obj___file______Md__.plist
4146
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Marshal_load__obj______Ml__.plist
4147
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_max______a___b____________max__.plist
4148
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_min______a___b____________min__.plist
4149
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____ClassMethods____end.plist
4150
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____end.plist
4151
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____module_function____end.plist
4152
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_namespace______do____end.tmSnippet
4153
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_open____path__or__url_______w_____do___doc______end___ope__.plist
4154
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_open_yield_block_______.plist
4155
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_option_parse_____________optp__.plist
4156
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_partition______e____________par__.plist
4157
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_path_from_here________.tmSnippet
4158
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_PStore_new________.tmSnippet
4159
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_randomize____ran__.plist
4160
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_RDoc_documentation_block.tmSnippet
4161
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_reject______e____________rej__.plist
4162
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require___________req__.plist
4163
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require___tc____________ts__.plist
4164
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require_gem_______.tmSnippet
4165
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_results_report_______________.tmSnippet
4166
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_reverse_each______e____________rea__.plist
4167
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_scan________________match____________sca__.plist
4168
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_select______e____________sel__.plist
4169
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_singleton_class____.tmSnippet
4170
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sort______a___b____________sor__.plist
4171
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sort_by______e____________sorb__.plist
4172
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_step__2________e____________ste__.plist
4173
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sub________________match____________sub__.plist
4174
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_task___task_name__________dependent_____tasks___do____end.tmSnippet
4175
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_times______n____________tim__.plist
4176
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_transaction_________do____end.tmSnippet
4177
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_unix_filter______uni__.plist
4178
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_unless___unless__.plist
4179
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_until_____end.tmSnippet
4180
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_upto__1_0__0_0________n____________upt__.plist
4181
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_usage_if________usai__.plist
4182
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_usage_unless________usau__.plist
4183
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_while_____end.tmSnippet
4184
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Wrap_in_Begin________Rescue________End.plist
4185
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_xmlread______.tmSnippet
4186
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_xpath_______________.tmSnippet
4187
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_YAML_dump_______file______Yd____.plist
4188
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_YAML_load__file______Yl____.plist
4189
- - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_zip__enums________row____________zip__.plist
4190
3369
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/open____path__or__url_______w_____do___doc______end___ope__.plist
4191
3370
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/open_yield_block_______.plist
4192
3371
  - plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/option_parse_____________optp__.plist
@@ -4269,7 +3448,6 @@ files:
4269
3448
  - plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Snippets/must_beDifferent.tmSnippet
4270
3449
  - plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Snippets/must_throw.tmSnippet
4271
3450
  - plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Snippets/mustEqual.tmSnippet
4272
- - plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Snippets/next_Try__Catch__Finally.tmSnippet
4273
3451
  - plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Snippets/Object.tmSnippet
4274
3452
  - plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Snippets/package.tmSnippet
4275
3453
  - plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Snippets/Pair.tmSnippet
@@ -4310,15 +3488,6 @@ files:
4310
3488
  - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/for_____done___for__.plist
4311
3489
  - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/here_document___here__.plist
4312
3490
  - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/if_____then___if__.plist
4313
- - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_______usr__bin__env_____env__.plist
4314
- - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_case____esac___case__.plist
4315
- - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_elif______elif__.plist
4316
- - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_for________in________done___forin__.plist
4317
- - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_for_____done___for__.plist
4318
- - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_here_document___here__.plist
4319
- - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_if_____then___if__.plist
4320
- - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_until__________done__.plist
4321
- - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_while__________done__.plist
4322
3491
  - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/Tempfile.tmSnippet
4323
3492
  - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/until__________done__.plist
4324
3493
  - plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/while__________done__.plist
@@ -4327,31 +3496,16 @@ files:
4327
3496
  - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/Escaped_Quote_Pair_____________.plist
4328
3497
  - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/Escaped_Single_Quote_Pair_____________.plist
4329
3498
  - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/Frame_text.plist
4330
- - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next___n.plist
4331
- - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Continue_line_comment.plist
4332
- - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Escaped_Quote_Pair_____________.plist
4333
- - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Escaped_Single_Quote_Pair_____________.plist
4334
- - plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Frame_text.plist
4335
3499
  - plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/DynamicForward___df__.tmSnippet
4336
3500
  - plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/Host___host__.tmSnippet
4337
3501
  - plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/IdentityFile___idf__.tmSnippet
4338
3502
  - plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/LocalForward___lf__.tmSnippet
4339
- - plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_DynamicForward___df__.tmSnippet
4340
- - plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_Host___host__.tmSnippet
4341
- - plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_IdentityFile___idf__.tmSnippet
4342
- - plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_LocalForward___lf__.tmSnippet
4343
3503
  - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/010_Copyright.plist
4344
3504
  - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/Conitnue_bullet.plist
4345
3505
  - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/Conitnue_light_bullet.plist
4346
3506
  - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/Conitnue_star_bullet.plist
4347
3507
  - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/Insert_ISO_date.plist
4348
3508
  - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/Lorem_ipsum.plist
4349
- - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_010_Copyright.plist
4350
- - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_bullet.plist
4351
- - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_light_bullet.plist
4352
- - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_star_bullet.plist
4353
- - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Insert_ISO_date.plist
4354
- - plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Lorem_ipsum.plist
4355
3509
  - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/Acronym.tmSnippet
4356
3510
  - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/Block_Quotes.tmSnippet
4357
3511
  - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/Bold.plist
@@ -4373,17 +3527,6 @@ files:
4373
3527
  - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/Italic.plist
4374
3528
  - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/Language.tmSnippet
4375
3529
  - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/Linked_Image.tmSnippet
4376
- - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Block_Quotes.tmSnippet
4377
- - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Class_and_Id.tmSnippet
4378
- - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Color_2.tmSnippet
4379
- - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Convert_Tabs_To_Table.plist
4380
- - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_1.tmSnippet
4381
- - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_2.tmSnippet
4382
- - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_3.tmSnippet
4383
- - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_4.tmSnippet
4384
- - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_5.tmSnippet
4385
- - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_6.tmSnippet
4386
- - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Linked_Image.tmSnippet
4387
3530
  - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/Strikethrough.tmSnippet
4388
3531
  - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/Style.tmSnippet
4389
3532
  - plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/Subscript.tmSnippet
@@ -4428,11 +3571,6 @@ files:
4428
3571
  - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/CDATA.tmSnippet
4429
3572
  - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/long_attribute_tag.plist
4430
3573
  - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/long_tag.plist
4431
- - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_long_attribute_tag.plist
4432
- - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_long_tag.plist
4433
- - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_short_tag.plist
4434
- - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_Smart_return__indent_for_tag_pairs.plist
4435
- - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_XML_Processing_Instruction.tmSnippet
4436
3574
  - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/short_tag.plist
4437
3575
  - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/Smart_return__indent_for_tag_pairs.plist
4438
3576
  - plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/XML_Processing_Instruction.tmSnippet
@@ -4598,12 +3736,11 @@ post_install_message: |+
4598
3736
 
4599
3737
  $ redcar install
4600
3738
 
4601
- to complete the installation.
4602
-
4603
- (If you installed the gem with 'sudo', you will need to run 'sudo redcar install').
3739
+ to complete the installation. (NB do NOT use sudo. In previous versions, sudo was
3740
+ required for this step, but now it should be run as the user.)
4604
3741
 
4605
3742
  NB. This will download jars that Redcar needs to run from the internet. It will put
4606
- them into ~/.redcar/ and link to them in the Redcar gem.
3743
+ them into ~/.redcar/assets.
4607
3744
 
4608
3745
  ------------------------------------------------------------------------------------
4609
3746
 
@@ -4613,21 +3750,27 @@ rdoc_options:
4613
3750
  require_paths:
4614
3751
  - lib
4615
3752
  required_ruby_version: !ruby/object:Gem::Requirement
3753
+ none: false
4616
3754
  requirements:
4617
3755
  - - ">="
4618
3756
  - !ruby/object:Gem::Version
3757
+ hash: 3
3758
+ segments:
3759
+ - 0
4619
3760
  version: "0"
4620
- version:
4621
3761
  required_rubygems_version: !ruby/object:Gem::Requirement
3762
+ none: false
4622
3763
  requirements:
4623
3764
  - - ">="
4624
3765
  - !ruby/object:Gem::Version
3766
+ hash: 3
3767
+ segments:
3768
+ - 0
4625
3769
  version: "0"
4626
- version:
4627
3770
  requirements: []
4628
3771
 
4629
3772
  rubyforge_project:
4630
- rubygems_version: 1.3.5
3773
+ rubygems_version: 1.3.7
4631
3774
  signing_key:
4632
3775
  specification_version: 3
4633
3776
  summary: A JRuby text editor.