redcar 0.5 → 0.5.1dev
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +16 -29
- data/README.md +1 -1
- data/Rakefile +5 -4
- data/bin/redcar +3 -6
- data/lib/plugin_manager/README.md +0 -3
- data/lib/plugin_manager/lib/plugin_manager.rb +47 -138
- data/lib/plugin_manager/lib/plugin_manager/definition_builder.rb +1 -19
- data/lib/plugin_manager/lib/plugin_manager/plugin_definition.rb +3 -11
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/error_in_definition → error_in_definition}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/error_in_plugin → error_in_plugin}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/error_in_plugin → error_in_plugin}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/example → example}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/example → example}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/example → example}/debug/debug.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/example → example}/debug/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/example → example}/extras/extras.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/example → example}/extras/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/two_versions1 → two_versions1}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/two_versions1 → two_versions1}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/two_versions1 → two_versions1}/core2/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/two_versions1 → two_versions1}/core2/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/two_versions2 → two_versions2}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/two_versions2 → two_versions2}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/two_versions2 → two_versions2}/core2/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/two_versions2 → two_versions2}/core2/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/unmet_dependencies1 → unmet_dependencies1}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/unmet_dependencies1 → unmet_dependencies1}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/unmet_dependencies1 → unmet_dependencies1}/debug/debug.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/unmet_dependencies1 → unmet_dependencies1}/debug/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/unmet_dependencies2 → unmet_dependencies2}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/unmet_dependencies2 → unmet_dependencies2}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/unmet_dependencies2 → unmet_dependencies2}/debug/debug.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{plugin_loading/unmet_dependencies2 → unmet_dependencies2}/debug/plugin.rb +0 -0
- data/lib/plugin_manager/spec/plugin_manager_spec.rb +16 -54
- data/lib/redcar.rb +64 -68
- data/lib/redcar/installer.rb +15 -10
- data/lib/redcar/runner.rb +6 -62
- data/plugins/application/features/support/env.rb +6 -6
- data/plugins/application/lib/application.rb +1 -3
- data/plugins/application/spec/spec_helper.rb +1 -1
- data/plugins/application_swt/lib/application_swt.rb +42 -13
- data/plugins/{swt/lib/swt → application_swt/lib/application_swt}/cucumber_patches.rb +0 -0
- data/plugins/application_swt/lib/application_swt/cucumber_runner.rb +25 -0
- data/plugins/application_swt/lib/application_swt/event_loop.rb +32 -0
- data/plugins/{swt/lib → application_swt/lib/application_swt}/swt/grid_data.rb +0 -0
- data/plugins/{swt/lib → application_swt/lib/application_swt}/swt/listener_helpers.rb +0 -0
- data/plugins/{swt/lib/swt/full_swt.rb → application_swt/lib/application_swt/swt_wrapper.rb} +40 -7
- data/plugins/application_swt/plugin.rb +1 -2
- data/plugins/application_swt/spec/spec_helper.rb +1 -1
- data/plugins/auto_completer/lib/auto_completer.rb +24 -46
- data/plugins/auto_indenter/spec/spec_helper.rb +1 -1
- data/plugins/connection_manager/views/index.html.erb +1 -1
- data/plugins/core/spec/core/resource_spec.rb +123 -124
- data/plugins/core/spec/spec_helper.rb +1 -1
- data/plugins/declarations/lib/declarations/select_tag_dialog.rb +4 -5
- data/plugins/declarations/spec/spec_helper.rb +1 -1
- data/plugins/document_search/features/replace.feature +4 -17
- data/plugins/document_search/lib/document_search/replace.rb +3 -5
- data/plugins/document_search/lib/document_search/search.rb +10 -9
- data/plugins/edit_view/features/cut_and_paste.feature +10 -8
- data/plugins/edit_view/lib/edit_view.rb +70 -92
- 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 +50 -78
- data/plugins/edit_view_swt/lib/edit_view_swt/document.rb +35 -50
- data/plugins/edit_view_swt/spec/spec_helper.rb +1 -1
- data/plugins/edit_view_swt/vendor/java-mateview.rb +2 -1
- data/plugins/file_parser/lib/file_parser.rb +7 -71
- data/plugins/find-in-project/TODO.md +2 -0
- data/plugins/find-in-project/lib/find_in_project.rb +0 -1
- data/plugins/find-in-project/lib/find_in_project/controllers.rb +17 -38
- data/plugins/find-in-project/lib/find_in_project/stylesheets/style.css +8 -27
- data/plugins/find-in-project/lib/find_in_project/views/_file_heading.html.erb +2 -2
- data/plugins/find-in-project/lib/find_in_project/views/_file_line.html.erb +3 -3
- data/plugins/find-in-project/lib/find_in_project/views/index.html.erb +7 -13
- data/plugins/html_view/plugin.rb +1 -2
- data/plugins/project/lib/project.rb +0 -2
- 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 +1 -2
- data/plugins/project/spec/spec_helper.rb +1 -1
- data/plugins/redcar/redcar.rb +44 -63
- data/plugins/repl/spec/repl/clojure_mirror_spec.rb +0 -2
- 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/lib/scm/scm_changes_mirror/change.rb +0 -2
- data/plugins/scm/spec/spec_helper.rb +1 -1
- data/plugins/scm_git/vendor/ruby-git/lib/git/lib.rb +1 -1
- data/plugins/textmate/lib/textmate.rb +27 -18
- data/plugins/textmate/plugin.rb +1 -1
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Completions___Modules.tmPreferences +95 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Completions___Modules_Identifiers.tmPreferences +80 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Default_Tag_Inside_Virtual_Host.tmPreferences +24 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Directory.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Location.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___VHost_Directory.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___VHost_Location.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Virtual_Host.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_AllowOverride___allow__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_Options___opt__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_VirtualHost___vhost__.plist +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Comments___comments__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Cut___cut__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Date___date__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Keywords___keyw__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Ping___ping__.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Pings___pings__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Tags___tags__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Title___title__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List.tmPreferences +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_Separator__.tmPreferences +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_item_scopes__.tmPreferences +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_items__.tmPreferences +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Begin_Captures.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Content_Name.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_ENV____TM___________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_End_Captures.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Grammar____Single_Quotes.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Patterns___Repository__.tmSnippet +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Require___Support__lib__________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule___Begin____End__.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule___Repository__.tmSnippet +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Begin____End___Inside_Rule__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Match___Inside_Rule__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Match___Repository__.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_Qt_C_____Completitions.tmPreferences +161 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_Qt_C_____Indentation_Rules.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Comments.tmPreferences +24 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Completitions.tmPreferences +44 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Typing_Pairs.tmPreferences +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_Block_Comment.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_Block_Comment_Newline.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_QTimer____singleShot_______.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_main___qmain__.tmSnippet +23 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qSort_______.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qWarning___warn__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qmake_Project_template_stub.tmSnippet +36 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_toLatin1_____data_______latin__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_toUtf8_____data____.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Comments___C______.tmPreferences +42 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Disable_Spell_Checking.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_Completion.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_Completion___System__.tmPreferences +38 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_typing_pairs.plist +37 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Indentation_Rules.plist +38 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Symbol_List___Indent_Class_Methods.tmPreferences +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Template__cast_typing_pairs.plist +29 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_010_main_______main__.plist +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_030_for_int_loop___fori__.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_Include_header_once_only_guard.plist +28 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___1_begin_________1_end_______beginend__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___endif.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___ifndef__________define__________endif.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___include________Inc__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___pragma_mark___mark__.plist +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_class______class__.plist +24 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_do___while_loop___do__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_fprintf_______.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_if______if__.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_namespace______namespace__.plist +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_printf______printf__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_read_file___readF__.plist +23 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_std____map___map__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_std____vector___v__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_template___typename________template__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Property_Completions.tmPreferences +151 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Property_Value_Completions.tmPreferences +144 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Symbol_List___Group.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Symbol_list.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_Fixed_Position_Bottom_100___wide_IE6.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next___important_CSS_______.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background____color_image_repeat_attachment_position___background__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__attachment___scroll__fixed___background__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__hex___background__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__name___background__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__rgb___background__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____transparent___background__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__image____none___background__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__image____url___background__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__position____position___background__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__repeat____r__r__x__r__y__n__r___background__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border_____size_style_color___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom___size_style_color___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__color___size_style_color___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__style___size_style_color___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__width___size_style_color___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__color___color___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left___size_style_color___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__color___color___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__style___style___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__width___size___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right___size_style_color___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__color___color___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__style___style___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__width___size___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__style___style___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top___size_style_color___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__color___color___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__style___style___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__width___size___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__width___width___border__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_clear___value___clear__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__hex___color__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__name___color__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__rgb___color__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_cursor___type___cursor__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_cursor___url___cursor__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_direction___ltr__rtl___direction__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___block___display__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___common__types___display__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___inline___display__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___table__types___display__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_filter___AlphaImageLoader___for_IE_PNGs_____background__.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_float___left__right__none___float__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font_____style_variant_weight_size__line__height_font___family___font__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font___size_font___font__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__family_____family___font__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__size___size___font__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__style_____normal__italic__oblique___font__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__variant_____normal__small__caps___font__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__weight___weight___font__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_letter__spacing_____length__em___letter__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_letter__spacing_____length__px___letter__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style___type_position_image___list__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__image___url___list__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__position___pos___list__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___asian___list__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___marker__list__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___numeric___list__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___other___list__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___roman__alpha__greek___list__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin___T_R_B_L___margin__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin___V_H___margin__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin_____all___margin__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__bottom___length___margin__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__left___length___margin__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__right___length___margin__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__top___length___margin__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_marker__offset___auto___marker__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_marker__offset___length___marker__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_opacity_____for_Safari___FF_and_IE_____opacity__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_overflow___type___overflow__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____T_R_B_L___padding__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____V_H___padding__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____all___padding__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__bottom___length___margin__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__left___length___margin__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__right___length___margin__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__top___length___margin__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_position___type___position__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_properties_______________.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__align___left__center__right___txt__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__decoration___none__underline__overline__line__through__blink___text__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__indent___length___text__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___color__hex_x_y_blur___text__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___color__rgb_x_y_blur___text__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___none___text__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__transform___capitalize__upper__lower___text__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__transform___none___text__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_vertical__align___type___vertical__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_visibility___type___visibility__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_white__space____normal__pre__nowrap___white__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_word__spacing____length___word__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_word__spacing____normal___word__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_z__index___index___z__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Cucumber_Plain_Text_Feature_Completions.tmPreferences +30 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Scenario.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Steps.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Steps_with_String.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/next_Symbol_List__Method__Constructor.tmPreferences +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_Continue_Block_Comment.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_err_format.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_foreach_reverse.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_if_else.tmSnippet +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_error.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_fatal.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_info.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_trace.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_warn.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_main_with_args.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_out_format.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_catch.tmSnippet +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_catch_finally.tmSnippet +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_finally.tmSnippet +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Changed.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Deleted.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Diff_metadata.plist +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Header.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Inserted.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Range.plist +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Symbol_List___Indent_Ranges.plist +24 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Preferences/next_Disable_spell_checking_in_raw.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Preferences/next_Show_Heading_in_list.tmPreferences +25 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_1.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_2.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_3.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_4.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_5.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Left_Header.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Numbered_item.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Numbered_item_2.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Table_Cell.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Top_Header.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Unnumbered_item.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Unnumbered_item_2.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Completions_HTML_Attributes.tmPreferences +346 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Empty_tag_typing_pairs.plist +26 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Symbol_List___ID.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Tag_Completions.tmPreferences +30 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Tag_preferences.plist +48 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Arrow___arrow__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Backspace___backspace__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Backtab___backtab__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Command___command__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Control___control__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Delete___delete__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_HTML_4_0_Strict.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTL_1_0_Frameset.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_0_Strict.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_0_Transitional.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_1.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Down___down__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Embed_QT_movie___movie__.plist +26 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Enter___enter__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Escape___escape__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_HTML________4_0_Transitional___doctype__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_0_only.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_5_only.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_x.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_6_and_below.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_6_only.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_7__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___NOT_Internet_Explorer.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Input_with_Label.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Left___left__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Option___option__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Return___return__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Right___right__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Select_Box.tmSnippet +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Shift___shift__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Smart_return__indent_for_tag_pairs.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Tab___tab__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Up___up__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Wrap_Selection_In_Tag.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Wrap_in___________________.plist +14 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML_____input__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML_____textarea__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___a_mailto_____.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___base__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___body__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___br_____.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___div__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___form__.plist +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___h1__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___head__.plist +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___link__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___meta__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___nbsp___NonBreakingSpace.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___script__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___script_src_____.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___style__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___table__.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___title__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Indent_Patterns.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Symbol_List.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Typing_Pairs.plist +42 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/next___.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/next_t______f_t.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/next_Bulletin_Board.tmPreferences +24 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/next_Fallback___not_supported__.tmPreferences +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/next_Indentation_Rules.plist +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/next_Typing_Pairs.plist +37 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Indented_Bracketed_Line.plist +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Indented_return.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Object_clone_do.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_clone_do.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Classes.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Class_Methods.tmPreferences +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Classes.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Inner_Class_Methods.tmPreferences +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Inner_Classes.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Method.plist +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_constant_string.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_else_if.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_for___each__.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_import_junit_framework_TestCase__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_method___main__.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_test_case.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Preferences/next_Prototype_Completions.tmPreferences +185 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Ajax_Options.tmSnippet +23 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Create_Class_Alt.tmSnippet +23 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Effect_Options.tmSnippet +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Enum_each___element__.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Enum_each___index__.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next___.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next___function___________.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next______Select_DOM_Element__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_____this__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxError.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSend.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSetup.tmSnippet +28 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSuccess.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajax__hash__.tmSnippet +28 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____get.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getIfModified.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getJSON.tmSnippet +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getScript.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____post.tmSnippet +23 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____trim.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___checked.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___contains____test____.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___disabled.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___empty.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___enabled.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___eq__n__.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___even.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first__child.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first__of__type.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___gt__n__.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___hidden.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last__child.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last__of__type.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___lt__n__.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___not__s__.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__child__n__.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__last__child__n__.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__of__type__n__.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___odd.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___only__child.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___only__of__type.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___parent.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___root.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___visible.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_attr__hash__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_css__hash__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeIn____with_callback.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeOut____with_callback.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeTo____with_callback.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_hide____with_callback.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_load___AHAH__.tmSnippet +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_show____with_callback.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_slideDown____with_callback.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_slideUp____with_callback.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_toggle___show__hide__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_JavaScript_Indent.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Banned.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Class.tmPreferences +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Instance.tmPreferences +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Sub_1.tmPreferences +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Sub_2.tmPreferences +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Get_Elements.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Method.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Method_String.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Value_JS.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_key________key_____value__.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Prototype___proto__.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_for______________________.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_for_________________________faster__.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_function___fun__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_if_____else.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_setTimeout_function.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Beamer_Symbol_List.tmPreferences +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Cite_Completion.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Disable_Smart_Typing_after_Backslashes.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Label_Completion.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Miscellaneous___BibTeX__.tmPreferences +53 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Smart_Typing___Strings__.tmPreferences +65 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Spell_Checking___Disable_for_Comments.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Spell_Checking_in_Strings.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Symbol_list.plist +28 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_TexShop_comments.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Beamer_Overlay_Specification.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Change_Style_of_selected_text.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Displaymath_________.plist +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Gather__ed__.tmSnippet +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Item__description__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Lines_to_list_environment.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Math_mode__________.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_New_Line.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Sub_Paragraph.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Unnumbered_Equation.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_Selection_in_Environment.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_in___left____right.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_selection_in_double_quotes.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___begin____________end____.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___section______section__.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___subsection______sub__.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___subsubsection______ssub__.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Lisp.tmbundle/Snippets/next_____.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Disable_spell_checking_for_raw.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Indent___Raw.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Symbol_List___Heading.plist +23 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Typing_Pairs___Disable___for_Raw.plist +42 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Snippets/next_Hard_linebreak.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Add_Magic_Methods_to_the_Symbol_List.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Completion___includes.tmPreferences +30 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Disable_spellcheck_in_require.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Enable_Spellchecking_for_Docblocks.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Symbols_List___functions.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Continue_Block_Comment.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Include_TextMate_Support_Script.tmSnippet +25 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_class.tmSnippet +26 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_class_var.tmSnippet +23 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_constant_definition.tmSnippet +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_function.tmSnippet +26 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_function_signature.tmSnippet +26 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_header.tmSnippet +30 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_interface.tmSnippet +26 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHP_Error_Catching.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Special___Return_Between_PHP_Tags.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Start_Docblock.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next___GLOBALS________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____COOKIE________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____ENV________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____FILES________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____GET________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____POST________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____REQUEST________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____SERVER________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____SESSION________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_______________php.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_____.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_echo_________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_echo_htmlentities____________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_else_______.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_foreach_________________php_endforeach_____.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_if______________________php_else______________php_endif_____.tmSnippet +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_if______________________php_endif_____.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_class______.tmSnippet +27 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_define_____.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_defined_____.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_do_while_____.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_echo____.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_else_____.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_elseif_____.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_for_____.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_foreach_____.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_function_xx_____.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if_____.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if______a____b__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if______else_____.tmSnippet +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_include_____.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_include_once_____.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_new_array_____.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_require_____.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_require_once_____.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return_FALSE__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return_TRUE__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return___retVal__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_switch_____.tmSnippet +24 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_switch______case__.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_try___________catch__________________.tmSnippet +23 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_while_____.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl HTML-Template.tmbundle/Snippets/next_If__Else.tmSnippet +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl Template Toolkit.tmbundle/Preferences/next_Filename_Settings.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_if__else___ife__.plist +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_if__elsif__else___ifee__.plist +23 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_one__line___unless__.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_one__line___xif__.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Function___sub__.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Loop_one__line___xforeach__.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Loop_one__line___xwhile__.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_hash_pointer.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_draw___se__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_float_______float______.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_float___float__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_int_______int______.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_int___int__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_opengl___gl__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_setup___se__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_size___size__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_string_______string______.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_string___str__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_void_method___void__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Symbol_List.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Typing_Pairs.plist +50 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/next_Symbol_List.tmPreferences +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/next_Symbol_List___Hide_Decorator.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_Class_Def___Insert_________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_Function___Insert_________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_String___Insert___________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Class.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Function.tmSnippet +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Method.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Property.tmSnippet +25 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Else.tmSnippet +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Else__Finally.tmSnippet +23 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Finally.tmSnippet +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_if___name____________main____.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Preferences/next_Symbol_List___Behaviour.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Preferences/next_Symbol_List___Example.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Custom_Matcher.tmSnippet +39 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Require_spec_helper.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Set_Controller_for_Spec.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_____.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_eql.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_not_____.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_not_eql.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Preferences/next_Template___ERB__.tmPreferences +48 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Preferences/next_Template___Haml__.tmPreferences +48 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_180_rails_form_tag.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_binary_column.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_boolean_column.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_controller_class.tmSnippet +25 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_date_column.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_datetime_column.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_decimal_column.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_float_column.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_functional_test_class.tmSnippet +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_integer_column.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_lock_version_column.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_references_column.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_string_column.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_text_column.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_time_column.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_timestamp_column.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_timestamps_columns.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Create_Column_Continue___mccc__.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Create_Column___mcc__.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Drop_Create_Table___mdct__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Remove_and_Add_Column___mrac__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_RAILS_DEFAULT_LOGGER_debug___rdb__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Table_column__s___rename.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Test_Assert_Redirected_To___art__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Test_Assert_Response___are__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next___3C_____Fixtures_identify____3Asymbol_______3E.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next___LABEL.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert__var____assigns____3Avar____.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___nested_path__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___nested_path_plural__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___path__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___path_plural__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_belongs_to___bt__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_create____resource.tmSnippet +30 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_get_request.tmSnippet +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_post_request.tmSnippet +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find____3Aall__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find____3Afirst__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find__id__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_for_loop_erb.tmSnippet +23 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_check_box.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_checkbox.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_file_field.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_file_field_2.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_hidden_field.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_hidden_field_2.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_label.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_label_2.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_password_field.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_password_field_2.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_radio_box.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_radio_box_2.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_submit.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_submit_2.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_area.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_area_2.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_field.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_field_2.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_with_errors.tmSnippet +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_and_belongs_to_many___habtm__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___dependent________destroy.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___hm__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___through__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_one___ho__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___nested_path__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___nested_path_plural__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___path__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___path_plural__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to_model.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_map______3Asym_proc__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_named_scope_lambda.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_hide_____2Aids__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_insert_html___position___id___partial__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_replace___id___partial__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_replace_html___id___partial__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_show_____2Aids__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_toggle_____2Aids__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_visual_effect___effect___id__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_flash.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_params.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_session.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___nested_path__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___nested_path_plural__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___path__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___path_plural__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___action________ra__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___action__layout_____ral__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___file_____rf__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___file__use_full_path_____rfu__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline_____ri__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline__locals_____ril__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline__type_____rit__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___layout_____rl__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___nothing_____rn__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___nothing__status_____rns__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial_____rp__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__collection_____rpc__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__locals_____rpl__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__object_____rpo__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__status_____rps__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text_____rt__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__layout____3Etrue_____rtlt__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__layout_____rtl__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__status_____rts__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___update__.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_respond_to___html__.tmSnippet +21 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_returning_do___7Cvariable__7C___E2__80__A6_end.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_binary___tcbi__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_boolean___tcb__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_date___tcda__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_datetime___tcdt__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_decimal___tcd__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_float___tcf__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_integer___tci__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_lock_version___tcl__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_references___tcr__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_rename___tre__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_string___tcs__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_text___tct__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_time___tcti__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_timestamp___tcts__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_timestamps___tctss__.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_acceptance_of_if.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_associated___va__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_associated_if___vaif__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_confirmation_of___vc__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_confirmation_of_if___vcif__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_exclusion_of___ve__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_exclusion_of_if___veif__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_format_of_if.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_inclusion_of_if.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_length_of___vl__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_length_of_if.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_numericality_of_if.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_presence_of___vp__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_presence_of_if___vpif___2.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_uniqueness_of___vu__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_uniqueness_of_if___vuif__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_verify____redirect___verify__.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_verify___verify__.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_delete.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_get.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_post.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_put.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Block_typing_pairs.plist +42 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Completion___ENV___________variables.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Completion___require_strings.tmPreferences +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Symbo_List___Method.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Symbol_List___No_Function_Call.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_060_ruby_if_else.plist +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_070_ruby_if.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_080_ruby_case.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Add_____________Marker.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Array_new__10________i____________Arr__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Benchmark_bmbm_______do____end.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Dir__________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Dir_glob___________do___file______end____Dir__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_foreach____________do___line______end____File__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_open________________file________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_read__________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Hash_new______hash___key___hash__key_______________Has__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Insert_ERb__s______________or_______________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Marshal_dump__obj___file______Md__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Marshal_load__obj______Ml__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_PStore_new________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_RDoc_documentation_block.tmSnippet +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Wrap_in_Begin________Rescue________End.plist +23 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_YAML_dump_______file______Yd____.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_YAML_load__file______Yl____.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_______usr__local__bin__ruby___w.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next___yields___RDoc_comment.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_alias_method_______am__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_all________e____________all__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_any________e____________any__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_application_code_______app__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert__________as__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_in_delta__________asid__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_instance_of__________asio__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_kind_of__________asko__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_match__________asm__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nil__________asn__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_no_match__________asnm__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_equal__________asne__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_nil__________asnn__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_same__________asns__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nothing_raised___________________asnr__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nothing_thrown_____________asnt__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_operator__________aso__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_raise___________________asr__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_respond_to__________asrt__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_same__________ass__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_send__________ass__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_throws___________________ast__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_accessor_______rw__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_reader_______r__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_writer_______w__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______DelegateClass____initialize____end____class__.plist +24 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______ParentClass____initialize____end.plist +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______Struct____initialize____end.plist +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______Test____Unit____TestCase____end____tc__.plist +24 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class______self____end.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____end____cla__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____initialize____end.plist +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____instance_methods____undef____initialize____end____class__.plist +30 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_from_name________clafn__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_classify______e____________clas__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_collect______e____________col__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_deep_copy__________dee__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_delegator______defd__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_delegators______defds__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_end.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_method_missing____end____mm__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_self____end____defs__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_test_____end____t__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_delete_if______e____________deli__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_detect______e____________det__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_directory____.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_do___obj______end___doo__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_downto__0________n____________dow__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each______e____________ea__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_byte______byte____________eab__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_char______chr____________eac____.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_cons____________group____________eac____.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_index______i____________eai__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_key______key____________eak__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_line______line____________eal__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_pair______name___val____________eap__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_slice______group____________eas__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_value______val____________eav__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_with_index______e___i____________eawi__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_elsif____.tmSnippet +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_embed_string_variable.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_extend_Forwardable____Forw__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_fetch__name________key____________fet__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_fill__range________i____________fil__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_find______e____________fin__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_find_all______e____________fina__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_flatten_once____fla__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_flunk__________fl__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_grep____pattern__________match____________gre__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_gsub________________match____________gsu__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_hash_pair_______.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_hash_pointer.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_include_Comparable_______Comp__.plist +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_include_Enumerable_______Enum__.plist +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_inject__init________mem___var____________inj__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_lambda______args____________lam__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_loop_________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_map______e____________map__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_map_with_index______e___i____________mapwi__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_max______a___b____________max__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_min______a___b____________min__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____ClassMethods____end.plist +29 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____end.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____module_function____end.plist +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_namespace______do____end.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_open____path__or__url_______w_____do___doc______end___ope__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_open_yield_block_______.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_option_parse_____________optp__.plist +43 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_partition______e____________par__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_path_from_here________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_randomize____ran__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_reject______e____________rej__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require___________req__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require___tc____________ts__.plist +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require_gem_______.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_results_report_______________.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_reverse_each______e____________rea__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_scan________________match____________sca__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_select______e____________sel__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_singleton_class____.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sort______a___b____________sor__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sort_by______e____________sorb__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_step__2________e____________ste__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sub________________match____________sub__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_task___task_name__________dependent_____tasks___do____end.tmSnippet +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_times______n____________tim__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_transaction_________do____end.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_unix_filter______uni__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_unless___unless__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_until_____end.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_upto__1_0__0_0________n____________upt__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_usage_if________usai__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_usage_unless________usau__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_while_____end.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_xmlread______.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_xpath_______________.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_zip__enums________row____________zip__.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_DynamicForward___df__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_Host___host__.tmSnippet +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_IdentityFile___idf__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_LocalForward___lf__.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Snippets/next_Try__Catch__Finally.tmSnippet +27 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_______usr__bin__env_____env__.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_case____esac___case__.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_elif______elif__.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_for________in________done___forin__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_for_____done___for__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_here_document___here__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_if_____then___if__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_until__________done__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_while__________done__.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Disable_spell_checking_for_all.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Enable_spell_checking_for_strings.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_String__comment_typing_pairs.plist +42 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Symbol_list.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Continue_line_comment.plist +35 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Escaped_Quote_Pair_____________.plist +14 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Escaped_Single_Quote_Pair_____________.plist +14 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Frame_text.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next___n.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Bold.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Italic.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Underline.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Spell_checking.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_010_Copyright.plist +14 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_bullet.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_light_bullet.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_star_bullet.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Insert_ISO_date.plist +14 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Lorem_ipsum.plist +14 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Smart_Pairs___Regex_Character_Class__.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Spell_Checking___Disable_for_CamelCase_Words.tmPreferences +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Style___Separator.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Style___Separator____Release_Notes.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/next_Disable_Spell_Check_in_Raw.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/next_Symbol_List___Heading.plist +29 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Block_Quotes.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Class_and_Id.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Color_2.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Convert_Tabs_To_Table.plist +14 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_1.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_2.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_3.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_4.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_5.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_6.tmSnippet +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Linked_Image.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___enum.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___exception.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___function.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___senum.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___service.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___struct.tmPreferences +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Preferences/next_Symbol_List___Templates.plist +19 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_Smart_return__indent_for_tag_pairs.plist +18 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_XML_Processing_Instruction.tmSnippet +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_long_attribute_tag.plist +17 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_long_tag.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_short_tag.plist +16 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Snippets/next_line___.tmSnippet +19 -0
- data/plugins/tree/spec/spec_helper.rb +1 -1
- metadata +915 -46
- data/lib/redcar/jvm_options_probe.rb +0 -33
- data/plugins/application/icons/redcar-splash.png +0 -0
- data/plugins/swt/lib/swt.rb +0 -192
- data/plugins/swt/lib/swt/cucumber_runner.rb +0 -23
- data/plugins/swt/lib/swt/event_loop.rb +0 -30
- data/plugins/swt/plugin.rb +0 -8
@@ -11,14 +11,13 @@ require File.dirname(__FILE__) + '/../vendor/java-mateview'
|
|
11
11
|
module Redcar
|
12
12
|
class EditViewSWT
|
13
13
|
include Redcar::Observable
|
14
|
-
|
14
|
+
|
15
15
|
def self.start
|
16
|
-
|
17
|
-
|
18
|
-
end
|
16
|
+
gui = ApplicationSWT.gui
|
17
|
+
gui.register_controllers(Redcar::EditTab => EditViewSWT::Tab)
|
19
18
|
load_textmate_assets
|
20
19
|
end
|
21
|
-
|
20
|
+
|
22
21
|
def self.load_textmate_assets
|
23
22
|
s = Time.now
|
24
23
|
load_textmate_assets_from_dir(Redcar.root + "/plugins/textmate/vendor/redcar-bundles")
|
@@ -29,12 +28,12 @@ module Redcar
|
|
29
28
|
puts "took #{Time.now - s}s to load textmate assets"
|
30
29
|
EditView.themes.unshift(*JavaMateView::ThemeManager.themes.to_a.map {|th| th.name })
|
31
30
|
end
|
32
|
-
|
31
|
+
|
33
32
|
def self.load_textmate_assets_from_dir(dir)
|
34
33
|
JavaMateView::Bundle.load_bundles(dir)
|
35
34
|
JavaMateView::ThemeManager.load_themes(dir)
|
36
35
|
end
|
37
|
-
|
36
|
+
|
38
37
|
attr_reader :mate_text, :widget, :model
|
39
38
|
|
40
39
|
def initialize(model, parent, options={})
|
@@ -58,61 +57,61 @@ module Redcar
|
|
58
57
|
@model.set_grammar(new_grammar)
|
59
58
|
end
|
60
59
|
end
|
61
|
-
|
60
|
+
|
62
61
|
def create_mate_text
|
63
62
|
@mate_text = JavaMateView::MateText.new(@parent, !!@options[:single_line])
|
64
63
|
@mate_text.set_font(EditView.font, EditView.font_size)
|
65
|
-
|
64
|
+
|
66
65
|
@model.controller = self
|
67
66
|
end
|
68
|
-
|
67
|
+
|
69
68
|
def create_undo_manager
|
70
69
|
@undo_manager = JFace::Text::TextViewerUndoManager.new(100)
|
71
70
|
@undo_manager.connect(@mate_text.viewer)
|
72
71
|
end
|
73
|
-
|
72
|
+
|
74
73
|
def undo
|
75
74
|
@undo_manager.undo
|
76
75
|
EditView.undo_sensitivity.recompute
|
77
76
|
EditView.redo_sensitivity.recompute
|
78
77
|
end
|
79
|
-
|
78
|
+
|
80
79
|
def undoable?
|
81
80
|
@undo_manager.undoable
|
82
81
|
end
|
83
|
-
|
82
|
+
|
84
83
|
def redo
|
85
84
|
@undo_manager.redo
|
86
85
|
EditView.undo_sensitivity.recompute
|
87
86
|
EditView.redo_sensitivity.recompute
|
88
87
|
end
|
89
|
-
|
88
|
+
|
90
89
|
def redoable?
|
91
90
|
@undo_manager.redoable
|
92
91
|
end
|
93
|
-
|
92
|
+
|
94
93
|
def reset_undo
|
95
94
|
@undo_manager.reset
|
96
95
|
end
|
97
|
-
|
96
|
+
|
98
97
|
def compound
|
99
98
|
begin_compound
|
100
99
|
yield
|
101
100
|
end_compound
|
102
101
|
end
|
103
|
-
|
102
|
+
|
104
103
|
def begin_compound
|
105
104
|
@undo_manager.begin_compound_change
|
106
105
|
end
|
107
|
-
|
106
|
+
|
108
107
|
def end_compound
|
109
108
|
@undo_manager.end_compound_change
|
110
109
|
end
|
111
|
-
|
110
|
+
|
112
111
|
def create_document
|
113
112
|
@document = EditViewSWT::Document.new(@model.document, @mate_text.mate_document)
|
114
113
|
@model.document.controller = @document
|
115
|
-
h1 = @model.document.add_listener(:before => :new_mirror,
|
114
|
+
h1 = @model.document.add_listener(:before => :new_mirror,
|
116
115
|
&method(:update_grammar))
|
117
116
|
h2 = @model.add_listener(:grammar_changed, &method(:model_grammar_changed))
|
118
117
|
h3 = @model.add_listener(:focussed, &method(:focus))
|
@@ -147,32 +146,21 @@ module Redcar
|
|
147
146
|
@mate_text.set_margin_column(-1)
|
148
147
|
end
|
149
148
|
end
|
150
|
-
@mate_text.getTextWidget.addMouseListener(MouseListener.new(self))
|
151
149
|
@mate_text.getTextWidget.addFocusListener(FocusListener.new(self))
|
152
150
|
@mate_text.getTextWidget.addVerifyListener(VerifyListener.new(@model.document, self))
|
153
151
|
@mate_text.getTextWidget.addModifyListener(ModifyListener.new(@model.document, self))
|
154
152
|
@mate_text.get_control.add_verify_key_listener(VerifyKeyListener.new(self))
|
155
153
|
@mate_text.get_control.add_key_listener(KeyListener.new(self))
|
156
|
-
@handlers << [@model.document, h1] << [@model, h2] << [@model, h3] << [@model, h4] <<
|
154
|
+
@handlers << [@model.document, h1] << [@model, h2] << [@model, h3] << [@model, h4] <<
|
157
155
|
[@model, h5] << [@model, h6] << [@model, h7] << [@model, h8] <<
|
158
156
|
[@model, h9] << [@model, h10] << [@model, h11]
|
159
157
|
end
|
160
|
-
|
161
|
-
def right_click(mouse_event)
|
162
|
-
if @model.document.controller and @model.document.controller.respond_to?(:right_click)
|
163
|
-
location = ApplicationSWT.display.get_cursor_location
|
164
|
-
#offset = @mate_text.parser.styledText.get_offset_at_location(location)
|
165
|
-
Redcar.safely("right click on edit view") do
|
166
|
-
@model.document.controller.right_click(@model)
|
167
|
-
end
|
168
|
-
end
|
169
|
-
end
|
170
|
-
|
158
|
+
|
171
159
|
class VerifyKeyListener
|
172
160
|
def initialize(edit_view_swt)
|
173
161
|
@edit_view_swt = edit_view_swt
|
174
162
|
end
|
175
|
-
|
163
|
+
|
176
164
|
def verify_key(key_event)
|
177
165
|
if @edit_view_swt.model.document.block_selection_mode?
|
178
166
|
@edit_view_swt.begin_compound
|
@@ -192,88 +180,88 @@ module Redcar
|
|
192
180
|
end
|
193
181
|
end
|
194
182
|
end
|
195
|
-
|
183
|
+
|
196
184
|
class KeyListener
|
197
185
|
def initialize(edit_view_swt)
|
198
186
|
@edit_view_swt = edit_view_swt
|
199
187
|
end
|
200
|
-
|
188
|
+
|
201
189
|
def key_pressed(_)
|
202
190
|
@was_in_block_selection = @edit_view_swt.model.document.block_selection_mode?
|
203
191
|
end
|
204
|
-
|
192
|
+
|
205
193
|
def key_released(_)
|
206
194
|
if @was_in_block_selection
|
207
195
|
@edit_view_swt.end_compound
|
208
196
|
end
|
209
197
|
end
|
210
198
|
end
|
211
|
-
|
199
|
+
|
212
200
|
def delay_parsing
|
213
201
|
mate_text.delay_parsing { yield }
|
214
202
|
end
|
215
|
-
|
203
|
+
|
216
204
|
def swt_focus_gained
|
217
205
|
EditView.focussed_edit_view = @model
|
218
206
|
@model.focus
|
219
207
|
end
|
220
|
-
|
208
|
+
|
221
209
|
def swt_focus_lost
|
222
210
|
EditView.focussed_edit_view = nil
|
223
211
|
end
|
224
|
-
|
212
|
+
|
225
213
|
def focus
|
226
214
|
@mate_text.get_control.set_focus
|
227
215
|
end
|
228
|
-
|
216
|
+
|
229
217
|
def is_current?
|
230
218
|
EditView.current == @mate_text.get_control
|
231
219
|
end
|
232
|
-
|
220
|
+
|
233
221
|
def has_focus?
|
234
222
|
focus_control = ApplicationSWT.display.get_focus_control
|
235
223
|
focus_control == @mate_text.get_control
|
236
224
|
end
|
237
|
-
|
225
|
+
|
238
226
|
def exists?
|
239
227
|
@mate_text.get_control and !@mate_text.get_control.disposed
|
240
228
|
end
|
241
|
-
|
229
|
+
|
242
230
|
def attach_listeners
|
243
231
|
# h = @document.add_listener(:set_text, &method(:reparse))
|
244
232
|
# @handlers << [@document, h]
|
245
233
|
@mate_text.get_text_widget.add_word_movement_listener(WordMoveListener.new(self))
|
246
234
|
end
|
247
|
-
|
235
|
+
|
248
236
|
def reparse
|
249
237
|
@mate_text.parser.parse_range(0, @mate_text.parser.styledText.get_line_count-1)
|
250
238
|
end
|
251
|
-
|
239
|
+
|
252
240
|
def cursor_offset=(offset)
|
253
241
|
@mate_text.get_text_widget.set_caret_offset(offset)
|
254
242
|
end
|
255
|
-
|
243
|
+
|
256
244
|
def cursor_offset
|
257
245
|
@mate_text.get_text_widget.get_caret_offset
|
258
246
|
end
|
259
|
-
|
247
|
+
|
260
248
|
def scroll_to_line(line_index)
|
261
249
|
@mate_text.parser.parserScheduler.last_visible_line_changed(line_index + 100)
|
262
250
|
@mate_text.viewer.set_top_index(line_index)
|
263
251
|
end
|
264
|
-
|
252
|
+
|
265
253
|
def model_grammar_changed(name)
|
266
254
|
@mate_text.set_grammar_by_name(name)
|
267
255
|
end
|
268
|
-
|
256
|
+
|
269
257
|
def smallest_visible_line
|
270
258
|
@mate_text.viewer.get_top_index
|
271
259
|
end
|
272
|
-
|
260
|
+
|
273
261
|
def biggest_visible_line
|
274
262
|
@mate_text.viewer.get_bottom_index
|
275
263
|
end
|
276
|
-
|
264
|
+
|
277
265
|
def ensure_visible(offset)
|
278
266
|
line = @document.line_at_offset(offset)
|
279
267
|
line_start_offset = @document.offset_at_line(line)
|
@@ -286,7 +274,7 @@ module Redcar
|
|
286
274
|
@mate_text.viewer.reveal_range(offset, 1)
|
287
275
|
end
|
288
276
|
end
|
289
|
-
|
277
|
+
|
290
278
|
def update_grammar(new_mirror)
|
291
279
|
title = new_mirror.title
|
292
280
|
contents = new_mirror.read
|
@@ -298,41 +286,25 @@ module Redcar
|
|
298
286
|
grammar_name ||= "Plain Text"
|
299
287
|
@model.set_grammar(grammar_name)
|
300
288
|
end
|
301
|
-
|
289
|
+
|
302
290
|
STRIP_KEYS = {
|
303
291
|
:cut => 120|Swt::SWT::MOD1,
|
304
292
|
:copy => 99|Swt::SWT::MOD1,
|
305
293
|
:paste => 118|Swt::SWT::MOD1
|
306
294
|
}
|
307
|
-
|
295
|
+
|
308
296
|
def remove_control_keybindings
|
309
297
|
styled_text = @mate_text.get_text_widget
|
310
298
|
STRIP_KEYS.each do |_, key|
|
311
299
|
styled_text.set_key_binding(key, Swt::SWT::NULL)
|
312
300
|
end
|
313
301
|
end
|
314
|
-
|
302
|
+
|
315
303
|
def dispose
|
316
304
|
@handlers.each {|obj, h| obj.remove_listener(h) }
|
317
305
|
@handlers.clear
|
318
306
|
end
|
319
|
-
|
320
|
-
class MouseListener
|
321
|
-
def initialize(obj)
|
322
|
-
@obj = obj
|
323
|
-
end
|
324
|
-
|
325
|
-
def mouse_double_click(_); end
|
326
|
-
def mouse_up(_)
|
327
|
-
end
|
328
|
-
|
329
|
-
def mouse_down(e)
|
330
|
-
if e.button == 3
|
331
|
-
@obj.right_click(e)
|
332
|
-
end
|
333
|
-
end
|
334
|
-
end
|
335
|
-
|
307
|
+
|
336
308
|
class FocusListener
|
337
309
|
def initialize(obj)
|
338
310
|
@obj = obj
|
@@ -346,22 +318,22 @@ module Redcar
|
|
346
318
|
@obj.swt_focus_lost
|
347
319
|
end
|
348
320
|
end
|
349
|
-
|
321
|
+
|
350
322
|
class VerifyListener
|
351
323
|
def initialize(document, obj)
|
352
324
|
@document, @obj = document, obj
|
353
325
|
end
|
354
|
-
|
326
|
+
|
355
327
|
def verify_text(e)
|
356
328
|
@document.verify_text(e.start, e.end, e.text)
|
357
329
|
end
|
358
330
|
end
|
359
|
-
|
331
|
+
|
360
332
|
class ModifyListener
|
361
333
|
def initialize(document, obj)
|
362
334
|
@document, @obj = document, obj
|
363
335
|
end
|
364
|
-
|
336
|
+
|
365
337
|
def modify_text(e)
|
366
338
|
@document.modify_text
|
367
339
|
end
|
@@ -4,71 +4,56 @@ module Redcar
|
|
4
4
|
class Document
|
5
5
|
include Redcar::Observable
|
6
6
|
attr_reader :jface_document
|
7
|
-
|
7
|
+
|
8
8
|
def initialize(model, swt_mate_document)
|
9
9
|
@model = model
|
10
10
|
@swt_mate_document = swt_mate_document
|
11
11
|
@jface_document = swt_mate_document.mateText.get_document
|
12
12
|
end
|
13
|
-
|
14
|
-
def right_click(edit_view)
|
15
|
-
menu = Menu.new
|
16
|
-
Redcar.plugin_manager.objects_implementing(:edit_view_context_menus).each do |object|
|
17
|
-
case object.method(:edit_view_context_menus).arity
|
18
|
-
when 0
|
19
|
-
menu.merge(object.edit_view_context_menus)
|
20
|
-
when 1
|
21
|
-
menu.merge(object.edit_view_context_menus(edit_view))
|
22
|
-
else
|
23
|
-
puts("Invalid edit_view_context_menus hook detected in "+object.class.name)
|
24
|
-
end
|
25
|
-
end
|
26
|
-
Application::Dialog.popup_menu(menu, :pointer)
|
27
|
-
end
|
28
|
-
|
13
|
+
|
29
14
|
def attach_modification_listeners
|
30
15
|
jface_document.add_document_listener(DocumentListener.new(@model))
|
31
16
|
styledText.add_selection_listener(SelectionListener.new(@model))
|
32
17
|
styledText.add_caret_listener(CaretListener.new(@model))
|
33
18
|
end
|
34
|
-
|
19
|
+
|
35
20
|
def single_line?
|
36
21
|
@swt_mate_document.mateText.isSingleLine
|
37
22
|
end
|
38
|
-
|
23
|
+
|
39
24
|
def to_s
|
40
25
|
jface_document.get
|
41
26
|
end
|
42
|
-
|
27
|
+
|
43
28
|
def length
|
44
29
|
jface_document.length
|
45
30
|
end
|
46
|
-
|
31
|
+
|
47
32
|
def line_count
|
48
33
|
jface_document.get_number_of_lines
|
49
34
|
end
|
50
|
-
|
35
|
+
|
51
36
|
def get_line_delimiter
|
52
37
|
styledText.get_line_delimiter
|
53
38
|
end
|
54
|
-
|
39
|
+
|
55
40
|
def line_at_offset(offset)
|
56
41
|
jface_document.get_line_of_offset(offset)
|
57
42
|
end
|
58
|
-
|
43
|
+
|
59
44
|
def offset_at_line(line_ix)
|
60
45
|
jface_document.get_line_offset(line_ix)
|
61
46
|
end
|
62
|
-
|
47
|
+
|
63
48
|
def get_line(line_ix)
|
64
49
|
line_info = jface_document.get_line_information(line_ix)
|
65
50
|
jface_document.get(line_info.offset, line_info.length)
|
66
51
|
end
|
67
|
-
|
52
|
+
|
68
53
|
def get_range(start, length)
|
69
54
|
jface_document.get(start, length)
|
70
55
|
end
|
71
|
-
|
56
|
+
|
72
57
|
def replace(offset, length, text)
|
73
58
|
@model.verify_text(offset, offset+length, text)
|
74
59
|
jface_document.replace(offset, length, text)
|
@@ -77,46 +62,46 @@ module Redcar
|
|
77
62
|
#end
|
78
63
|
@model.modify_text
|
79
64
|
end
|
80
|
-
|
65
|
+
|
81
66
|
def text=(text)
|
82
67
|
@model.verify_text(0, length, text)
|
83
68
|
jface_document.set(text)
|
84
69
|
@model.modify_text
|
85
70
|
notify_listeners(:set_text)
|
86
71
|
end
|
87
|
-
|
72
|
+
|
88
73
|
def cursor_offset
|
89
74
|
styledText.get_caret_offset
|
90
75
|
end
|
91
|
-
|
76
|
+
|
92
77
|
def selection_offset
|
93
78
|
range = styledText.get_selection_range
|
94
79
|
range.x == cursor_offset ? range.x + range.y : range.x
|
95
80
|
end
|
96
|
-
|
81
|
+
|
97
82
|
def cursor_offset=(offset)
|
98
83
|
styledText.set_caret_offset(offset)
|
99
84
|
end
|
100
|
-
|
85
|
+
|
101
86
|
def selection_range
|
102
87
|
range = styledText.get_selection_range
|
103
88
|
range.x...(range.x + range.y)
|
104
89
|
end
|
105
|
-
|
90
|
+
|
106
91
|
def selection_ranges
|
107
92
|
ranges = styledText.get_selection_ranges
|
108
93
|
ranges.to_a.each_slice(2).map do |from, length|
|
109
94
|
from...(from + length)
|
110
95
|
end
|
111
96
|
end
|
112
|
-
|
97
|
+
|
113
98
|
def set_selection_range(cursor_offset, selection_offset)
|
114
99
|
if block_selection_mode?
|
115
100
|
start_offset, end_offset = *[cursor_offset, selection_offset].sort
|
116
101
|
start_location = styledText.getLocationAtOffset(start_offset)
|
117
102
|
end_location = styledText.getLocationAtOffset(end_offset)
|
118
103
|
styledText.set_block_selection_bounds(
|
119
|
-
start_location.x,
|
104
|
+
start_location.x,
|
120
105
|
start_location.y,
|
121
106
|
end_location.x - start_location.x,
|
122
107
|
end_location.y - start_location.y + styledText.get_line_height
|
@@ -126,7 +111,7 @@ module Redcar
|
|
126
111
|
end
|
127
112
|
@model.selection_range_changed(cursor_offset, selection_offset)
|
128
113
|
end
|
129
|
-
|
114
|
+
|
130
115
|
@markStruct ||= Struct.new(:location, :category) # save away the parent class
|
131
116
|
class Mark < @markStruct
|
132
117
|
def get_offset; location.get_offset; end
|
@@ -134,7 +119,7 @@ module Redcar
|
|
134
119
|
def get_line_offset; location.get_line_offset; end
|
135
120
|
def inspect; "<Mark #{get_line}:#{get_line_offset} (#{get_offset})>"; end
|
136
121
|
end
|
137
|
-
|
122
|
+
|
138
123
|
def create_mark(offset, gravity)
|
139
124
|
line = line_at_offset(offset)
|
140
125
|
line_offset = offset - offset_at_line(line)
|
@@ -148,37 +133,37 @@ module Redcar
|
|
148
133
|
@swt_mate_document.add_text_location(category, location)
|
149
134
|
Mark.new(location, category)
|
150
135
|
end
|
151
|
-
|
136
|
+
|
152
137
|
def delete_mark(mark)
|
153
138
|
@swt_mate_document.remove_text_location(mark.category, mark.location)
|
154
139
|
end
|
155
|
-
|
140
|
+
|
156
141
|
def block_selection_mode?
|
157
142
|
styledText.get_block_selection
|
158
143
|
end
|
159
|
-
|
144
|
+
|
160
145
|
def block_selection_mode=(bool)
|
161
146
|
styledText.set_block_selection(bool)
|
162
147
|
end
|
163
|
-
|
148
|
+
|
164
149
|
def styledText
|
165
150
|
@swt_mate_document.mateText.getControl
|
166
151
|
end
|
167
|
-
|
152
|
+
|
168
153
|
def scope_at(line, line_offset)
|
169
154
|
@swt_mate_document.mateText.scope_at(line, line_offset)
|
170
155
|
end
|
171
|
-
|
156
|
+
|
172
157
|
class CaretListener
|
173
158
|
def initialize(model)
|
174
159
|
@model = model
|
175
160
|
end
|
176
|
-
|
161
|
+
|
177
162
|
def caret_moved(event)
|
178
163
|
@model.cursor_moved(event.caretOffset)
|
179
164
|
end
|
180
165
|
end
|
181
|
-
|
166
|
+
|
182
167
|
class SelectionListener
|
183
168
|
def initialize(model)
|
184
169
|
@model = model
|
@@ -187,21 +172,21 @@ module Redcar
|
|
187
172
|
def widget_default_selected(e)
|
188
173
|
@model.selection_range_changed(e.x, e.y)
|
189
174
|
end
|
190
|
-
|
175
|
+
|
191
176
|
def widget_selected(e)
|
192
177
|
@model.selection_range_changed(e.x, e.y)
|
193
|
-
end
|
178
|
+
end
|
194
179
|
end
|
195
|
-
|
180
|
+
|
196
181
|
class DocumentListener
|
197
182
|
def initialize(model)
|
198
183
|
@model = model
|
199
184
|
end
|
200
|
-
|
185
|
+
|
201
186
|
def document_about_to_be_changed(e)
|
202
187
|
@model.about_to_be_changed(e.offset, e.length, e.text)
|
203
188
|
end
|
204
|
-
|
189
|
+
|
205
190
|
def document_changed(e)
|
206
191
|
@model.changed(e.offset, e.length, e.text)
|
207
192
|
end
|