redcar 0.5.2dev → 0.5.3dev
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +25 -13
- data/Rakefile +1 -1
- data/bin/redcar +3 -2
- data/lib/plugin_manager/README.md +3 -0
- data/lib/plugin_manager/lib/plugin_manager.rb +138 -47
- data/lib/plugin_manager/lib/plugin_manager/definition_builder.rb +19 -1
- data/lib/plugin_manager/lib/plugin_manager/plugin_definition.rb +11 -3
- data/lib/plugin_manager/spec/fixtures/{error_in_definition → plugin_loading/error_in_definition}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{error_in_plugin → plugin_loading/error_in_plugin}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{error_in_plugin → plugin_loading/error_in_plugin}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/debug/debug.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/debug/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/extras/extras.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/extras/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core2/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core2/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core2/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core2/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/debug/debug.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/debug/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/debug/debug.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/debug/plugin.rb +0 -0
- data/lib/plugin_manager/spec/plugin_manager_spec.rb +54 -16
- data/lib/redcar.rb +68 -62
- data/lib/redcar/installer.rb +8 -13
- data/lib/redcar/jvm_options_probe.rb +14 -0
- data/lib/redcar/runner.rb +55 -5
- data/plugins/application/features/support/env.rb +6 -6
- data/plugins/application/icons/redcar-splash.png +0 -0
- data/plugins/application/lib/application.rb +44 -2
- data/plugins/application/lib/application/toolbar.rb +91 -0
- data/plugins/application/lib/application/toolbar/builder.rb +80 -0
- data/plugins/application/lib/application/toolbar/builder/group.rb +47 -0
- data/plugins/application/lib/application/toolbar/item.rb +72 -0
- data/plugins/application/lib/application/toolbar/lazy_toolbar.rb +25 -0
- data/plugins/application/lib/application/window.rb +9 -1
- data/plugins/application/spec/spec_helper.rb +1 -1
- data/plugins/application_swt/lib/application_swt.rb +23 -41
- data/plugins/application_swt/lib/application_swt/toolbar.rb +134 -0
- data/plugins/application_swt/lib/application_swt/toolbar/binding_translator.rb +94 -0
- data/plugins/application_swt/lib/application_swt/window.rb +33 -4
- data/plugins/application_swt/plugin.rb +2 -1
- data/plugins/application_swt/spec/spec_helper.rb +1 -1
- data/plugins/auto_indenter/spec/spec_helper.rb +1 -1
- data/plugins/core/spec/spec_helper.rb +1 -1
- data/plugins/declarations/lib/declarations/select_tag_dialog.rb +5 -4
- data/plugins/declarations/spec/spec_helper.rb +1 -1
- data/plugins/document_search/features/replace.feature +17 -4
- data/plugins/document_search/lib/document_search/replace.rb +5 -3
- data/plugins/document_search/lib/document_search/search.rb +9 -10
- data/plugins/edit_view/features/cut_and_paste.feature +8 -10
- data/plugins/edit_view/lib/edit_view/grammars/default.rb +1 -1
- data/plugins/edit_view/lib/edit_view/grammars/ruby.rb +1 -1
- data/plugins/edit_view/spec/spec_helper.rb +1 -1
- data/plugins/edit_view_swt/lib/edit_view_swt.rb +3 -2
- data/plugins/edit_view_swt/spec/spec_helper.rb +1 -1
- data/plugins/project/lib/project/dir_controller.rb +1 -1
- data/plugins/project/lib/project/drb_service.rb +4 -4
- data/plugins/project/plugin.rb +2 -1
- data/plugins/project/spec/spec_helper.rb +1 -1
- data/plugins/redcar/redcar.rb +76 -40
- data/plugins/repl/spec/repl/clojure_mirror_spec.rb +2 -0
- data/plugins/repl/spec/repl/ruby_mirror_spec.rb +1 -1
- data/plugins/repl/spec/spec_helper.rb +1 -1
- data/plugins/runnables/spec/spec_helper.rb +1 -1
- data/plugins/scm/lib/scm.rb +1 -1
- data/plugins/scm/spec/spec_helper.rb +1 -1
- data/plugins/scm_git/vendor/ruby-git/lib/git/lib.rb +1 -1
- data/plugins/{application_swt/lib/application_swt/swt_wrapper.rb → swt/lib/swt.rb} +108 -2
- data/plugins/{application_swt/lib/application_swt → swt/lib/swt}/cucumber_patches.rb +0 -0
- data/plugins/swt/lib/swt/cucumber_runner.rb +23 -0
- data/plugins/swt/lib/swt/event_loop.rb +30 -0
- data/plugins/{application_swt/lib/application_swt → swt/lib}/swt/grid_data.rb +0 -0
- data/plugins/{application_swt/lib/application_swt → swt/lib}/swt/listener_helpers.rb +0 -0
- data/plugins/swt/plugin.rb +8 -0
- data/plugins/textmate/lib/textmate.rb +18 -27
- data/plugins/textmate/plugin.rb +1 -1
- data/plugins/tree/spec/spec_helper.rb +1 -1
- metadata +45 -904
- data/plugins/application_swt/lib/application_swt/cucumber_runner.rb +0 -25
- data/plugins/application_swt/lib/application_swt/event_loop.rb +0 -32
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Completions___Modules.tmPreferences +0 -95
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Completions___Modules_Identifiers.tmPreferences +0 -80
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Default_Tag_Inside_Virtual_Host.tmPreferences +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Directory.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Location.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___VHost_Directory.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___VHost_Location.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Virtual_Host.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_AllowOverride___allow__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_Options___opt__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_VirtualHost___vhost__.plist +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Comments___comments__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Cut___cut__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Date___date__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Keywords___keyw__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Ping___ping__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Pings___pings__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Tags___tags__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Title___title__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_Separator__.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_item_scopes__.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_items__.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Begin_Captures.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Content_Name.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_ENV____TM___________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_End_Captures.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Grammar____Single_Quotes.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Patterns___Repository__.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Require___Support__lib__________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule___Begin____End__.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule___Repository__.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Begin____End___Inside_Rule__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Match___Inside_Rule__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Match___Repository__.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_Qt_C_____Completitions.tmPreferences +0 -161
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_Qt_C_____Indentation_Rules.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Comments.tmPreferences +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Completitions.tmPreferences +0 -44
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Typing_Pairs.tmPreferences +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_Block_Comment.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_Block_Comment_Newline.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_QTimer____singleShot_______.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_main___qmain__.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qSort_______.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qWarning___warn__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qmake_Project_template_stub.tmSnippet +0 -36
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_toLatin1_____data_______latin__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_toUtf8_____data____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Comments___C______.tmPreferences +0 -42
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Disable_Spell_Checking.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_Completion.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_Completion___System__.tmPreferences +0 -38
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_typing_pairs.plist +0 -37
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Indentation_Rules.plist +0 -38
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Symbol_List___Indent_Class_Methods.tmPreferences +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Template__cast_typing_pairs.plist +0 -29
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_010_main_______main__.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_030_for_int_loop___fori__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_Include_header_once_only_guard.plist +0 -28
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___1_begin_________1_end_______beginend__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___endif.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___ifndef__________define__________endif.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___include________Inc__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___pragma_mark___mark__.plist +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_class______class__.plist +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_do___while_loop___do__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_fprintf_______.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_if______if__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_namespace______namespace__.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_printf______printf__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_read_file___readF__.plist +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_std____map___map__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_std____vector___v__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_template___typename________template__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Property_Completions.tmPreferences +0 -151
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Property_Value_Completions.tmPreferences +0 -144
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Symbol_List___Group.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Symbol_list.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_Fixed_Position_Bottom_100___wide_IE6.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next___important_CSS_______.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background____color_image_repeat_attachment_position___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__attachment___scroll__fixed___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__hex___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__name___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__rgb___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____transparent___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__image____none___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__image____url___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__position____position___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__repeat____r__r__x__r__y__n__r___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border_____size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom___size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__color___size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__style___size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__width___size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__color___color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left___size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__color___color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__style___style___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__width___size___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right___size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__color___color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__style___style___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__width___size___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__style___style___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top___size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__color___color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__style___style___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__width___size___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__width___width___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_clear___value___clear__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__hex___color__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__name___color__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__rgb___color__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_cursor___type___cursor__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_cursor___url___cursor__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_direction___ltr__rtl___direction__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___block___display__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___common__types___display__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___inline___display__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___table__types___display__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_filter___AlphaImageLoader___for_IE_PNGs_____background__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_float___left__right__none___float__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font_____style_variant_weight_size__line__height_font___family___font__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font___size_font___font__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__family_____family___font__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__size___size___font__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__style_____normal__italic__oblique___font__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__variant_____normal__small__caps___font__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__weight___weight___font__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_letter__spacing_____length__em___letter__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_letter__spacing_____length__px___letter__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style___type_position_image___list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__image___url___list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__position___pos___list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___asian___list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___marker__list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___numeric___list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___other___list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___roman__alpha__greek___list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin___T_R_B_L___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin___V_H___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin_____all___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__bottom___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__left___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__right___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__top___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_marker__offset___auto___marker__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_marker__offset___length___marker__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_opacity_____for_Safari___FF_and_IE_____opacity__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_overflow___type___overflow__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____T_R_B_L___padding__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____V_H___padding__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____all___padding__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__bottom___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__left___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__right___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__top___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_position___type___position__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_properties_______________.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__align___left__center__right___txt__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__decoration___none__underline__overline__line__through__blink___text__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__indent___length___text__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___color__hex_x_y_blur___text__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___color__rgb_x_y_blur___text__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___none___text__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__transform___capitalize__upper__lower___text__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__transform___none___text__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_vertical__align___type___vertical__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_visibility___type___visibility__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_white__space____normal__pre__nowrap___white__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_word__spacing____length___word__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_word__spacing____normal___word__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_z__index___index___z__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Cucumber_Plain_Text_Feature_Completions.tmPreferences +0 -30
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Scenario.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Steps.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Steps_with_String.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/next_Symbol_List__Method__Constructor.tmPreferences +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_Continue_Block_Comment.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_err_format.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_foreach_reverse.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_if_else.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_error.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_fatal.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_info.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_trace.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_warn.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_main_with_args.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_out_format.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_catch.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_catch_finally.tmSnippet +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_finally.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Changed.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Deleted.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Diff_metadata.plist +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Header.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Inserted.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Range.plist +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Symbol_List___Indent_Ranges.plist +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Preferences/next_Disable_spell_checking_in_raw.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Preferences/next_Show_Heading_in_list.tmPreferences +0 -25
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_1.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_2.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_3.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_4.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_5.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Left_Header.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Numbered_item.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Numbered_item_2.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Table_Cell.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Top_Header.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Unnumbered_item.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Unnumbered_item_2.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Completions_HTML_Attributes.tmPreferences +0 -346
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Empty_tag_typing_pairs.plist +0 -26
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Symbol_List___ID.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Tag_Completions.tmPreferences +0 -30
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Tag_preferences.plist +0 -48
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Arrow___arrow__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Backspace___backspace__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Backtab___backtab__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Command___command__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Control___control__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Delete___delete__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_HTML_4_0_Strict.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTL_1_0_Frameset.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_0_Strict.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_0_Transitional.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_1.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Down___down__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Embed_QT_movie___movie__.plist +0 -26
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Enter___enter__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Escape___escape__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_HTML________4_0_Transitional___doctype__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_0_only.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_5_only.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_x.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_6_and_below.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_6_only.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_7__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___NOT_Internet_Explorer.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Input_with_Label.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Left___left__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Option___option__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Return___return__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Right___right__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Select_Box.tmSnippet +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Shift___shift__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Smart_return__indent_for_tag_pairs.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Tab___tab__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Up___up__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Wrap_Selection_In_Tag.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Wrap_in___________________.plist +0 -14
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML_____input__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML_____textarea__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___a_mailto_____.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___base__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___body__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___br_____.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___div__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___form__.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___h1__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___head__.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___link__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___meta__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___nbsp___NonBreakingSpace.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___script__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___script_src_____.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___style__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___table__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___title__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Indent_Patterns.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Symbol_List.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Typing_Pairs.plist +0 -42
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/next___.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/next_t______f_t.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/next_Bulletin_Board.tmPreferences +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/next_Fallback___not_supported__.tmPreferences +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/next_Indentation_Rules.plist +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/next_Typing_Pairs.plist +0 -37
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Indented_Bracketed_Line.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Indented_return.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Object_clone_do.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_clone_do.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Classes.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Class_Methods.tmPreferences +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Classes.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Inner_Class_Methods.tmPreferences +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Inner_Classes.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Method.plist +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_constant_string.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_else_if.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_for___each__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_import_junit_framework_TestCase__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_method___main__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_test_case.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Preferences/next_Prototype_Completions.tmPreferences +0 -185
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Ajax_Options.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Create_Class_Alt.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Effect_Options.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Enum_each___element__.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Enum_each___index__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next___.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next___function___________.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next______Select_DOM_Element__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_____this__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxError.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSend.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSetup.tmSnippet +0 -28
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSuccess.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajax__hash__.tmSnippet +0 -28
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____get.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getIfModified.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getJSON.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getScript.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____post.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____trim.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___checked.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___contains____test____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___disabled.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___empty.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___enabled.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___eq__n__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___even.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first__child.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first__of__type.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___gt__n__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___hidden.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last__child.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last__of__type.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___lt__n__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___not__s__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__child__n__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__last__child__n__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__of__type__n__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___odd.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___only__child.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___only__of__type.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___parent.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___root.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___visible.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_attr__hash__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_css__hash__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeIn____with_callback.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeOut____with_callback.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeTo____with_callback.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_hide____with_callback.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_load___AHAH__.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_show____with_callback.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_slideDown____with_callback.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_slideUp____with_callback.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_toggle___show__hide__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_JavaScript_Indent.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Banned.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Class.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Instance.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Sub_1.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Sub_2.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Get_Elements.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Method.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Method_String.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Value_JS.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_key________key_____value__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Prototype___proto__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_for______________________.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_for_________________________faster__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_function___fun__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_if_____else.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_setTimeout_function.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Beamer_Symbol_List.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Cite_Completion.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Disable_Smart_Typing_after_Backslashes.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Label_Completion.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Miscellaneous___BibTeX__.tmPreferences +0 -53
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Smart_Typing___Strings__.tmPreferences +0 -65
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Spell_Checking___Disable_for_Comments.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Spell_Checking_in_Strings.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Symbol_list.plist +0 -28
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_TexShop_comments.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Beamer_Overlay_Specification.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Change_Style_of_selected_text.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Displaymath_________.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Gather__ed__.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Item__description__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Lines_to_list_environment.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Math_mode__________.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_New_Line.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Sub_Paragraph.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Unnumbered_Equation.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_Selection_in_Environment.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_in___left____right.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_selection_in_double_quotes.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___begin____________end____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___section______section__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___subsection______sub__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___subsubsection______ssub__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Lisp.tmbundle/Snippets/next_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Disable_spell_checking_for_raw.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Indent___Raw.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Symbol_List___Heading.plist +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Typing_Pairs___Disable___for_Raw.plist +0 -42
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Snippets/next_Hard_linebreak.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Add_Magic_Methods_to_the_Symbol_List.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Completion___includes.tmPreferences +0 -30
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Disable_spellcheck_in_require.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Enable_Spellchecking_for_Docblocks.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Symbols_List___functions.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Continue_Block_Comment.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Include_TextMate_Support_Script.tmSnippet +0 -25
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_class.tmSnippet +0 -26
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_class_var.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_constant_definition.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_function.tmSnippet +0 -26
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_function_signature.tmSnippet +0 -26
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_header.tmSnippet +0 -30
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_interface.tmSnippet +0 -26
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHP_Error_Catching.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Special___Return_Between_PHP_Tags.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Start_Docblock.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next___GLOBALS________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____COOKIE________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____ENV________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____FILES________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____GET________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____POST________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____REQUEST________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____SERVER________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____SESSION________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_______________php.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_echo_________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_echo_htmlentities____________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_else_______.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_foreach_________________php_endforeach_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_if______________________php_else______________php_endif_____.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_if______________________php_endif_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_class______.tmSnippet +0 -27
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_define_____.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_defined_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_do_while_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_echo____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_else_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_elseif_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_for_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_foreach_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_function_xx_____.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if______a____b__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if______else_____.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_include_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_include_once_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_new_array_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_require_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_require_once_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return_FALSE__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return_TRUE__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return___retVal__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_switch_____.tmSnippet +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_switch______case__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_try___________catch__________________.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_while_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl HTML-Template.tmbundle/Snippets/next_If__Else.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl Template Toolkit.tmbundle/Preferences/next_Filename_Settings.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_if__else___ife__.plist +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_if__elsif__else___ifee__.plist +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_one__line___unless__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_one__line___xif__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Function___sub__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Loop_one__line___xforeach__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Loop_one__line___xwhile__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_hash_pointer.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_draw___se__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_float_______float______.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_float___float__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_int_______int______.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_int___int__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_opengl___gl__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_setup___se__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_size___size__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_string_______string______.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_string___str__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_void_method___void__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Symbol_List.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Typing_Pairs.plist +0 -50
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/next_Symbol_List.tmPreferences +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/next_Symbol_List___Hide_Decorator.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_Class_Def___Insert_________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_Function___Insert_________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_String___Insert___________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Class.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Function.tmSnippet +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Method.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Property.tmSnippet +0 -25
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Else.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Else__Finally.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Finally.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_if___name____________main____.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Preferences/next_Symbol_List___Behaviour.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Preferences/next_Symbol_List___Example.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Custom_Matcher.tmSnippet +0 -39
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Require_spec_helper.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Set_Controller_for_Spec.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_____.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_eql.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_not_____.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_not_eql.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Preferences/next_Template___ERB__.tmPreferences +0 -48
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Preferences/next_Template___Haml__.tmPreferences +0 -48
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_180_rails_form_tag.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_binary_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_boolean_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_controller_class.tmSnippet +0 -25
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_date_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_datetime_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_decimal_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_float_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_functional_test_class.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_integer_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_lock_version_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_references_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_string_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_text_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_time_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_timestamp_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_timestamps_columns.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Create_Column_Continue___mccc__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Create_Column___mcc__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Drop_Create_Table___mdct__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Remove_and_Add_Column___mrac__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_RAILS_DEFAULT_LOGGER_debug___rdb__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Table_column__s___rename.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Test_Assert_Redirected_To___art__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Test_Assert_Response___are__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next___3C_____Fixtures_identify____3Asymbol_______3E.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next___LABEL.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert__var____assigns____3Avar____.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___nested_path__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___nested_path_plural__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___path__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___path_plural__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_belongs_to___bt__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_create____resource.tmSnippet +0 -30
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_get_request.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_post_request.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find____3Aall__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find____3Afirst__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find__id__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_for_loop_erb.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_check_box.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_checkbox.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_file_field.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_file_field_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_hidden_field.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_hidden_field_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_label.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_label_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_password_field.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_password_field_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_radio_box.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_radio_box_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_submit.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_submit_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_area.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_area_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_field.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_field_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_with_errors.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_and_belongs_to_many___habtm__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___dependent________destroy.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___hm__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___through__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_one___ho__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___nested_path__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___nested_path_plural__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___path__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___path_plural__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to_model.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_map______3Asym_proc__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_named_scope_lambda.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_hide_____2Aids__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_insert_html___position___id___partial__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_replace___id___partial__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_replace_html___id___partial__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_show_____2Aids__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_toggle_____2Aids__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_visual_effect___effect___id__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_flash.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_params.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_session.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___nested_path__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___nested_path_plural__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___path__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___path_plural__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___action________ra__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___action__layout_____ral__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___file_____rf__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___file__use_full_path_____rfu__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline_____ri__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline__locals_____ril__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline__type_____rit__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___layout_____rl__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___nothing_____rn__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___nothing__status_____rns__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial_____rp__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__collection_____rpc__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__locals_____rpl__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__object_____rpo__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__status_____rps__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text_____rt__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__layout____3Etrue_____rtlt__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__layout_____rtl__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__status_____rts__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___update__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_respond_to___html__.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_returning_do___7Cvariable__7C___E2__80__A6_end.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_binary___tcbi__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_boolean___tcb__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_date___tcda__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_datetime___tcdt__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_decimal___tcd__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_float___tcf__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_integer___tci__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_lock_version___tcl__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_references___tcr__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_rename___tre__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_string___tcs__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_text___tct__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_time___tcti__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_timestamp___tcts__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_timestamps___tctss__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_acceptance_of_if.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_associated___va__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_associated_if___vaif__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_confirmation_of___vc__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_confirmation_of_if___vcif__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_exclusion_of___ve__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_exclusion_of_if___veif__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_format_of_if.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_inclusion_of_if.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_length_of___vl__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_length_of_if.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_numericality_of_if.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_presence_of___vp__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_presence_of_if___vpif___2.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_uniqueness_of___vu__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_uniqueness_of_if___vuif__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_verify____redirect___verify__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_verify___verify__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_delete.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_get.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_post.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_put.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Block_typing_pairs.plist +0 -42
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Completion___ENV___________variables.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Completion___require_strings.tmPreferences +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Symbo_List___Method.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Symbol_List___No_Function_Call.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_060_ruby_if_else.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_070_ruby_if.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_080_ruby_case.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Add_____________Marker.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Array_new__10________i____________Arr__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Benchmark_bmbm_______do____end.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Dir__________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Dir_glob___________do___file______end____Dir__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_foreach____________do___line______end____File__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_open________________file________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_read__________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Hash_new______hash___key___hash__key_______________Has__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Insert_ERb__s______________or_______________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Marshal_dump__obj___file______Md__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Marshal_load__obj______Ml__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_PStore_new________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_RDoc_documentation_block.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Wrap_in_Begin________Rescue________End.plist +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_YAML_dump_______file______Yd____.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_YAML_load__file______Yl____.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_______usr__local__bin__ruby___w.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next___yields___RDoc_comment.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_alias_method_______am__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_all________e____________all__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_any________e____________any__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_application_code_______app__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert__________as__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_in_delta__________asid__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_instance_of__________asio__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_kind_of__________asko__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_match__________asm__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nil__________asn__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_no_match__________asnm__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_equal__________asne__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_nil__________asnn__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_same__________asns__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nothing_raised___________________asnr__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nothing_thrown_____________asnt__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_operator__________aso__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_raise___________________asr__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_respond_to__________asrt__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_same__________ass__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_send__________ass__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_throws___________________ast__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_accessor_______rw__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_reader_______r__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_writer_______w__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______DelegateClass____initialize____end____class__.plist +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______ParentClass____initialize____end.plist +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______Struct____initialize____end.plist +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______Test____Unit____TestCase____end____tc__.plist +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class______self____end.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____end____cla__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____initialize____end.plist +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____instance_methods____undef____initialize____end____class__.plist +0 -30
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_from_name________clafn__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_classify______e____________clas__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_collect______e____________col__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_deep_copy__________dee__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_delegator______defd__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_delegators______defds__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_end.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_method_missing____end____mm__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_self____end____defs__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_test_____end____t__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_delete_if______e____________deli__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_detect______e____________det__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_directory____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_do___obj______end___doo__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_downto__0________n____________dow__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each______e____________ea__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_byte______byte____________eab__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_char______chr____________eac____.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_cons____________group____________eac____.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_index______i____________eai__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_key______key____________eak__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_line______line____________eal__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_pair______name___val____________eap__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_slice______group____________eas__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_value______val____________eav__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_with_index______e___i____________eawi__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_elsif____.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_embed_string_variable.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_extend_Forwardable____Forw__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_fetch__name________key____________fet__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_fill__range________i____________fil__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_find______e____________fin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_find_all______e____________fina__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_flatten_once____fla__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_flunk__________fl__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_grep____pattern__________match____________gre__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_gsub________________match____________gsu__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_hash_pair_______.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_hash_pointer.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_include_Comparable_______Comp__.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_include_Enumerable_______Enum__.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_inject__init________mem___var____________inj__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_lambda______args____________lam__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_loop_________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_map______e____________map__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_map_with_index______e___i____________mapwi__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_max______a___b____________max__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_min______a___b____________min__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____ClassMethods____end.plist +0 -29
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____end.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____module_function____end.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_namespace______do____end.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_open____path__or__url_______w_____do___doc______end___ope__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_open_yield_block_______.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_option_parse_____________optp__.plist +0 -43
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_partition______e____________par__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_path_from_here________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_randomize____ran__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_reject______e____________rej__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require___________req__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require___tc____________ts__.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require_gem_______.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_results_report_______________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_reverse_each______e____________rea__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_scan________________match____________sca__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_select______e____________sel__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_singleton_class____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sort______a___b____________sor__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sort_by______e____________sorb__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_step__2________e____________ste__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sub________________match____________sub__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_task___task_name__________dependent_____tasks___do____end.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_times______n____________tim__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_transaction_________do____end.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_unix_filter______uni__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_unless___unless__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_until_____end.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_upto__1_0__0_0________n____________upt__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_usage_if________usai__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_usage_unless________usau__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_while_____end.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_xmlread______.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_xpath_______________.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_zip__enums________row____________zip__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_DynamicForward___df__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_Host___host__.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_IdentityFile___idf__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_LocalForward___lf__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Snippets/next_Try__Catch__Finally.tmSnippet +0 -27
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_______usr__bin__env_____env__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_case____esac___case__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_elif______elif__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_for________in________done___forin__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_for_____done___for__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_here_document___here__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_if_____then___if__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_until__________done__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_while__________done__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Disable_spell_checking_for_all.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Enable_spell_checking_for_strings.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_String__comment_typing_pairs.plist +0 -42
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Symbol_list.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Continue_line_comment.plist +0 -35
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Escaped_Quote_Pair_____________.plist +0 -14
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Escaped_Single_Quote_Pair_____________.plist +0 -14
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Frame_text.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next___n.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Bold.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Italic.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Underline.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Spell_checking.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_010_Copyright.plist +0 -14
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_bullet.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_light_bullet.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_star_bullet.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Insert_ISO_date.plist +0 -14
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Lorem_ipsum.plist +0 -14
- data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Smart_Pairs___Regex_Character_Class__.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Spell_Checking___Disable_for_CamelCase_Words.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Style___Separator.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Style___Separator____Release_Notes.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/next_Disable_Spell_Check_in_Raw.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/next_Symbol_List___Heading.plist +0 -29
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Block_Quotes.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Class_and_Id.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Color_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Convert_Tabs_To_Table.plist +0 -14
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_1.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_2.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_3.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_4.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_5.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_6.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Linked_Image.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___enum.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___exception.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___function.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___senum.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___service.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___struct.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Preferences/next_Symbol_List___Templates.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_Smart_return__indent_for_tag_pairs.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_XML_Processing_Instruction.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_long_attribute_tag.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_long_tag.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_short_tag.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Snippets/next_line___.tmSnippet +0 -19
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core/core.rb
RENAMED
File without changes
|
data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core/plugin.rb
RENAMED
File without changes
|
data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core2/core.rb
RENAMED
File without changes
|
data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core2/plugin.rb
RENAMED
File without changes
|
data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core/core.rb
RENAMED
File without changes
|
data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core/plugin.rb
RENAMED
File without changes
|
data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core2/core.rb
RENAMED
File without changes
|
data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core2/plugin.rb
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
require
|
2
|
+
require "spec_helper"
|
3
3
|
|
4
4
|
describe PluginManager do
|
5
5
|
before do
|
@@ -19,7 +19,7 @@ describe PluginManager do
|
|
19
19
|
describe "loading plugin definitions" do
|
20
20
|
before do
|
21
21
|
@manager = PluginManager.new
|
22
|
-
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures example)))
|
22
|
+
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures plugin_loading example)))
|
23
23
|
end
|
24
24
|
|
25
25
|
it "should find plugin files inside the source" do
|
@@ -36,8 +36,8 @@ describe PluginManager do
|
|
36
36
|
|
37
37
|
describe "loading plugin definitions with syntax errors in them" do
|
38
38
|
before do
|
39
|
-
@manager = PluginManager.new
|
40
|
-
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures error_in_definition)))
|
39
|
+
@manager = PluginManager.new(StringIO.new)
|
40
|
+
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures plugin_loading error_in_definition)))
|
41
41
|
end
|
42
42
|
|
43
43
|
it "should not die when loading the definition" do
|
@@ -47,14 +47,14 @@ describe PluginManager do
|
|
47
47
|
it "should report it as an error" do
|
48
48
|
@manager.unreadable_definitions.length.should == 1
|
49
49
|
@manager.unreadable_definitions.first.should ==
|
50
|
-
File.expand_path(File.join(File.dirname(__FILE__), %w(fixtures error_in_definition core plugin.rb)))
|
50
|
+
File.expand_path(File.join(File.dirname(__FILE__), %w(fixtures plugin_loading error_in_definition core plugin.rb)))
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
54
|
describe "loading plugins" do
|
55
55
|
before do
|
56
56
|
@manager = PluginManager.new
|
57
|
-
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures example)))
|
57
|
+
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures plugin_loading example)))
|
58
58
|
@manager.load
|
59
59
|
end
|
60
60
|
|
@@ -73,8 +73,8 @@ describe PluginManager do
|
|
73
73
|
|
74
74
|
describe "loading plugins with errors in them" do
|
75
75
|
before do
|
76
|
-
@manager = PluginManager.new
|
77
|
-
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures error_in_plugin)))
|
76
|
+
@manager = PluginManager.new(StringIO.new)
|
77
|
+
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures plugin_loading error_in_plugin)))
|
78
78
|
end
|
79
79
|
|
80
80
|
it "should not die when loading plugins" do
|
@@ -91,7 +91,7 @@ describe PluginManager do
|
|
91
91
|
describe "loading plugins with unmet dependencies because the plugin is missing" do
|
92
92
|
before do
|
93
93
|
@manager = PluginManager.new
|
94
|
-
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures unmet_dependencies1)))
|
94
|
+
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures plugin_loading unmet_dependencies1)))
|
95
95
|
end
|
96
96
|
|
97
97
|
it "should load the rest of the plugins ok" do
|
@@ -103,7 +103,7 @@ describe PluginManager do
|
|
103
103
|
describe "loading plugins with unmet dependencies because the plugin is not recent enough" do
|
104
104
|
before do
|
105
105
|
@manager = PluginManager.new
|
106
|
-
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures unmet_dependencies2)))
|
106
|
+
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures plugin_loading unmet_dependencies2)))
|
107
107
|
end
|
108
108
|
|
109
109
|
it "should load the rest of the plugins ok" do
|
@@ -115,7 +115,7 @@ describe PluginManager do
|
|
115
115
|
describe "reloading plugins" do
|
116
116
|
before do
|
117
117
|
@manager = PluginManager.new
|
118
|
-
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures example)))
|
118
|
+
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures plugin_loading example)))
|
119
119
|
@manager.load
|
120
120
|
end
|
121
121
|
|
@@ -128,7 +128,7 @@ describe PluginManager do
|
|
128
128
|
describe "loading when there are multiple versions" do
|
129
129
|
before do
|
130
130
|
@manager = PluginManager.new
|
131
|
-
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures two_versions1)))
|
131
|
+
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures plugin_loading two_versions1)))
|
132
132
|
@manager.load
|
133
133
|
end
|
134
134
|
|
@@ -144,16 +144,54 @@ describe PluginManager do
|
|
144
144
|
describe "loading when there are multiple versions and the most recent has unmet deps" do
|
145
145
|
before do
|
146
146
|
@manager = PluginManager.new
|
147
|
-
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures two_versions2)))
|
147
|
+
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures plugin_loading two_versions2)))
|
148
|
+
end
|
149
|
+
|
150
|
+
it "should not load the plugin" do
|
148
151
|
@manager.load
|
152
|
+
@manager.loaded_plugins.length.should == 0
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
156
|
+
describe "specify which plugin to load and load only that and it's dependencies" do
|
157
|
+
before do
|
158
|
+
@manager = PluginManager.new
|
159
|
+
@manager.add_plugin_source(File.join(File.dirname(__FILE__), %w(fixtures plugin_loading example)))
|
149
160
|
end
|
150
161
|
|
151
|
-
it "should only load one
|
162
|
+
it "should only load one plugin if that's right" do
|
163
|
+
@manager.load("Core")
|
152
164
|
@manager.loaded_plugins.length.should == 1
|
165
|
+
@manager.loaded_plugins.first.name.should == "Core"
|
166
|
+
end
|
167
|
+
|
168
|
+
it "should load dependencies of the specified plugin" do
|
169
|
+
@manager.load("Extras")
|
170
|
+
@manager.loaded_plugins.length.should == 2
|
171
|
+
@manager.loaded_plugins.map {|pl| pl.name }.sort.should == ["Core", "Extras"]
|
172
|
+
end
|
173
|
+
|
174
|
+
it "should load dependencies of dependencies" do
|
175
|
+
@manager.load("Debug")
|
176
|
+
@manager.loaded_plugins.length.should == 3
|
177
|
+
@manager.loaded_plugins.map {|pl| pl.name }.sort.should == ["Core", "Debug", "Extras"]
|
178
|
+
end
|
179
|
+
|
180
|
+
it "should let you specify multiple plugins to load" do
|
181
|
+
@manager.load("Core", "Debug")
|
182
|
+
@manager.loaded_plugins.length.should == 3
|
183
|
+
@manager.loaded_plugins.map {|pl| pl.name }.sort.should == ["Core", "Debug", "Extras"]
|
184
|
+
end
|
185
|
+
|
186
|
+
it "should let you load more after loading the first batch" do
|
187
|
+
@manager.load("Core")
|
188
|
+
@manager.load("Debug")
|
189
|
+
@manager.loaded_plugins.length.should == 3
|
190
|
+
@manager.loaded_plugins.map {|pl| pl.name }.sort.should == ["Core", "Debug", "Extras"]
|
153
191
|
end
|
154
192
|
|
155
|
-
it "should
|
156
|
-
@manager.
|
193
|
+
it "should raise an error if you try to load a plugin that doesn't exist" do
|
194
|
+
lambda { @manager.load("AFOSIJ") }.should raise_error
|
157
195
|
end
|
158
196
|
end
|
159
197
|
|
data/lib/redcar.rb
CHANGED
@@ -52,7 +52,7 @@ end
|
|
52
52
|
#
|
53
53
|
# and so on.
|
54
54
|
module Redcar
|
55
|
-
VERSION = '0.5.
|
55
|
+
VERSION = '0.5.3dev' # also change in the Rakefile!
|
56
56
|
VERSION_MAJOR = 0
|
57
57
|
VERSION_MINOR = 5
|
58
58
|
VERSION_RELEASE = 0
|
@@ -76,52 +76,9 @@ module Redcar
|
|
76
76
|
end
|
77
77
|
|
78
78
|
def self.spin_up
|
79
|
-
forking = ARGV.include?("--fork")
|
80
|
-
no_runner = ARGV.include?("--no-sub-jruby")
|
81
|
-
jruby = Config::CONFIG["RUBY_INSTALL_NAME"] == "jruby"
|
82
|
-
osx = (not [:linux, :windows].include?(platform))
|
83
|
-
|
84
|
-
begin
|
85
|
-
if forking and not jruby
|
86
|
-
# jRuby doesn't support fork() because of the runtime stuff...
|
87
|
-
forking = false
|
88
|
-
puts 'Forking failed, attempting to start anyway...' if (pid = fork) == -1
|
89
|
-
exit unless pid.nil? # kill the parent process
|
90
|
-
|
91
|
-
if pid.nil?
|
92
|
-
# reopen the standard pipes to nothingness
|
93
|
-
STDIN.reopen Redcar.null_device
|
94
|
-
STDOUT.reopen Redcar.null_device, 'a'
|
95
|
-
STDERR.reopen STDOUT
|
96
|
-
end
|
97
|
-
elsif forking and SPOON_AVAILABLE and ::Spoon.supported?
|
98
|
-
# so we need to try something different...
|
99
|
-
|
100
|
-
forking = false
|
101
|
-
require 'redcar/runner'
|
102
|
-
runner = Redcar::Runner.new
|
103
|
-
runner.spin_up do |command|
|
104
|
-
command.push('--silent')
|
105
|
-
::Spoon.spawnp(*command)
|
106
|
-
end
|
107
|
-
exit 0
|
108
|
-
elsif forking
|
109
|
-
raise NotImplementedError, "Something weird has happened. Please contact us."
|
110
|
-
end
|
111
|
-
rescue NotImplementedError
|
112
|
-
puts $!.class.name + ": " + $!.message
|
113
|
-
puts "Forking isn't supported on this system. Sorry."
|
114
|
-
puts "Starting normally..."
|
115
|
-
end
|
116
|
-
|
117
|
-
return if no_runner
|
118
|
-
return if jruby and not osx
|
119
|
-
|
120
79
|
require 'redcar/runner'
|
121
80
|
runner = Redcar::Runner.new
|
122
|
-
runner.
|
123
|
-
exec(*command)
|
124
|
-
end
|
81
|
+
runner.run
|
125
82
|
end
|
126
83
|
|
127
84
|
def self.root
|
@@ -137,8 +94,11 @@ module Redcar
|
|
137
94
|
end
|
138
95
|
end
|
139
96
|
|
140
|
-
|
141
|
-
|
97
|
+
def self.load_prerequisites
|
98
|
+
exit if ARGV.include?("--quit-immediately")
|
99
|
+
|
100
|
+
require 'redcar_quick_start'
|
101
|
+
|
142
102
|
$:.push File.expand_path(File.join(File.dirname(__FILE__), "plugin_manager", "lib"))
|
143
103
|
require 'plugin_manager'
|
144
104
|
|
@@ -149,27 +109,72 @@ module Redcar
|
|
149
109
|
|
150
110
|
$:.push File.expand_path(File.join(File.dirname(__FILE__), "openssl", "lib"))
|
151
111
|
require 'openssl'
|
112
|
+
|
113
|
+
plugin_manager.load("swt")
|
114
|
+
end
|
152
115
|
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
116
|
+
def self.load_plugins
|
117
|
+
begin
|
118
|
+
exit if ARGV.include?("--quit-after-splash")
|
119
|
+
|
120
|
+
plugin_manager.load
|
121
|
+
if plugin_manager.unreadable_definitions.any?
|
122
|
+
puts "Couldn't read definition files: "
|
123
|
+
puts plugin_manager.unreadable_definitions.map {|d| " * " + d}
|
124
|
+
end
|
125
|
+
if plugin_manager.plugins_with_errors.any?
|
126
|
+
puts "There was an error loading plugins: "
|
127
|
+
puts plugin_manager.plugins_with_errors.map {|d| " * " + d.name}
|
128
|
+
end
|
129
|
+
if ENV["PLUGIN_DEBUG"]
|
130
|
+
puts "Loaded plugins:"
|
131
|
+
puts plugin_manager.loaded_plugins.map {|d| " * " + d.name}
|
132
|
+
puts
|
133
|
+
puts "Unloaded plugins:"
|
134
|
+
puts plugin_manager.unloaded_plugins.map {|d| " * " + d.name}
|
135
|
+
end
|
136
|
+
rescue => e
|
137
|
+
puts e.message
|
138
|
+
puts e.backtrace
|
157
139
|
end
|
158
|
-
|
159
|
-
|
160
|
-
|
140
|
+
end
|
141
|
+
|
142
|
+
# Tells the plugin manager to load plugins, and prints debug output.
|
143
|
+
def self.load_threaded
|
144
|
+
load_prerequisites
|
145
|
+
thread = Thread.new do
|
146
|
+
load_plugins
|
147
|
+
Redcar::Top.start(ARGV)
|
161
148
|
end
|
162
|
-
if
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
149
|
+
if no_gui_mode?
|
150
|
+
thread.join
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
154
|
+
def self.load_unthreaded
|
155
|
+
load_prerequisites
|
156
|
+
load_plugins
|
157
|
+
end
|
158
|
+
|
159
|
+
def self.no_gui_mode?
|
160
|
+
ARGV.include?("--no-gui")
|
161
|
+
end
|
162
|
+
|
163
|
+
def self.show_splash
|
164
|
+
return if Redcar.no_gui_mode?
|
165
|
+
|
166
|
+
Swt.create_splash_screen(plugin_manager.plugins.length + 10)
|
167
|
+
plugin_manager.on_load do |plugin|
|
168
|
+
Swt.sync_exec do
|
169
|
+
Swt.splash_screen.inc
|
170
|
+
end
|
168
171
|
end
|
169
172
|
end
|
170
173
|
|
171
|
-
|
174
|
+
## Starts the GUI.
|
172
175
|
def self.pump
|
176
|
+
return if Redcar.no_gui_mode?
|
177
|
+
|
173
178
|
Redcar.gui.start
|
174
179
|
end
|
175
180
|
|
@@ -187,7 +192,7 @@ module Redcar
|
|
187
192
|
|
188
193
|
# Platform specific ~/.redcar/assets
|
189
194
|
def self.asset_dir
|
190
|
-
File.join(
|
195
|
+
File.join(home_dir, ".redcar", "assets")
|
191
196
|
end
|
192
197
|
|
193
198
|
# Platform specific ~/
|
@@ -213,6 +218,7 @@ module Redcar
|
|
213
218
|
# Set the application GUI.
|
214
219
|
def self.gui=(gui)
|
215
220
|
raise "can't set gui twice" if @gui
|
221
|
+
return if Redcar.no_gui_mode?
|
216
222
|
@gui = gui
|
217
223
|
end
|
218
224
|
end
|
data/lib/redcar/installer.rb
CHANGED
@@ -23,10 +23,7 @@ module Redcar
|
|
23
23
|
Redcar.environment = :user
|
24
24
|
puts "Downloading >10MB of binary assets. This may take a while the first time."
|
25
25
|
fetch_all_assets
|
26
|
-
|
27
|
-
s = Time.now
|
28
|
-
load_textmate_bundles
|
29
|
-
puts "... took #{Time.now - s}s"
|
26
|
+
precache_textmate_bundles
|
30
27
|
puts "Done! You're ready to run Redcar."
|
31
28
|
end
|
32
29
|
|
@@ -105,7 +102,8 @@ module Redcar
|
|
105
102
|
exit
|
106
103
|
end
|
107
104
|
|
108
|
-
FileUtils.
|
105
|
+
FileUtils.cp(temporary_target, destination_file)
|
106
|
+
FileUtils.rm_rf(temporary_target)
|
109
107
|
puts "done!"
|
110
108
|
end
|
111
109
|
|
@@ -126,14 +124,11 @@ module Redcar
|
|
126
124
|
end
|
127
125
|
end
|
128
126
|
|
129
|
-
def
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
Core.loaded
|
135
|
-
require 'textmate'
|
136
|
-
Redcar::Textmate.all_bundles
|
127
|
+
def precache_textmate_bundles
|
128
|
+
puts "Precaching textmate bundles..."
|
129
|
+
Runner.new.construct_command(["--no-gui", "--compute-textmate-cache-and-quit", "--multiple-instance"]) do |cmd|
|
130
|
+
%x{#{cmd.join(' ')}}
|
131
|
+
end
|
137
132
|
end
|
138
133
|
|
139
134
|
# Xulrunner releases don't hang around very long, so we scrape their site to figure out
|
data/lib/redcar/runner.rb
CHANGED
@@ -1,11 +1,55 @@
|
|
1
1
|
module Redcar
|
2
2
|
# Cribbed from ruby-processing. Many thanks!
|
3
3
|
class Runner
|
4
|
+
def run
|
5
|
+
forking = ARGV.include?("--fork")
|
6
|
+
no_runner = ARGV.include?("--no-sub-jruby")
|
7
|
+
jruby = Config::CONFIG["RUBY_INSTALL_NAME"] == "jruby"
|
8
|
+
osx = (not [:linux, :windows].include?(Redcar.platform))
|
9
|
+
begin
|
10
|
+
if forking and not jruby
|
11
|
+
# jRuby doesn't support fork() because of the runtime stuff...
|
12
|
+
forking = false
|
13
|
+
puts 'Forking failed, attempting to start anyway...' if (pid = fork) == -1
|
14
|
+
exit unless pid.nil? # kill the parent process
|
15
|
+
|
16
|
+
if pid.nil?
|
17
|
+
# reopen the standard pipes to nothingness
|
18
|
+
STDIN.reopen Redcar.null_device
|
19
|
+
STDOUT.reopen Redcar.null_device, 'a'
|
20
|
+
STDERR.reopen STDOUT
|
21
|
+
end
|
22
|
+
elsif forking and SPOON_AVAILABLE and ::Spoon.supported?
|
23
|
+
# so we need to try something different...
|
24
|
+
|
25
|
+
forking = false
|
26
|
+
construct_command do |command|
|
27
|
+
command.push('--silent')
|
28
|
+
::Spoon.spawnp(*command)
|
29
|
+
end
|
30
|
+
exit 0
|
31
|
+
elsif forking
|
32
|
+
raise NotImplementedError, "Something weird has happened. Please contact us."
|
33
|
+
end
|
34
|
+
rescue NotImplementedError
|
35
|
+
puts $!.class.name + ": " + $!.message
|
36
|
+
puts "Forking isn't supported on this system. Sorry."
|
37
|
+
puts "Starting normally..."
|
38
|
+
end
|
39
|
+
|
40
|
+
return if no_runner
|
41
|
+
return if jruby and not osx
|
42
|
+
|
43
|
+
construct_command do |command|
|
44
|
+
exec(*command)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
4
48
|
# Trade in this Ruby instance for a JRuby instance, loading in a
|
5
49
|
# starter script and passing it some arguments.
|
6
50
|
# If --jruby is passed, use the installed version of jruby, instead of
|
7
51
|
# our vendored jarred one (useful for gems).
|
8
|
-
def
|
52
|
+
def construct_command(args="")
|
9
53
|
bin = File.expand_path(File.join(File.dirname(__FILE__), %w{.. .. bin redcar}))
|
10
54
|
jruby_complete = File.expand_path(File.join(Redcar.asset_dir, "jruby-complete-1.5.2.jar"))
|
11
55
|
unless File.exist?(jruby_complete)
|
@@ -22,6 +66,7 @@ module Redcar
|
|
22
66
|
command.push(bin)
|
23
67
|
command.push(*cleaned_args)
|
24
68
|
command.push("--no-sub-jruby", "--ignore-stdin")
|
69
|
+
command.push(*args)
|
25
70
|
|
26
71
|
puts command.join(' ')
|
27
72
|
yield command
|
@@ -29,13 +74,15 @@ module Redcar
|
|
29
74
|
|
30
75
|
def cleaned_args
|
31
76
|
# We should never pass --fork to a subprocess
|
32
|
-
ARGV.find_all {|arg| arg != '--fork'}.map do |arg|
|
77
|
+
result = ARGV.find_all {|arg| arg != '--fork'}.map do |arg|
|
33
78
|
if arg =~ /--(.+)=(.+)/
|
34
79
|
"--" + $1 + "=\"" + $2 + "\""
|
35
80
|
else
|
36
81
|
arg
|
37
82
|
end
|
38
83
|
end
|
84
|
+
result.delete("install")
|
85
|
+
result
|
39
86
|
end
|
40
87
|
|
41
88
|
def debug_mode?
|
@@ -51,10 +98,13 @@ module Redcar
|
|
51
98
|
if ARGV.include?("--load-timings")
|
52
99
|
str.push "-Djruby.debug.loadService.timing=true"
|
53
100
|
end
|
101
|
+
|
102
|
+
require 'redcar/jvm_options_probe'
|
54
103
|
|
55
|
-
|
56
|
-
|
57
|
-
|
104
|
+
jvm_options_probe = JvmOptionsProbe.new
|
105
|
+
|
106
|
+
str.push "-d32" if jvm_options_probe.can_use_d32?
|
107
|
+
str.push "-client" if jvm_options_probe.can_use_client?
|
58
108
|
|
59
109
|
str
|
60
110
|
end
|