vim-jar 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +4 -0
- data/.rspec +2 -0
- data/.rvmrc +1 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +44 -0
- data/README.md +25 -0
- data/Rakefile +2 -0
- data/TODO.otl +28 -0
- data/bin/vim-jar +62 -0
- data/bundler/ruby/1.8/bin/autospec +19 -0
- data/bundler/ruby/1.8/bin/autotest +21 -0
- data/bundler/ruby/1.8/bin/htmldiff +19 -0
- data/bundler/ruby/1.8/bin/ldiff +19 -0
- data/bundler/ruby/1.8/bin/multigem +21 -0
- data/bundler/ruby/1.8/bin/multiruby +21 -0
- data/bundler/ruby/1.8/bin/multiruby_setup +21 -0
- data/bundler/ruby/1.8/bin/rdebug +19 -0
- data/bundler/ruby/1.8/bin/rspec +19 -0
- data/bundler/ruby/1.8/bin/unit_diff +21 -0
- data/bundler/ruby/1.8/bin/vim-jar +19 -0
- data/bundler/ruby/1.8/bin/zentest +21 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/History.txt +392 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/Manifest.txt +12 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/README.txt +139 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/Rakefile +38 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/demo/fastmath.rb +27 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/demo/hello.rb +13 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/example.rb +86 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/example2.rb +34 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/lib/inline.rb +878 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/test/test_inline.rb +1051 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/tutorial/example1.rb +63 -0
- data/bundler/ruby/1.8/gems/RubyInline-3.8.6/tutorial/example2.rb +96 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/.autotest +21 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/History.txt +709 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/Manifest.txt +35 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/README.txt +109 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/Rakefile +59 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/articles/Article.css +721 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/articles/getting_started_with_autotest.html +533 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/articles/how_to_use_zentest.txt +393 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/bin/autotest +55 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/bin/multigem +4 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/bin/multiruby +76 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/bin/multiruby_setup +74 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/bin/unit_diff +37 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/bin/zentest +28 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/example.txt +42 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/example1.rb +7 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/example2.rb +15 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/example_dot_autotest.rb +12 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/autotest/autoupdate.rb +26 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/autotest/once.rb +9 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/autotest/rcov.rb +27 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/autotest/restart.rb +11 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/autotest/timestamp.rb +9 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/autotest.rb +658 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/focus.rb +21 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/functional_test_matrix.rb +92 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/multiruby.rb +412 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/unit_diff.rb +274 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/zentest.rb +562 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/lib/zentest_mapping.rb +117 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/test/test_autotest.rb +477 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/test/test_focus.rb +35 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/test/test_unit_diff.rb +343 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/test/test_zentest.rb +566 -0
- data/bundler/ruby/1.8/gems/ZenTest-4.4.0/test/test_zentest_mapping.rb +242 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/AUTHORS +1 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/COPYING +340 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/ChangeLog +101 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/Makefile +8 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/NEWS +32 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/README +39 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/Rakefile +84 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/lib/Makefile +7 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/lib/columnize.rb +247 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/lib/version.rb +3 -0
- data/bundler/ruby/1.8/gems/columnize-0.3.2/test/test-columnize.rb +81 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/.require_paths +3 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/LICENSE +51 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/README +158 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/Rakefile +316 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/doc.rb +42 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/Makefile +157 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/conftest.dSYM/Contents/Info.plist +20 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb.c +373 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb.h +52 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb.o +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_config.h +64 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_core.bundle +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_easy.c +3379 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_easy.h +84 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_easy.o +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_errors.c +637 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_errors.h +129 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_errors.o +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_macros.h +155 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_multi.c +519 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_multi.h +26 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_multi.o +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_postfield.c +522 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_postfield.h +40 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_postfield.o +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_upload.c +80 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_upload.h +30 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/curb_upload.o +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/extconf.rb +177 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/ext/mkmf.log +1088 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/lib/curb.rb +255 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/lib/curb_core.bundle +0 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/lib/curl.rb +2 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/alltests.rb +3 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bug_curb_easy_blocks_ruby_threads.rb +52 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bug_curb_easy_post_with_string_no_content_length_header.rb +83 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bug_instance_post_differs_from_class_post.rb +53 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bug_multi_segfault.rb +14 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bug_postfields_crash.rb +26 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bug_postfields_crash2.rb +57 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bug_require_last_or_segfault.rb +40 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/bugtests.rb +9 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/helper.rb +182 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/mem_check.rb +65 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/require_last_or_segfault_script.rb +36 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/tc_curl_download.rb +32 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/tc_curl_easy.rb +830 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/tc_curl_multi.rb +461 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/tc_curl_postfield.rb +143 -0
- data/bundler/ruby/1.8/gems/curb-0.7.8/tests/unittests.rb +2 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/History.txt +7 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/License.txt +676 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/Manifest.txt +25 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/README.txt +7 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/Rakefile +4 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/config/hoe.rb +71 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/config/requirements.rb +17 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/lib/curl-multi/version.rb +23 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/lib/curl-multi.rb +374 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/lib/uri-extensions.rb +34 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/log/debug.log +0 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/script/destroy +14 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/script/generate +14 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/script/txt2html +74 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/setup.rb +1585 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/tasks/deployment.rake +34 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/tasks/environment.rake +7 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/tasks/website.rake +17 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/test/test_curl-multi.rb +34 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/test/test_helper.rb +2 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/website/index.html +129 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/website/index.txt +65 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/website/stylesheets/screen.css +138 -0
- data/bundler/ruby/1.8/gems/curl-multi-0.2/website/template.rhtml +48 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/ChangeLog +46 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/Install +6 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/README +76 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/Rakefile +116 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/bin/htmldiff +112 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/bin/ldiff +45 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs/array.rb +21 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs/block.rb +51 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs/callbacks.rb +322 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs/change.rb +169 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs/hunk.rb +257 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs/ldiff.rb +226 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs/string.rb +19 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/lib/diff/lcs.rb +1105 -0
- data/bundler/ruby/1.8/gems/diff-lcs-1.1.2/tests/00test.rb +626 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/.gitignore +1 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/CONTRIBUTORS +12 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/LICENSE +20 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/README.markdown +101 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/Rakefile +47 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/base.rb +38 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/dir.rb +114 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/fake/dir.rb +45 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/fake/file.rb +79 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/fake/symlink.rb +32 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/file.rb +282 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/file_system.rb +136 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/fileutils.rb +129 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/safe.rb +11 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/spec_helpers.rb +46 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs/version.rb +9 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/lib/fakefs.rb +3 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/spec/fakefs/spec_helpers_spec.rb +57 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/spec/spec.opts +1 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/spec/spec_helper.rb +3 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/test/fake/file_test.rb +88 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/test/fake/symlink_test.rb +12 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/test/fakefs_test.rb +1251 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/test/file/stat_test.rb +70 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/test/safe_test.rb +42 -0
- data/bundler/ruby/1.8/gems/fakefs-0.2.1/test/verify.rb +27 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/.gitignore +3 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/.rspec +2 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/Gemfile +4 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/Gemfile.lock +31 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/LICENSE +3 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/README.textile +18 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/fuubar.gemspec +23 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/lib/fuubar.rb +69 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/spec/fuubar_spec.rb +150 -0
- data/bundler/ruby/1.8/gems/fuubar-0.0.2/spec/spec_helper.rb +3 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/AUTHORS +1 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/COPYING +340 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/ChangeLog +317 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/NEWS +29 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/README +38 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/Rakefile +166 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/VERSION +1 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/ext/Makefile +157 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/ext/extconf.rb +16 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/ext/trace_nums.bundle +0 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/ext/trace_nums.c +716 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/ext/trace_nums.h +111 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/ext/trace_nums.o +0 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/lib/linecache.rb +399 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/lib/trace_nums.bundle +0 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/lib/tracelines.rb +47 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/begin1.rb +3 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/begin2.rb +3 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/begin3.rb +6 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/block1.rb +7 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/block2.rb +4 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/case1.rb +6 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/case2.rb +5 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/case3.rb +5 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/case4.rb +4 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/case5.rb +10 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/class1.rb +5 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/comments1.rb +6 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/def1.rb +9 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/each1.rb +3 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/end.rb +3 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/for1.rb +4 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/if1.rb +4 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/if2.rb +4 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/if3.rb +9 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/if4.rb +14 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/if5.rb +7 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/if6.rb +4 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/if7.rb +8 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/match.rb +3 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/match3.rb +5 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/match3a.rb +6 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/data/not-lit.rb +6 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/lnum-diag.rb +130 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/parse-show.rb +14 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/rcov-bug.rb +10 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/short-file +2 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/test-linecache.rb +151 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/test-lnum.rb +36 -0
- data/bundler/ruby/1.8/gems/linecache-0.43/test/test-tracelines.rb +41 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/CHANGES +260 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/Gemfile +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/LICENSE +22 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/README.rdoc +385 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/Rakefile +88 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/VERSION.yml +5 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/adapters/rr_methods.rb +146 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/adapters/rspec.rb +61 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/adapters/test_unit.rb +31 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/blank_slate.rb +17 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/class_instance_method_defined.rb +9 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double.rb +154 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/child_double_definition_create.rb +27 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/double_definition.rb +367 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/double_definition_create.rb +139 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/double_definition_create_blank_slate.rb +26 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/double_injections/any_instance_of.rb +28 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/double_injections/instance.rb +16 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/double_injection/any_instance_of.rb +30 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/double_injection/double_injection_strategy.rb +10 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/double_injection/instance.rb +17 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/implementation/implementation_strategy.rb +10 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/implementation/proxy.rb +60 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/implementation/reimplementation.rb +14 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/implementation/strongly_typed_reimplementation.rb +15 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/strategy.rb +43 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/strategy_methods.rb +53 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/verification/dont_allow.rb +31 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/verification/mock.rb +42 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/verification/stub.rb +43 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_definitions/strategies/verification/verification_strategy.rb +10 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/double_matches.rb +42 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/argument_equality_error.rb +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/double_definition_error.rb +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/double_not_found_error.rb +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/double_order_error.rb +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/rr_error.rb +20 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/spy_verification_errors/double_injection_not_found_error.rb +8 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/spy_verification_errors/invocation_count_error.rb +8 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/spy_verification_errors/spy_verification_error.rb +8 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/subject_does_not_implement_method_error.rb +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/subject_has_different_arity_error.rb +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/errors/times_called_error.rb +6 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/expectations/any_argument_expectation.rb +21 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/expectations/argument_equality_expectation.rb +41 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/expectations/times_called_expectation.rb +57 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/hash_with_object_id_key.rb +46 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/injections/double_injection.rb +213 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/injections/injection.rb +33 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/injections/method_missing_injection.rb +68 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/injections/singleton_method_added_injection.rb +72 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/method_dispatches/base_method_dispatch.rb +84 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/method_dispatches/method_dispatch.rb +59 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/method_dispatches/method_missing_dispatch.rb +61 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/proc_from_block.rb +7 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/recorded_calls.rb +103 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/space.rb +112 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/spy_verification.rb +48 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/spy_verification_proxy.rb +13 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/any_times_matcher.rb +18 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/at_least_matcher.rb +15 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/at_most_matcher.rb +23 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/integer_matcher.rb +19 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/never_matcher.rb +23 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/non_terminal.rb +27 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/proc_matcher.rb +11 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/range_matcher.rb +21 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/terminal.rb +20 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/times_called_matchers/times_called_matcher.rb +44 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/anything.rb +18 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/boolean.rb +23 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/duck_type.rb +32 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/hash_including.rb +29 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/is_a.rb +25 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/numeric.rb +13 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/range.rb +7 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/regexp.rb +7 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers/satisfy.rb +26 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr/wildcard_matchers.rb +158 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/lib/rr.rb +99 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/scratch.rb +118 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/any_instance_of/all_instances_of_spec.rb +12 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/any_instance_of/any_instance_of_spec.rb +47 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/any_instance_of/instance_of_spec.rb +12 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/dont_allow/dont_allow_after_stub_spec.rb +14 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/mock/mock_spec.rb +193 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/proxy/proxy_spec.rb +86 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/spy/spy_spec.rb +49 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/strong/strong_spec.rb +87 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/api/stub/stub_spec.rb +152 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/core_spec_suite.rb +19 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/environment_fixture_setup.rb +8 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/proc_from_block_spec.rb +14 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/adapters/rr_methods_argument_matcher_spec.rb +67 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/adapters/rr_methods_creator_spec.rb +137 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/adapters/rr_methods_space_spec.rb +98 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/adapters/rr_methods_spec_helper.rb +11 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/adapters/rr_methods_times_matcher_spec.rb +13 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/double_definitions/child_double_definition_creator_spec.rb +112 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/double_definitions/double_definition_create_blank_slate_spec.rb +91 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/double_definitions/double_definition_create_spec.rb +443 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/double_injection/double_injection_spec.rb +546 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/double_injection/double_injection_verify_spec.rb +29 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/errors/rr_error_spec.rb +67 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/any_argument_expectation_spec.rb +47 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/anything_argument_equality_expectation_spec.rb +14 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/argument_equality_expectation_spec.rb +135 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/boolean_argument_equality_expectation_spec.rb +34 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/hash_including_argument_equality_expectation_spec.rb +82 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/hash_including_spec.rb +17 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/satisfy_argument_equality_expectation_spec.rb +59 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/satisfy_spec.rb +14 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_any_times_spec.rb +22 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_at_least_spec.rb +37 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_at_most_spec.rb +43 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_helper.rb +15 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_integer_spec.rb +58 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_proc_spec.rb +35 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/expectations/times_called_expectation/times_called_expectation_range_spec.rb +39 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/rspec/invocation_matcher_spec.rb +279 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/rspec/rspec_adapter_spec.rb +63 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/rspec/rspec_backtrace_tweaking_spec.rb +31 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/rspec/rspec_backtrace_tweaking_spec_fixture.rb +11 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/rspec/rspec_usage_spec.rb +86 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/space/hash_with_object_id_key_spec.rb +88 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/space/space_spec.rb +587 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/test_unit/test_helper.rb +7 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/test_unit/test_unit_backtrace_test.rb +36 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/test_unit/test_unit_integration_test.rb +59 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/times_called_matchers/any_times_matcher_spec.rb +47 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/times_called_matchers/at_least_matcher_spec.rb +55 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/times_called_matchers/at_most_matcher_spec.rb +70 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/times_called_matchers/integer_matcher_spec.rb +70 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/times_called_matchers/proc_matcher_spec.rb +55 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/times_called_matchers/range_matcher_spec.rb +76 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/times_called_matchers/times_called_matcher_spec.rb +118 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/wildcard_matchers/anything_spec.rb +24 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/wildcard_matchers/boolean_spec.rb +36 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/wildcard_matchers/duck_type_spec.rb +52 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/wildcard_matchers/is_a_spec.rb +32 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/wildcard_matchers/numeric_spec.rb +32 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/wildcard_matchers/range_spec.rb +35 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr/wildcard_matchers/regexp_spec.rb +43 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rr_spec.rb +28 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/rspec_spec_suite.rb +17 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/spec_helper.rb +37 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/spec_suite.rb +48 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/spy_verification_spec.rb +129 -0
- data/bundler/ruby/1.8/gems/rr-1.0.2/spec/test_unit_spec_suite.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/.document +2 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/.gitignore +7 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/Gemfile +7 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/License.txt +22 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/README.markdown +47 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/Rakefile +16 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/lib/rspec/version.rb +5 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/lib/rspec.rb +4 -0
- data/bundler/ruby/1.8/gems/rspec-2.1.0/rspec.gemspec +29 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/.document +5 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/.gitignore +11 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/.treasure_map.rb +23 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/Gemfile +31 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/Guardfile +5 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/History.markdown +104 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/License.txt +22 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/README.markdown +95 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/Rakefile +71 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/Upgrade.markdown +289 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/autotest/discover.rb +2 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/bin/autospec +13 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/bin/rspec +25 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/cucumber.yml +2 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/README.markdown +19 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/command_line/configure.feature +20 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/command_line/example_name_option.feature +86 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/command_line/exit_status.feature +52 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/command_line/line_number_appended_to_path.feature +106 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/command_line/line_number_option.feature +45 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/command_line/rake_task.feature +68 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/command_line/tag.feature +74 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/configuration/custom_settings.feature +84 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/configuration/fail_fast.feature +77 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/configuration/read_options_from_file.feature +74 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/example_groups/basic_structure.feature +54 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/example_groups/shared_example_group.feature +177 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/filtering/exclusion_filters.feature +115 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/filtering/implicit_filters.feature +166 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/filtering/inclusion_filters.feature +83 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/filtering/run_all_when_everything_filtered.feature +46 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/formatters/custom_formatter.feature +32 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/hooks/around_hooks.feature +320 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/hooks/before_and_after_hooks.feature +432 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/metadata/described_class.feature +17 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/mock_framework_integration/use_flexmock.feature +23 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/mock_framework_integration/use_mocha.feature +23 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/mock_framework_integration/use_rr.feature +23 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/mock_framework_integration/use_rspec.feature +23 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/pending/pending_examples.feature +216 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/spec_files/arbitrary_file_suffix.feature +13 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/step_definitions/additional_cli_steps.rb +11 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/subject/attribute_of_subject.feature +52 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/subject/explicit_subject.feature +62 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/subject/implicit_receiver.feature +29 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/subject/implicit_subject.feature +30 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/features/support/env.rb +1 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/autotest/rspec2.rb +66 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/autorun.rb +2 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/backward_compatibility.rb +48 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/command_line.rb +35 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/command_line_configuration.rb +62 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/configuration.rb +401 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/configuration_options.rb +98 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/deprecation.rb +45 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/drb_command_line.rb +29 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/errors.rb +14 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/example.rb +139 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/example_group.rb +311 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/expecting/with_rspec.rb +11 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/extensions/instance_eval_with_args.rb +39 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/extensions/kernel.rb +5 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/extensions/module_eval_with_args.rb +34 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/extensions/object.rb +14 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/extensions.rb +4 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/base_formatter.rb +162 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/base_text_formatter.rb +151 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/documentation_formatter.rb +71 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/helpers.rb +28 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/html_formatter.rb +351 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/progress_formatter.rb +32 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/snippet_extractor.rb +52 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/formatters/text_mate_formatter.rb +20 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/hooks.rb +134 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/let.rb +101 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/load_path.rb +3 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/metadata.rb +175 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/mocking/with_absolutely_nothing.rb +11 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/mocking/with_flexmock.rb +25 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/mocking/with_mocha.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/mocking/with_rr.rb +25 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/mocking/with_rspec.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/option_parser.rb +122 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/pending.rb +28 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/rake_task.rb +196 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/reporter.rb +79 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/ruby_project.rb +44 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/runner.rb +61 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/shared_example_group.rb +52 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/subject.rb +170 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/version.rb +7 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core/world.rb +102 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/core.rb +62 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/monkey/spork/test_framework/rspec.rb +7 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/lib/rspec/monkey.rb +1 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/rspec-core.gemspec +38 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/script/console +8 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/autotest/failed_results_re_spec.rb +20 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/autotest/rspec_spec.rb +123 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/command_line_configuration_spec.rb +26 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/command_line_spec.rb +134 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/command_line_spec_output.txt +0 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/configuration_options_spec.rb +311 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/configuration_spec.rb +662 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/deprecations_spec.rb +45 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/drb_command_line_spec.rb +159 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/example_group_spec.rb +787 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/example_spec.rb +160 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/base_formatter_spec.rb +36 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/base_text_formatter_spec.rb +160 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/documentation_formatter_spec.rb +66 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/helpers_spec.rb +46 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/html_formatted-1.8.6.html +296 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +285 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/html_formatted-1.8.7.html +296 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/html_formatted-1.9.1.html +303 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/html_formatted-1.9.2.html +303 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/html_formatter_spec.rb +81 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/progress_formatter_spec.rb +31 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/snippet_extractor_spec.rb +18 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/text_mate_formatted-1.8.6.html +296 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +280 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +296 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/text_mate_formatted-1.9.1.html +303 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +303 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/formatters/text_mate_formatter_spec.rb +84 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/hooks_filtering_spec.rb +124 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/hooks_spec.rb +57 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/kernel_extensions_spec.rb +9 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/let_spec.rb +42 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/metadata_spec.rb +285 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/option_parser_spec.rb +39 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/pending_example_spec.rb +226 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/rake_task_spec.rb +141 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/reporter_spec.rb +70 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/resources/a_bar.rb +0 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/resources/a_foo.rb +0 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/resources/a_spec.rb +1 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/resources/custom_example_group_runner.rb +14 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/resources/formatter_specs.rb +54 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/resources/utf8_encoded.rb +8 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/ruby_project_spec.rb +24 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/runner_spec.rb +47 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/shared_example_group_spec.rb +152 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/subject_spec.rb +78 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core/world_spec.rb +174 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/rspec/core_spec.rb +31 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/ruby_forker.rb +13 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/spec_helper.rb +70 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/spec/support/matchers.rb +44 -0
- data/bundler/ruby/1.8/gems/rspec-core-2.1.0/specs.watchr +58 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/.document +5 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/.gitignore +10 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/Gemfile +21 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/History.markdown +54 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/License.txt +22 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/README.markdown +33 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/Rakefile +70 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/Upgrade.markdown +53 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/cucumber.yml +3 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/README.markdown +18 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/expectations/attribute_of_subject.feature +19 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/expectations/customized_message.feature +54 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/expectations/diffing.feature +85 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/expectations/implicit_docstrings.feature +52 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/access_running_example.feature +53 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/be_within.feature +43 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/define_diffable_matcher.feature +27 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/define_matcher.feature +311 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/define_matcher_outside_rspec.feature +38 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/define_matcher_with_fluent_interface.feature +24 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/equality.feature +142 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/exist.feature +44 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/expect_change.feature +65 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/expect_error.feature +44 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/have.feature +103 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/include.feature +136 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/operators.feature +280 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/predicates.feature +128 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/respond_to.feature +78 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/satisfy.feature +31 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/throw_symbol.feature +85 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/matchers/types.feature +114 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/step_definitions/additional_cli_steps.rb +13 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/support/env.rb +1 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/features/test_frameworks/test_unit.feature +46 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/backward_compatibility.rb +16 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/deprecation.rb +36 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/differ.rb +62 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/errors.rb +12 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/extensions/array.rb +7 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/extensions/kernel.rb +52 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/extensions.rb +2 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/fail_with.rb +51 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/handler.rb +50 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations/version.rb +7 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/expectations.rb +39 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/be.rb +222 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/be_close.rb +17 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/be_instance_of.rb +26 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/be_kind_of.rb +26 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/be_within.rb +40 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/block_aliases.rb +18 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/change.rb +184 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/compatibility.rb +14 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/dsl.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/eq.rb +50 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/eql.rb +45 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/equal.rb +53 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/errors.rb +5 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/exist.rb +16 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/extensions/instance_exec.rb +31 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/generated_descriptions.rb +36 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/has.rb +35 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/have.rb +151 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/include.rb +51 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/match.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/match_array.rb +71 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/matcher.rb +161 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/method_missing.rb +9 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/operator_matcher.rb +87 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/pretty.rb +37 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/raise_error.rb +130 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/respond_to.rb +85 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/satisfy.rb +51 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/throw_symbol.rb +121 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers.rb +196 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec-expectations.rb +1 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/rspec-expectations.gemspec +27 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/expectations/differ_spec.rb +96 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/expectations/extensions/kernel_spec.rb +45 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/expectations/fail_with_spec.rb +70 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/expectations/handler_spec.rb +206 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/be_close_spec.rb +22 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/be_instance_of_spec.rb +36 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/be_kind_of_spec.rb +33 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/be_spec.rb +456 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/be_within_spec.rb +64 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/change_spec.rb +409 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/compatibility_spec.rb +28 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/description_generation_spec.rb +160 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/dsl_spec.rb +25 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/eq_spec.rb +38 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/eql_spec.rb +37 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/equal_spec.rb +57 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/exist_spec.rb +65 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/has_spec.rb +81 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/have_spec.rb +411 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/include_spec.rb +341 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/match_array_spec.rb +111 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/match_spec.rb +57 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/matcher_spec.rb +374 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/matchers_spec.rb +51 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/operator_matcher_spec.rb +215 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/raise_error_spec.rb +339 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/respond_to_spec.rb +292 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/satisfy_spec.rb +40 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/rspec/matchers/throw_symbol_spec.rb +113 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/spec_helper.rb +66 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/suite.rb +1 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/spec/support/classes.rb +45 -0
- data/bundler/ruby/1.8/gems/rspec-expectations-2.1.0/specs.watchr +57 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/Rakefile +20 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/Readme.md +48 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/VERSION +1 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/lib/rspec/instafail/rspec_1.rb +27 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/lib/rspec/instafail/rspec_2.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/lib/rspec/instafail.rb +9 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/rspec-instafail.gemspec +51 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/spec/instafail_spec.rb +77 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/spec/rspec_1/Gemfile +2 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/spec/rspec_1/Gemfile.lock +10 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/spec/rspec_1/a_test.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/spec/rspec_2/Gemfile +2 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/spec/rspec_2/Gemfile.lock +20 -0
- data/bundler/ruby/1.8/gems/rspec-instafail-0.1.4/spec/rspec_2/a_test.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/.autotest +7 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/.document +5 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/.gitignore +10 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/Gemfile +18 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/History.markdown +33 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/License.txt +22 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/README.markdown +49 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/Rakefile +70 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/autotest/discover.rb +1 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/cucumber.yml +2 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/README.markdown +30 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/message_expectations/block_local_expectations.feature.pending +55 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/message_expectations/expect_message.feature +94 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/message_expectations/warn_when_expectation_is_set_on_nil.feature +50 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/outside_rspec/configuration.feature +82 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/stubs/simple_return_value.feature +55 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/stubs/stub_chain.feature +44 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/stubs/stub_implementation.feature +26 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/features/support/env.rb +2 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/argument_expectation.rb +48 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/argument_matchers.rb +233 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/error_generator.rb +97 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/errors.rb +10 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/extensions/instance_exec.rb +31 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/extensions/marshal.rb +25 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/extensions/object.rb +3 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/framework.rb +17 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/message_expectation.rb +341 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/method_double.rb +165 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/methods.rb +100 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/mock.rb +79 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/order_group.rb +29 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/proxy.rb +157 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/serialization.rb +26 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/space.rb +28 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/spec_methods.rb +53 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks/version.rb +7 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/rspec/mocks.rb +196 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/lib/spec/mocks.rb +2 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/rspec-mocks.gemspec +25 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/and_yield_spec.rb +114 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/any_number_of_times_spec.rb +36 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/argument_expectation_spec.rb +23 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/at_least_spec.rb +97 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/at_most_spec.rb +93 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/block_return_value_spec.rb +45 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_10260_spec.rb +8 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_10263_spec.rb +27 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_11545_spec.rb +32 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_496_spec.rb +17 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_600_spec.rb +22 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_7611_spec.rb +18 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_7805_spec.rb +22 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_8165_spec.rb +31 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_8302_spec.rb +26 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_830_spec.rb +21 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/bug_report_957_spec.rb +22 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/double_spec.rb +12 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/failing_argument_matchers_spec.rb +96 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/hash_including_matcher_spec.rb +90 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/hash_not_including_matcher_spec.rb +67 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/mock_ordering_spec.rb +94 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/mock_space_spec.rb +54 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/mock_spec.rb +661 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/multiple_return_value_spec.rb +133 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/nil_expectation_warning_spec.rb +63 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/null_object_mock_spec.rb +73 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/once_counts_spec.rb +53 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/options_hash_spec.rb +35 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/partial_mock_spec.rb +155 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/partial_mock_using_mocks_directly_spec.rb +94 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/passing_argument_matchers_spec.rb +145 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/precise_counts_spec.rb +52 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/record_messages_spec.rb +26 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/serialization_spec.rb +67 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/stash_spec.rb +27 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/stub_chain_spec.rb +114 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/stub_implementation_spec.rb +68 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/stub_spec.rb +232 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/stubbed_message_expectations_spec.rb +26 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks/twice_counts_spec.rb +67 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/rspec/mocks_spec.rb +51 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/spec/spec_helper.rb +52 -0
- data/bundler/ruby/1.8/gems/rspec-mocks-2.1.0/specs.watchr +57 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/.require_paths +2 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/AUTHORS +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/CHANGES +349 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/ChangeLog +5926 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/LICENSE +23 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/README +114 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/Rakefile +311 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/VERSION +3 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/bin/rdebug +416 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/command.rb +267 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/breakpoints.rb +155 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/catchpoint.rb +55 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/condition.rb +49 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/continue.rb +38 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/control.rb +107 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/disassemble.RB +38 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/display.rb +120 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/edit.rb +48 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/enable.rb +202 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/eval.rb +179 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/finish.rb +42 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/frame.rb +302 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/help.rb +61 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/info.rb +472 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/irb.rb +193 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/kill.rb +50 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/list.rb +94 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/method.rb +84 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/quit.rb +44 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/raise.RB +41 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/reload.rb +40 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/save.rb +90 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/set.rb +237 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/show.rb +251 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/source.RB +44 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/stepping.rb +81 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/threads.rb +189 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/tmate.rb +36 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/trace.rb +57 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/commands/variables.rb +199 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/debugger.rb +5 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/helper.rb +74 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/interface.rb +260 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug/processor.rb +556 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/cli/ruby-debug.rb +179 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/doc/rdebug.1 +241 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/rdbg.rb +33 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/runner.sh +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/base/base.rb +74 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/base/binding.rb +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/base/catchpoint.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/base/load.rb +40 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/base/reload_bug.rb +8 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/bp_loop_issue.rb +3 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/brkpt-class-bug.rb +8 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/classes.rb +11 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/cli/commands/catchpoint_test.rb +36 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/cli/commands/unit/regexp.rb +42 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/config.yaml +8 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/annotate.cmd +29 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/annotate.right +139 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/break_bad.cmd +18 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/break_bad.right +28 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/break_loop_bug.cmd +5 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/break_loop_bug.right +15 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/breakpoints.cmd +38 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/breakpoints.right +98 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/brkpt-class-bug.cmd +9 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/brkpt-class-bug.right +18 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/catch.cmd +17 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/catch.right +39 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/condition.cmd +29 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/condition.right +67 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/ctrl.cmd +23 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/ctrl.right +69 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/display.cmd +24 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/display.right +44 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/dollar-0.right +2 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/dollar-0a.right +2 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/dollar-0b.right +2 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/edit.cmd +12 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/edit.right +19 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/emacs_basic.cmd +43 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/emacs_basic.right +106 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/enable.cmd +20 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/enable.right +36 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/except-bug1.cmd +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/except-bug1.right +13 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/file-with-space.cmd +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/file-with-space.right +9 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/finish.cmd +16 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/finish.right +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/frame.cmd +32 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/frame.right +66 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/help.cmd +20 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/help.right +21 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/history.right +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info-thread.cmd +13 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info-thread.right +37 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info-var-bug2.cmd +5 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info-var-bug2.right +10 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info-var.cmd +23 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info-var.right +52 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info.cmd +22 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/info.right +84 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/linetrace.cmd +6 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/linetrace.right +32 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/linetracep.cmd +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/linetracep.right +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/list.cmd +19 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/list.right +127 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/method.cmd +10 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/method.right +21 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/methodsig.cmd +10 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/methodsig.right +20 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/noquit.right +1 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/output.cmd +6 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/output.right +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/pm-bug.cmd +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/pm-bug.right +12 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/post-mortem-next.cmd +8 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/post-mortem-next.right +14 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/post-mortem-osx.right +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/post-mortem.cmd +13 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/post-mortem.right +32 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/quit.cmd +6 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/quit.right +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/raise.cmd +11 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/raise.right +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/save.cmd +33 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/save.right +59 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/setshow.cmd +46 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/setshow.right +80 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/source.cmd +5 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/source.right +15 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/stepping.cmd +21 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/stepping.right +50 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/test-init-cygwin.right +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/test-init-osx.right +4 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/test-init.right +5 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/data/trace.right +23 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/dollar-0.rb +5 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/except-bug1.rb +4 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/except-bug2.rb +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/file with space.rb +1 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/gcd-dbg-nox.rb +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/gcd-dbg.rb +30 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/gcd.rb +18 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/helper.rb +149 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/info-var-bug.rb +47 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/info-var-bug2.rb +2 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/null.rb +1 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/output.rb +2 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/pm-base.rb +22 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/pm-bug.rb +3 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/pm.rb +11 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/raise.rb +3 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/rdebug-save.1 +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/scope-test.rb +8 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/tdebug.rb +252 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-annotate.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-break-bad.rb +36 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-breakpoints.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-brkpt-class-bug.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-catch.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-condition.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-ctrl.rb +55 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-display.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-dollar-0.rb +45 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-edit.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-emacs-basic.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-enable.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-except-bug1.rb +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-file-with-space.rb +30 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-finish.rb +34 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-frame.rb +34 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-help.rb +60 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-hist.rb +68 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-info-thread.rb +32 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-info-var.rb +47 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-info.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-init.rb +49 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-list.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-method.rb +34 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-output.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-pm.rb +59 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-quit.rb +30 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-raise.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-save.rb +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-setshow.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-source.rb +25 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-stepping.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/test-trace.rb +63 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/thread1.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/trunc-call.rb +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-0.10.4/test/tvar.rb +3 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/AUTHORS +7 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/CHANGES +349 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/LICENSE +23 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/README +114 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/Rakefile +311 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/VERSION +3 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/Makefile +157 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/breakpoint.c +582 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/breakpoint.o +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/extconf.rb +20 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/ruby_debug.bundle +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/ruby_debug.c +2326 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/ruby_debug.h +123 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/ruby_debug.o +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/win32/Makefile +157 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/win32/breakpoint.o +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/win32/ruby_debug.o +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/ext/win32/ruby_debug.so +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/lib/ChangeLog +1162 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/lib/ruby-debug-base.rb +301 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/lib/ruby_debug.bundle +0 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/test/base/base.rb +74 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/test/base/binding.rb +31 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/test/base/catchpoint.rb +26 -0
- data/bundler/ruby/1.8/gems/ruby-debug-base-0.10.4/test/base/reload_bug.rb +8 -0
- data/bundler/ruby/1.8/gems/ruby-progressbar-0.0.9/GPL_LICENSE +340 -0
- data/bundler/ruby/1.8/gems/ruby-progressbar-0.0.9/README.md +91 -0
- data/bundler/ruby/1.8/gems/ruby-progressbar-0.0.9/RUBY_LICENSE +53 -0
- data/bundler/ruby/1.8/gems/ruby-progressbar-0.0.9/lib/progressbar.rb +237 -0
- data/bundler/ruby/1.8/gems/ruby-progressbar-0.0.9/test.rb +116 -0
- data/bundler/ruby/1.8/specifications/RubyInline-3.8.6.gemspec +52 -0
- data/bundler/ruby/1.8/specifications/ZenTest-4.4.0.gemspec +59 -0
- data/bundler/ruby/1.8/specifications/columnize-0.3.2.gemspec +48 -0
- data/bundler/ruby/1.8/specifications/curb-0.7.8.gemspec +32 -0
- data/bundler/ruby/1.8/specifications/curl-multi-0.2.gemspec +39 -0
- data/bundler/ruby/1.8/specifications/diff-lcs-1.1.2.gemspec +34 -0
- data/bundler/ruby/1.8/specifications/fakefs-0.2.1.gemspec +30 -0
- data/bundler/ruby/1.8/specifications/fuubar-0.0.2.gemspec +38 -0
- data/bundler/ruby/1.8/specifications/linecache-0.43.gemspec +33 -0
- data/bundler/ruby/1.8/specifications/rr-1.0.2.gemspec +31 -0
- data/bundler/ruby/1.8/specifications/rspec-2.1.0.gemspec +39 -0
- data/bundler/ruby/1.8/specifications/rspec-core-2.1.0.gemspec +44 -0
- data/bundler/ruby/1.8/specifications/rspec-expectations-2.1.0.gemspec +34 -0
- data/bundler/ruby/1.8/specifications/rspec-instafail-0.1.4.gemspec +28 -0
- data/bundler/ruby/1.8/specifications/rspec-mocks-2.1.0.gemspec +31 -0
- data/bundler/ruby/1.8/specifications/ruby-debug-0.10.4.gemspec +39 -0
- data/bundler/ruby/1.8/specifications/ruby-debug-base-0.10.4.gemspec +39 -0
- data/bundler/ruby/1.8/specifications/ruby-progressbar-0.0.9.gemspec +27 -0
- data/lib/vim-jar/cli.rb +94 -0
- data/lib/vim-jar/config.rb +59 -0
- data/lib/vim-jar/importer/github.rb +18 -0
- data/lib/vim-jar/importer.rb +51 -0
- data/lib/vim-jar/installer/base.rb +9 -0
- data/lib/vim-jar/installer/git.rb +19 -0
- data/lib/vim-jar/installer.rb +7 -0
- data/lib/vim-jar/plugin/git.rb +32 -0
- data/lib/vim-jar/plugin.rb +65 -0
- data/lib/vim-jar/plugins.yml +2673 -0
- data/lib/vim-jar/version.rb +5 -0
- data/lib/vim-jar.rb +24 -0
- data/script/github_crawler.rb +76 -0
- data/spec/spec_helper.rb +21 -0
- data/spec/vim-jar/config_spec.rb +70 -0
- data/spec/vim-jar/importer/github_spec.rb +12 -0
- data/spec/vim-jar/importer/pages/vim-rails-github.html +975 -0
- data/spec/vim-jar/importer_spec.rb +58 -0
- data/spec/vim-jar/plugin_spec.rb +39 -0
- data/spec/vim-jar/plugin_ymls/blank.yml +6 -0
- data/spec/vim-jar/plugin_ymls/rails-vim.yml +7 -0
- data/spec/vim-jar_test.rb +17 -0
- data/vim-jar.gemspec +28 -0
- metadata +1185 -0
|
@@ -0,0 +1,2673 @@
|
|
|
1
|
+
---
|
|
2
|
+
- name: vim-rails
|
|
3
|
+
url: git://github.com/tpope/vim-rails.git
|
|
4
|
+
type: git
|
|
5
|
+
homepage: https://github.com/tpope/vim-rails
|
|
6
|
+
desc: Ruby on Rails, easy file navigation, enhanced syntax highlighting, and more
|
|
7
|
+
- name: stackoverflow.vim
|
|
8
|
+
url: git://github.com/vim-scripts/stackoverflow.vim.git
|
|
9
|
+
type: git
|
|
10
|
+
homepage: https://github.com/vim-scripts/stackoverflow.vim
|
|
11
|
+
desc: Stackoverflow&#039s code highlights (gui)
|
|
12
|
+
- name: tcommand
|
|
13
|
+
url: git://github.com/vim-scripts/tcommand.git
|
|
14
|
+
type: git
|
|
15
|
+
homepage: https://github.com/vim-scripts/tcommand
|
|
16
|
+
desc: Select and execute a command or menu item from a list
|
|
17
|
+
- name: tComment
|
|
18
|
+
url: git://github.com/vim-scripts/tComment.git
|
|
19
|
+
type: git
|
|
20
|
+
homepage: https://github.com/vim-scripts/tComment
|
|
21
|
+
desc: An extensible & universal comment plugin that also handles embedded filetypes
|
|
22
|
+
- name: tdvim_FoldDigest
|
|
23
|
+
url: git://github.com/vim-scripts/tdvim_FoldDigest.git
|
|
24
|
+
type: git
|
|
25
|
+
homepage: https://github.com/vim-scripts/tdvim_FoldDigest
|
|
26
|
+
desc: Creates an outline view from folds in the current buffer
|
|
27
|
+
- name: tEchoPair
|
|
28
|
+
url: git://github.com/vim-scripts/tEchoPair.git
|
|
29
|
+
type: git
|
|
30
|
+
homepage: https://github.com/vim-scripts/tEchoPair
|
|
31
|
+
desc: Display the matching parenthesis/pair in the echo area
|
|
32
|
+
- name: simplefold
|
|
33
|
+
url: git://github.com/vim-scripts/simplefold.git
|
|
34
|
+
type: git
|
|
35
|
+
homepage: https://github.com/vim-scripts/simplefold
|
|
36
|
+
desc: space-optimized, configurable folds, supports Ruby, Ocaml, Perl, PHP, Java...
|
|
37
|
+
- name: SingleCompile
|
|
38
|
+
url: git://github.com/vim-scripts/SingleCompile.git
|
|
39
|
+
type: git
|
|
40
|
+
homepage: https://github.com/vim-scripts/SingleCompile
|
|
41
|
+
desc: Make it more convenient to compile or run a single source file.
|
|
42
|
+
- name: sipngrep
|
|
43
|
+
url: git://github.com/vim-scripts/sipngrep.git
|
|
44
|
+
type: git
|
|
45
|
+
homepage: https://github.com/vim-scripts/sipngrep
|
|
46
|
+
desc: Syntax file for sip captures from ngrep (udp)
|
|
47
|
+
- name: sipngrep-helper
|
|
48
|
+
url: git://github.com/vim-scripts/sipngrep-helper.git
|
|
49
|
+
type: git
|
|
50
|
+
homepage: https://github.com/vim-scripts/sipngrep-helper
|
|
51
|
+
desc: Helper functions for looking through sip packet captures
|
|
52
|
+
- name: skeleton
|
|
53
|
+
url: git://github.com/vim-scripts/skeleton.git
|
|
54
|
+
type: git
|
|
55
|
+
homepage: https://github.com/vim-scripts/skeleton
|
|
56
|
+
desc: Skeleton for newly created buffers
|
|
57
|
+
- name: Skittles-Dark
|
|
58
|
+
url: git://github.com/vim-scripts/Skittles-Dark.git
|
|
59
|
+
type: git
|
|
60
|
+
homepage: https://github.com/vim-scripts/Skittles-Dark
|
|
61
|
+
desc: Dark, colorful scheme
|
|
62
|
+
- name: smarttill
|
|
63
|
+
url: git://github.com/vim-scripts/smarttill.git
|
|
64
|
+
type: git
|
|
65
|
+
homepage: https://github.com/vim-scripts/smarttill
|
|
66
|
+
desc: Smart motions, till before/after a punctuation
|
|
67
|
+
- name: smartword
|
|
68
|
+
url: git://github.com/vim-scripts/smartword.git
|
|
69
|
+
type: git
|
|
70
|
+
homepage: https://github.com/vim-scripts/smartword
|
|
71
|
+
desc: Smart motions on words
|
|
72
|
+
- name: SmartX
|
|
73
|
+
url: git://github.com/vim-scripts/SmartX.git
|
|
74
|
+
type: git
|
|
75
|
+
homepage: https://github.com/vim-scripts/SmartX
|
|
76
|
+
desc: Smart deletion of \X escapes with the x/X/Backspace/Delete keys
|
|
77
|
+
- name: smarty-syntax
|
|
78
|
+
url: git://github.com/vim-scripts/smarty-syntax.git
|
|
79
|
+
type: git
|
|
80
|
+
homepage: https://github.com/vim-scripts/smarty-syntax
|
|
81
|
+
desc: Syntax highlight for Smarty Template Engine
|
|
82
|
+
- name: smart_cr
|
|
83
|
+
url: git://github.com/vim-scripts/smart_cr.git
|
|
84
|
+
type: git
|
|
85
|
+
homepage: https://github.com/vim-scripts/smart_cr
|
|
86
|
+
desc: Inserting snippets in new line
|
|
87
|
+
- name: Smooth-Center
|
|
88
|
+
url: git://github.com/vim-scripts/Smooth-Center.git
|
|
89
|
+
type: git
|
|
90
|
+
homepage: https://github.com/vim-scripts/Smooth-Center
|
|
91
|
+
desc: Smoothly centres display when you press Esc like zz, zt and zb
|
|
92
|
+
- name: Smooth-Scroll
|
|
93
|
+
url: git://github.com/vim-scripts/Smooth-Scroll.git
|
|
94
|
+
type: git
|
|
95
|
+
homepage: https://github.com/vim-scripts/Smooth-Scroll
|
|
96
|
+
desc: Smooths scrolls the window for various key mappings
|
|
97
|
+
- name: smp
|
|
98
|
+
url: git://github.com/vim-scripts/smp.git
|
|
99
|
+
type: git
|
|
100
|
+
homepage: https://github.com/vim-scripts/smp
|
|
101
|
+
desc: You will never bored, bcoz its simple
|
|
102
|
+
- name: snipMate
|
|
103
|
+
url: git://github.com/vim-scripts/snipMate.git
|
|
104
|
+
type: git
|
|
105
|
+
homepage: https://github.com/vim-scripts/snipMate
|
|
106
|
+
desc: TextMate-style snippets for Vim
|
|
107
|
+
- name: Source-Control
|
|
108
|
+
url: git://github.com/vim-scripts/Source-Control.git
|
|
109
|
+
type: git
|
|
110
|
+
homepage: https://github.com/vim-scripts/Source-Control
|
|
111
|
+
desc: Common interface to source-control
|
|
112
|
+
- name: SourceCodeObedience
|
|
113
|
+
url: git://github.com/vim-scripts/SourceCodeObedience.git
|
|
114
|
+
type: git
|
|
115
|
+
homepage: https://github.com/vim-scripts/SourceCodeObedience
|
|
116
|
+
desc: Browse source code easily with cscope, ctags and marks system
|
|
117
|
+
- name: SourceSafe-Integration
|
|
118
|
+
url: git://github.com/vim-scripts/SourceSafe-Integration.git
|
|
119
|
+
type: git
|
|
120
|
+
homepage: https://github.com/vim-scripts/SourceSafe-Integration
|
|
121
|
+
desc: Fairly complete file-based SourceSafe Integration
|
|
122
|
+
- name: southernlights
|
|
123
|
+
url: git://github.com/vim-scripts/southernlights.git
|
|
124
|
+
type: git
|
|
125
|
+
homepage: https://github.com/vim-scripts/southernlights
|
|
126
|
+
desc: A 256 colors scheme
|
|
127
|
+
- name: SpamAssassin-syntax
|
|
128
|
+
url: git://github.com/vim-scripts/SpamAssassin-syntax.git
|
|
129
|
+
type: git
|
|
130
|
+
homepage: https://github.com/vim-scripts/SpamAssassin-syntax
|
|
131
|
+
desc: Syntax highlighting for SpamAssassin config files
|
|
132
|
+
- name: sqlite_c
|
|
133
|
+
url: git://github.com/vim-scripts/sqlite_c.git
|
|
134
|
+
type: git
|
|
135
|
+
homepage: https://github.com/vim-scripts/sqlite_c
|
|
136
|
+
desc: SQLite C interface Vim syntax file.
|
|
137
|
+
- name: sqlplsql
|
|
138
|
+
url: git://github.com/vim-scripts/sqlplsql.git
|
|
139
|
+
type: git
|
|
140
|
+
homepage: https://github.com/vim-scripts/sqlplsql
|
|
141
|
+
desc: Good for sql and pl/sql coding
|
|
142
|
+
- name: StarRange
|
|
143
|
+
url: git://github.com/vim-scripts/StarRange.git
|
|
144
|
+
type: git
|
|
145
|
+
homepage: https://github.com/vim-scripts/StarRange
|
|
146
|
+
desc: "Searches a string that you selected in visual mode with * or #."
|
|
147
|
+
- name: startup_profile
|
|
148
|
+
url: git://github.com/vim-scripts/startup_profile.git
|
|
149
|
+
type: git
|
|
150
|
+
homepage: https://github.com/vim-scripts/startup_profile
|
|
151
|
+
desc: Profile vim startup
|
|
152
|
+
- name: StateExp
|
|
153
|
+
url: git://github.com/vim-scripts/StateExp.git
|
|
154
|
+
type: git
|
|
155
|
+
homepage: https://github.com/vim-scripts/StateExp
|
|
156
|
+
desc: Ease writing code by expanding statements.
|
|
157
|
+
- name: std-includes
|
|
158
|
+
url: git://github.com/vim-scripts/std-includes.git
|
|
159
|
+
type: git
|
|
160
|
+
homepage: https://github.com/vim-scripts/std-includes
|
|
161
|
+
desc: "Add std:: includes to your file according to what you have used."
|
|
162
|
+
- name: stem-search
|
|
163
|
+
url: git://github.com/vim-scripts/stem-search.git
|
|
164
|
+
type: git
|
|
165
|
+
homepage: https://github.com/vim-scripts/stem-search
|
|
166
|
+
desc: StmSrch is a reverse-stem searching script
|
|
167
|
+
- name: StickyCursor
|
|
168
|
+
url: git://github.com/vim-scripts/StickyCursor.git
|
|
169
|
+
type: git
|
|
170
|
+
homepage: https://github.com/vim-scripts/StickyCursor
|
|
171
|
+
desc: remembers the cursor position relative to the window
|
|
172
|
+
- name: stickykey
|
|
173
|
+
url: git://github.com/vim-scripts/stickykey.git
|
|
174
|
+
type: git
|
|
175
|
+
homepage: https://github.com/vim-scripts/stickykey
|
|
176
|
+
desc: You don't need press very far away meta keys
|
|
177
|
+
- name: stingray
|
|
178
|
+
url: git://github.com/vim-scripts/stingray.git
|
|
179
|
+
type: git
|
|
180
|
+
homepage: https://github.com/vim-scripts/stingray
|
|
181
|
+
desc: blue gray colorscheme
|
|
182
|
+
- name: STL-improved
|
|
183
|
+
url: git://github.com/vim-scripts/STL-improved.git
|
|
184
|
+
type: git
|
|
185
|
+
homepage: https://github.com/vim-scripts/STL-improved
|
|
186
|
+
desc: Improved C++ STL syntax highlighting
|
|
187
|
+
- name: Superior-Haskell-Interaction-Mode-SHIM
|
|
188
|
+
url: git://github.com/vim-scripts/Superior-Haskell-Interaction-Mode-SHIM.git
|
|
189
|
+
type: git
|
|
190
|
+
homepage: https://github.com/vim-scripts/Superior-Haskell-Interaction-Mode-SHIM
|
|
191
|
+
desc: GHCi integration for VIM
|
|
192
|
+
- name: SuperPre
|
|
193
|
+
url: git://github.com/vim-scripts/SuperPre.git
|
|
194
|
+
type: git
|
|
195
|
+
homepage: https://github.com/vim-scripts/SuperPre
|
|
196
|
+
desc: syntax for the text that contains several programming language
|
|
197
|
+
- name: superSnipMate
|
|
198
|
+
url: git://github.com/vim-scripts/superSnipMate.git
|
|
199
|
+
type: git
|
|
200
|
+
homepage: https://github.com/vim-scripts/superSnipMate
|
|
201
|
+
desc: improved from snipMate with which you can expand your snippet within another
|
|
202
|
+
- name: SuperTab
|
|
203
|
+
url: git://github.com/vim-scripts/SuperTab.git
|
|
204
|
+
type: git
|
|
205
|
+
homepage: https://github.com/vim-scripts/SuperTab
|
|
206
|
+
desc: Do all your insert-mode completion with Tab!
|
|
207
|
+
- name: surrogat
|
|
208
|
+
url: git://github.com/vim-scripts/surrogat.git
|
|
209
|
+
type: git
|
|
210
|
+
homepage: https://github.com/vim-scripts/surrogat
|
|
211
|
+
desc: Surrogate alphabets handling plugin
|
|
212
|
+
- name: surrparen
|
|
213
|
+
url: git://github.com/vim-scripts/surrparen.git
|
|
214
|
+
type: git
|
|
215
|
+
homepage: https://github.com/vim-scripts/surrparen
|
|
216
|
+
desc: Hilights a pair of parens/braces that surround the cursor
|
|
217
|
+
- name: Surveyor
|
|
218
|
+
url: git://github.com/vim-scripts/Surveyor.git
|
|
219
|
+
type: git
|
|
220
|
+
homepage: https://github.com/vim-scripts/Surveyor
|
|
221
|
+
desc: High contrast colorscheme with dark background
|
|
222
|
+
- name: svk
|
|
223
|
+
url: git://github.com/vim-scripts/svk.git
|
|
224
|
+
type: git
|
|
225
|
+
homepage: https://github.com/vim-scripts/svk
|
|
226
|
+
desc: syntax and a couple of useful commands for svk commit files
|
|
227
|
+
- name: Symfony
|
|
228
|
+
url: git://github.com/vim-scripts/Symfony.git
|
|
229
|
+
type: git
|
|
230
|
+
homepage: https://github.com/vim-scripts/Symfony
|
|
231
|
+
desc: Color scheme based on symfony php framework documentation
|
|
232
|
+
- name: SYN2HTML
|
|
233
|
+
url: git://github.com/vim-scripts/SYN2HTML.git
|
|
234
|
+
type: git
|
|
235
|
+
homepage: https://github.com/vim-scripts/SYN2HTML
|
|
236
|
+
desc: Syntax to HTML converter (Python)
|
|
237
|
+
- name: Syntastic
|
|
238
|
+
url: git://github.com/vim-scripts/Syntastic.git
|
|
239
|
+
type: git
|
|
240
|
+
homepage: https://github.com/vim-scripts/Syntastic
|
|
241
|
+
desc: Automatic syntax checking
|
|
242
|
+
- name: syntax-codecsconf
|
|
243
|
+
url: git://github.com/vim-scripts/syntax-codecsconf.git
|
|
244
|
+
type: git
|
|
245
|
+
homepage: https://github.com/vim-scripts/syntax-codecsconf
|
|
246
|
+
desc: syntax for mplayer-src codecs.conf
|
|
247
|
+
- name: Syntax-context-abbreviations
|
|
248
|
+
url: git://github.com/vim-scripts/Syntax-context-abbreviations.git
|
|
249
|
+
type: git
|
|
250
|
+
homepage: https://github.com/vim-scripts/Syntax-context-abbreviations
|
|
251
|
+
desc: Abbreviations that only happen outside comments
|
|
252
|
+
- name: Syntax-for-Fasta
|
|
253
|
+
url: git://github.com/vim-scripts/Syntax-for-Fasta.git
|
|
254
|
+
type: git
|
|
255
|
+
homepage: https://github.com/vim-scripts/Syntax-for-Fasta
|
|
256
|
+
desc: Highlighting for Fasta (Pearson) format
|
|
257
|
+
- name: Syntax-for-the-BETA-programming-language
|
|
258
|
+
url: git://github.com/vim-scripts/Syntax-for-the-BETA-programming-language.git
|
|
259
|
+
type: git
|
|
260
|
+
homepage: https://github.com/vim-scripts/Syntax-for-the-BETA-programming-language
|
|
261
|
+
desc: Syntax file for BETA
|
|
262
|
+
- name: T7ko
|
|
263
|
+
url: git://github.com/vim-scripts/T7ko.git
|
|
264
|
+
type: git
|
|
265
|
+
homepage: https://github.com/vim-scripts/T7ko
|
|
266
|
+
desc: Plugins set I use in my everyday vimming (especially when programing)
|
|
267
|
+
- name: Tab-Menu
|
|
268
|
+
url: git://github.com/vim-scripts/Tab-Menu.git
|
|
269
|
+
type: git
|
|
270
|
+
homepage: https://github.com/vim-scripts/Tab-Menu
|
|
271
|
+
desc: Tab Menu for all the tabs in VIM
|
|
272
|
+
- name: Tab-Name
|
|
273
|
+
url: git://github.com/vim-scripts/Tab-Name.git
|
|
274
|
+
type: git
|
|
275
|
+
homepage: https://github.com/vim-scripts/Tab-Name
|
|
276
|
+
desc: Set name for your tab-pages.
|
|
277
|
+
- name: tab-syntax
|
|
278
|
+
url: git://github.com/vim-scripts/tab-syntax.git
|
|
279
|
+
type: git
|
|
280
|
+
homepage: https://github.com/vim-scripts/tab-syntax
|
|
281
|
+
desc: syntax for guitar tabulatures
|
|
282
|
+
- name: TabBar
|
|
283
|
+
url: git://github.com/vim-scripts/TabBar.git
|
|
284
|
+
type: git
|
|
285
|
+
homepage: https://github.com/vim-scripts/TabBar
|
|
286
|
+
desc: Plugin to add tab bar ( derived from miniBufExplorer).
|
|
287
|
+
- name: Tabbi
|
|
288
|
+
url: git://github.com/vim-scripts/Tabbi.git
|
|
289
|
+
type: git
|
|
290
|
+
homepage: https://github.com/vim-scripts/Tabbi
|
|
291
|
+
desc: Aligns text as a table
|
|
292
|
+
- name: TabIndent
|
|
293
|
+
url: git://github.com/vim-scripts/TabIndent.git
|
|
294
|
+
type: git
|
|
295
|
+
homepage: https://github.com/vim-scripts/TabIndent
|
|
296
|
+
desc: Overload the <Tab> key to either insert a tab, or indent the current line
|
|
297
|
+
- name: TabLaTeX
|
|
298
|
+
url: git://github.com/vim-scripts/TabLaTeX.git
|
|
299
|
+
type: git
|
|
300
|
+
homepage: https://github.com/vim-scripts/TabLaTeX
|
|
301
|
+
desc: A small and simple script for writing LaTeX documents
|
|
302
|
+
- name: tagscan
|
|
303
|
+
url: git://github.com/vim-scripts/tagscan.git
|
|
304
|
+
type: git
|
|
305
|
+
homepage: https://github.com/vim-scripts/tagscan
|
|
306
|
+
desc: Tag your file for better search requisite place
|
|
307
|
+
- name: tagselect
|
|
308
|
+
url: git://github.com/vim-scripts/tagselect.git
|
|
309
|
+
type: git
|
|
310
|
+
homepage: https://github.com/vim-scripts/tagselect
|
|
311
|
+
desc: Provides a better :tselect command.
|
|
312
|
+
- name: TagsParser
|
|
313
|
+
url: git://github.com/vim-scripts/TagsParser.git
|
|
314
|
+
type: git
|
|
315
|
+
homepage: https://github.com/vim-scripts/TagsParser
|
|
316
|
+
desc: Automatic tagfile updating and tag viewer
|
|
317
|
+
- name: tagsubmenu
|
|
318
|
+
url: git://github.com/vim-scripts/tagsubmenu.git
|
|
319
|
+
type: git
|
|
320
|
+
homepage: https://github.com/vim-scripts/tagsubmenu
|
|
321
|
+
desc: Add a submenu for tags commands
|
|
322
|
+
- name: tag_in_new_tab
|
|
323
|
+
url: git://github.com/vim-scripts/tag_in_new_tab.git
|
|
324
|
+
type: git
|
|
325
|
+
homepage: https://github.com/vim-scripts/tag_in_new_tab
|
|
326
|
+
desc: Open tag in new tab.
|
|
327
|
+
- name: Tail-Bundle
|
|
328
|
+
url: git://github.com/vim-scripts/Tail-Bundle.git
|
|
329
|
+
type: git
|
|
330
|
+
homepage: https://github.com/vim-scripts/Tail-Bundle
|
|
331
|
+
desc: Yet another tail -f plugin
|
|
332
|
+
- name: Tailf
|
|
333
|
+
url: git://github.com/vim-scripts/Tailf.git
|
|
334
|
+
type: git
|
|
335
|
+
homepage: https://github.com/vim-scripts/Tailf
|
|
336
|
+
desc: Tails a log file continuously, like using 'tail -f'
|
|
337
|
+
- name: TailMinusF
|
|
338
|
+
url: git://github.com/vim-scripts/TailMinusF.git
|
|
339
|
+
type: git
|
|
340
|
+
homepage: https://github.com/vim-scripts/TailMinusF
|
|
341
|
+
desc: Provides near real-time update of a file in the preview window.
|
|
342
|
+
- name: Tango-colour-scheme
|
|
343
|
+
url: git://github.com/vim-scripts/Tango-colour-scheme.git
|
|
344
|
+
type: git
|
|
345
|
+
homepage: https://github.com/vim-scripts/Tango-colour-scheme
|
|
346
|
+
desc: Colour scheme using the Tango Desktop project palette
|
|
347
|
+
- name: tetragrammaton
|
|
348
|
+
url: git://github.com/vim-scripts/tetragrammaton.git
|
|
349
|
+
type: git
|
|
350
|
+
homepage: https://github.com/vim-scripts/tetragrammaton
|
|
351
|
+
desc: dark gvim color scheme
|
|
352
|
+
- name: TeX-PDF
|
|
353
|
+
url: git://github.com/vim-scripts/TeX-PDF.git
|
|
354
|
+
type: git
|
|
355
|
+
homepage: https://github.com/vim-scripts/TeX-PDF
|
|
356
|
+
desc: Lightweight "stay-out-of-your-way" TeX-to-PDF development support
|
|
357
|
+
- name: tex-turkce
|
|
358
|
+
url: git://github.com/vim-scripts/tex-turkce.git
|
|
359
|
+
type: git
|
|
360
|
+
homepage: https://github.com/vim-scripts/tex-turkce
|
|
361
|
+
desc: convert Turkish characters in .tex files
|
|
362
|
+
- name: TEXT--fill-char
|
|
363
|
+
url: git://github.com/vim-scripts/TEXT--fill-char.git
|
|
364
|
+
type: git
|
|
365
|
+
homepage: https://github.com/vim-scripts/TEXT--fill-char
|
|
366
|
+
desc: script for on-the-fly indenting of columns according to previous or next line
|
|
367
|
+
- name: Text-Especially-LaTeX-Formatter
|
|
368
|
+
url: git://github.com/vim-scripts/Text-Especially-LaTeX-Formatter.git
|
|
369
|
+
type: git
|
|
370
|
+
homepage: https://github.com/vim-scripts/Text-Especially-LaTeX-Formatter
|
|
371
|
+
desc: Format text or LaTeX text so that lines have approximately equal lengths
|
|
372
|
+
- name: TextFormat
|
|
373
|
+
url: git://github.com/vim-scripts/TextFormat.git
|
|
374
|
+
type: git
|
|
375
|
+
homepage: https://github.com/vim-scripts/TextFormat
|
|
376
|
+
desc: "Quickly align and format paragraphs and text areas: left, right, justify, center"
|
|
377
|
+
- name: Textile-for-VIM
|
|
378
|
+
url: git://github.com/vim-scripts/Textile-for-VIM.git
|
|
379
|
+
type: git
|
|
380
|
+
homepage: https://github.com/vim-scripts/Textile-for-VIM
|
|
381
|
+
desc: Syntax Highlighting and Textile rendering / preview support
|
|
382
|
+
- name: tex_umlaute
|
|
383
|
+
url: git://github.com/vim-scripts/tex_umlaute.git
|
|
384
|
+
type: git
|
|
385
|
+
homepage: https://github.com/vim-scripts/tex_umlaute
|
|
386
|
+
desc: replaces German Umlauts with their TeX encodings on save
|
|
387
|
+
- name: tGpg
|
|
388
|
+
url: git://github.com/vim-scripts/tGpg.git
|
|
389
|
+
type: git
|
|
390
|
+
homepage: https://github.com/vim-scripts/tGpg
|
|
391
|
+
desc: Yet another plugin for encrypting files with gpg
|
|
392
|
+
- name: The-Mail-Suite-tms
|
|
393
|
+
url: git://github.com/vim-scripts/The-Mail-Suite-tms.git
|
|
394
|
+
type: git
|
|
395
|
+
homepage: https://github.com/vim-scripts/The-Mail-Suite-tms
|
|
396
|
+
desc: Send, Receive and Organize mail from within VIM
|
|
397
|
+
- name: The-Max-Impact-Experiment
|
|
398
|
+
url: git://github.com/vim-scripts/The-Max-Impact-Experiment.git
|
|
399
|
+
type: git
|
|
400
|
+
homepage: https://github.com/vim-scripts/The-Max-Impact-Experiment
|
|
401
|
+
desc: A playground to see how much we can do with pithy code
|
|
402
|
+
- name: The-NERD-Commenter
|
|
403
|
+
url: git://github.com/vim-scripts/The-NERD-Commenter.git
|
|
404
|
+
type: git
|
|
405
|
+
homepage: https://github.com/vim-scripts/The-NERD-Commenter
|
|
406
|
+
desc: A plugin that allows for easy commenting of code for many filetypes.
|
|
407
|
+
- name: The-NERD-tree
|
|
408
|
+
url: git://github.com/vim-scripts/The-NERD-tree.git
|
|
409
|
+
type: git
|
|
410
|
+
homepage: https://github.com/vim-scripts/The-NERD-tree
|
|
411
|
+
desc: A tree explorer plugin for navigating the filesystem
|
|
412
|
+
- name: The-Stars-Color-Scheme
|
|
413
|
+
url: git://github.com/vim-scripts/The-Stars-Color-Scheme.git
|
|
414
|
+
type: git
|
|
415
|
+
homepage: https://github.com/vim-scripts/The-Stars-Color-Scheme
|
|
416
|
+
desc: A dark scheme
|
|
417
|
+
- name: The-Vim-Gardener
|
|
418
|
+
url: git://github.com/vim-scripts/The-Vim-Gardener.git
|
|
419
|
+
type: git
|
|
420
|
+
homepage: https://github.com/vim-scripts/The-Vim-Gardener
|
|
421
|
+
desc: Dark and colorful forrest khaki theme works with 256 color xterms
|
|
422
|
+
- name: thegoodluck
|
|
423
|
+
url: git://github.com/vim-scripts/thegoodluck.git
|
|
424
|
+
type: git
|
|
425
|
+
homepage: https://github.com/vim-scripts/thegoodluck
|
|
426
|
+
desc: Contrast colourful light-background scheme
|
|
427
|
+
- name: timestamp
|
|
428
|
+
url: git://github.com/vim-scripts/timestamp.git
|
|
429
|
+
type: git
|
|
430
|
+
homepage: https://github.com/vim-scripts/timestamp
|
|
431
|
+
desc: Add a timestamp to your source file
|
|
432
|
+
- name: TinyBufferExplorer
|
|
433
|
+
url: git://github.com/vim-scripts/TinyBufferExplorer.git
|
|
434
|
+
type: git
|
|
435
|
+
homepage: https://github.com/vim-scripts/TinyBufferExplorer
|
|
436
|
+
desc: A 1-file buffer list plugin with Grouping
|
|
437
|
+
- name: tir_black
|
|
438
|
+
url: git://github.com/vim-scripts/tir_black.git
|
|
439
|
+
type: git
|
|
440
|
+
homepage: https://github.com/vim-scripts/tir_black
|
|
441
|
+
desc: based on ir_black colorscheme, tweaked for 256 color terms
|
|
442
|
+
- name: tlib
|
|
443
|
+
url: git://github.com/vim-scripts/tlib.git
|
|
444
|
+
type: git
|
|
445
|
+
homepage: https://github.com/vim-scripts/tlib
|
|
446
|
+
desc: Some utility functions
|
|
447
|
+
- name: tmarks
|
|
448
|
+
url: git://github.com/vim-scripts/tmarks.git
|
|
449
|
+
type: git
|
|
450
|
+
homepage: https://github.com/vim-scripts/tmarks
|
|
451
|
+
desc: Browse, place, & delete marks
|
|
452
|
+
- name: tmboxbrowser
|
|
453
|
+
url: git://github.com/vim-scripts/tmboxbrowser.git
|
|
454
|
+
type: git
|
|
455
|
+
homepage: https://github.com/vim-scripts/tmboxbrowser
|
|
456
|
+
desc: A mbox browser -- Read your e-mails with vim
|
|
457
|
+
- name: toggle_mouse
|
|
458
|
+
url: git://github.com/vim-scripts/toggle_mouse.git
|
|
459
|
+
type: git
|
|
460
|
+
homepage: https://github.com/vim-scripts/toggle_mouse
|
|
461
|
+
desc: Toggles the mouse focus on or off.
|
|
462
|
+
- name: toggle_option
|
|
463
|
+
url: git://github.com/vim-scripts/toggle_option.git
|
|
464
|
+
type: git
|
|
465
|
+
homepage: https://github.com/vim-scripts/toggle_option
|
|
466
|
+
desc: Initial upload
|
|
467
|
+
- name: toggle_unit_tests
|
|
468
|
+
url: git://github.com/vim-scripts/toggle_unit_tests.git
|
|
469
|
+
type: git
|
|
470
|
+
homepage: https://github.com/vim-scripts/toggle_unit_tests
|
|
471
|
+
desc: plug-in for toggling between source and unit test files
|
|
472
|
+
- name: tohtml_wincp
|
|
473
|
+
url: git://github.com/vim-scripts/tohtml_wincp.git
|
|
474
|
+
type: git
|
|
475
|
+
homepage: https://github.com/vim-scripts/tohtml_wincp
|
|
476
|
+
desc: Autodetect installed Windows encodings for :TOhtml
|
|
477
|
+
- name: tony_light
|
|
478
|
+
url: git://github.com/vim-scripts/tony_light.git
|
|
479
|
+
type: git
|
|
480
|
+
homepage: https://github.com/vim-scripts/tony_light
|
|
481
|
+
desc: Another Light Colour Scheme
|
|
482
|
+
- name: Torquescript-syntax-highlighting
|
|
483
|
+
url: git://github.com/vim-scripts/Torquescript-syntax-highlighting.git
|
|
484
|
+
type: git
|
|
485
|
+
homepage: https://github.com/vim-scripts/Torquescript-syntax-highlighting
|
|
486
|
+
desc: Syntax highlighting for scripting in the Torque game engines
|
|
487
|
+
- name: Transmit-FTP
|
|
488
|
+
url: git://github.com/vim-scripts/Transmit-FTP.git
|
|
489
|
+
type: git
|
|
490
|
+
homepage: https://github.com/vim-scripts/Transmit-FTP
|
|
491
|
+
desc: Integrates Transmit FTP (Mac) with Vim
|
|
492
|
+
- name: Transparent
|
|
493
|
+
url: git://github.com/vim-scripts/Transparent.git
|
|
494
|
+
type: git
|
|
495
|
+
homepage: https://github.com/vim-scripts/Transparent
|
|
496
|
+
desc: Nice colorscheme for both, console and gui versions of vim
|
|
497
|
+
- name: tree
|
|
498
|
+
url: git://github.com/vim-scripts/tree.git
|
|
499
|
+
type: git
|
|
500
|
+
homepage: https://github.com/vim-scripts/tree
|
|
501
|
+
desc: A treeview framework
|
|
502
|
+
- name: treeexplorer
|
|
503
|
+
url: git://github.com/vim-scripts/treeexplorer.git
|
|
504
|
+
type: git
|
|
505
|
+
homepage: https://github.com/vim-scripts/treeexplorer
|
|
506
|
+
desc: uses perl and tree to create a tree file explorer
|
|
507
|
+
- name: tregisters
|
|
508
|
+
url: git://github.com/vim-scripts/tregisters.git
|
|
509
|
+
type: git
|
|
510
|
+
homepage: https://github.com/vim-scripts/tregisters
|
|
511
|
+
desc: List, edit, and run/execute registers/clipboards
|
|
512
|
+
- name: TrimBlank
|
|
513
|
+
url: git://github.com/vim-scripts/TrimBlank.git
|
|
514
|
+
type: git
|
|
515
|
+
homepage: https://github.com/vim-scripts/TrimBlank
|
|
516
|
+
desc: help trim trailing blank characters and blank lines
|
|
517
|
+
- name: trivial256
|
|
518
|
+
url: git://github.com/vim-scripts/trivial256.git
|
|
519
|
+
type: git
|
|
520
|
+
homepage: https://github.com/vim-scripts/trivial256
|
|
521
|
+
desc: trivial color scheme for terminals
|
|
522
|
+
- name: ttoc
|
|
523
|
+
url: git://github.com/vim-scripts/ttoc.git
|
|
524
|
+
type: git
|
|
525
|
+
homepage: https://github.com/vim-scripts/ttoc
|
|
526
|
+
desc: A regexp-based table of contents of the current buffer
|
|
527
|
+
- name: TTrCodeAssistor
|
|
528
|
+
url: git://github.com/vim-scripts/TTrCodeAssistor.git
|
|
529
|
+
type: git
|
|
530
|
+
homepage: https://github.com/vim-scripts/TTrCodeAssistor
|
|
531
|
+
desc: Accelerate your inputing during coding,with auto-complete the function prototype
|
|
532
|
+
- name: Tumble
|
|
533
|
+
url: git://github.com/vim-scripts/Tumble.git
|
|
534
|
+
type: git
|
|
535
|
+
homepage: https://github.com/vim-scripts/Tumble
|
|
536
|
+
desc: A plugin to post to the tumblr.vim microblogging service
|
|
537
|
+
- name: Tumblr
|
|
538
|
+
url: git://github.com/vim-scripts/Tumblr.git
|
|
539
|
+
type: git
|
|
540
|
+
homepage: https://github.com/vim-scripts/Tumblr
|
|
541
|
+
desc: Post to Tumblr
|
|
542
|
+
- name: TuttiColori-Colorscheme
|
|
543
|
+
url: git://github.com/vim-scripts/TuttiColori-Colorscheme.git
|
|
544
|
+
type: git
|
|
545
|
+
homepage: https://github.com/vim-scripts/TuttiColori-Colorscheme
|
|
546
|
+
desc: A port of the Tutti Colori theme from the Espresso editor
|
|
547
|
+
- name: TVO--The-Vim-Outliner
|
|
548
|
+
url: git://github.com/vim-scripts/TVO--The-Vim-Outliner.git
|
|
549
|
+
type: git
|
|
550
|
+
homepage: https://github.com/vim-scripts/TVO--The-Vim-Outliner
|
|
551
|
+
desc: Turn vim into a full-featured text outliner
|
|
552
|
+
- name: Twee-Integration-for-Vim
|
|
553
|
+
url: git://github.com/vim-scripts/Twee-Integration-for-Vim.git
|
|
554
|
+
type: git
|
|
555
|
+
homepage: https://github.com/vim-scripts/Twee-Integration-for-Vim
|
|
556
|
+
desc: Syntax highlighting and compiler support for twee interactive stories creator
|
|
557
|
+
- name: TWiki-Syntax
|
|
558
|
+
url: git://github.com/vim-scripts/TWiki-Syntax.git
|
|
559
|
+
type: git
|
|
560
|
+
homepage: https://github.com/vim-scripts/TWiki-Syntax
|
|
561
|
+
desc: Syntaxfile for TWiki-Syntax
|
|
562
|
+
- name: twilight
|
|
563
|
+
url: git://github.com/vim-scripts/twilight.git
|
|
564
|
+
type: git
|
|
565
|
+
homepage: https://github.com/vim-scripts/twilight
|
|
566
|
+
desc: A clone of Textmates twilight scheme
|
|
567
|
+
- name: Twitter
|
|
568
|
+
url: git://github.com/vim-scripts/Twitter.git
|
|
569
|
+
type: git
|
|
570
|
+
homepage: https://github.com/vim-scripts/Twitter
|
|
571
|
+
desc: A simple client for Twitter
|
|
572
|
+
- name: Twitter--Jeffery
|
|
573
|
+
url: git://github.com/vim-scripts/Twitter--Jeffery.git
|
|
574
|
+
type: git
|
|
575
|
+
homepage: https://github.com/vim-scripts/Twitter--Jeffery
|
|
576
|
+
desc: Post to Twitter from Vim
|
|
577
|
+
- name: understated
|
|
578
|
+
url: git://github.com/vim-scripts/understated.git
|
|
579
|
+
type: git
|
|
580
|
+
homepage: https://github.com/vim-scripts/understated
|
|
581
|
+
desc: cterm and gui defs, for sensitive eyes
|
|
582
|
+
- name: underwater
|
|
583
|
+
url: git://github.com/vim-scripts/underwater.git
|
|
584
|
+
type: git
|
|
585
|
+
homepage: https://github.com/vim-scripts/underwater
|
|
586
|
+
desc: An easy on the eyes dark blue theme
|
|
587
|
+
- name: underwater-mod
|
|
588
|
+
url: git://github.com/vim-scripts/underwater-mod.git
|
|
589
|
+
type: git
|
|
590
|
+
homepage: https://github.com/vim-scripts/underwater-mod
|
|
591
|
+
desc: Eye-pleasing dark blue scheme based on Underwater colorscheme
|
|
592
|
+
- name: undo_tags
|
|
593
|
+
url: git://github.com/vim-scripts/undo_tags.git
|
|
594
|
+
type: git
|
|
595
|
+
homepage: https://github.com/vim-scripts/undo_tags
|
|
596
|
+
desc: small utility that lets you tag undo branches
|
|
597
|
+
- name: unhtml
|
|
598
|
+
url: git://github.com/vim-scripts/unhtml.git
|
|
599
|
+
type: git
|
|
600
|
+
homepage: https://github.com/vim-scripts/unhtml
|
|
601
|
+
desc: Converts HTML tags to a simpler syntax
|
|
602
|
+
- name: unibox
|
|
603
|
+
url: git://github.com/vim-scripts/unibox.git
|
|
604
|
+
type: git
|
|
605
|
+
homepage: https://github.com/vim-scripts/unibox
|
|
606
|
+
desc: Draws boxes in different line styles and in all languages
|
|
607
|
+
- name: Unicode-Macro-Table
|
|
608
|
+
url: git://github.com/vim-scripts/Unicode-Macro-Table.git
|
|
609
|
+
type: git
|
|
610
|
+
homepage: https://github.com/vim-scripts/Unicode-Macro-Table
|
|
611
|
+
desc: Macros to easily add mathematical symbols and operators to your document
|
|
612
|
+
- name: uri-ref
|
|
613
|
+
url: git://github.com/vim-scripts/uri-ref.git
|
|
614
|
+
type: git
|
|
615
|
+
homepage: https://github.com/vim-scripts/uri-ref
|
|
616
|
+
desc: Easily insert references to URLs in emails
|
|
617
|
+
- name: useful-optistruct-functions
|
|
618
|
+
url: git://github.com/vim-scripts/useful-optistruct-functions.git
|
|
619
|
+
type: git
|
|
620
|
+
homepage: https://github.com/vim-scripts/useful-optistruct-functions
|
|
621
|
+
desc: useful optistruct functions
|
|
622
|
+
- name: User-Defined-Type-Highlighter
|
|
623
|
+
url: git://github.com/vim-scripts/User-Defined-Type-Highlighter.git
|
|
624
|
+
type: git
|
|
625
|
+
homepage: https://github.com/vim-scripts/User-Defined-Type-Highlighter
|
|
626
|
+
desc: Generate vim highlighting groups from C++ typedefs, structs, and classes.
|
|
627
|
+
- name: utf8-math
|
|
628
|
+
url: git://github.com/vim-scripts/utf8-math.git
|
|
629
|
+
type: git
|
|
630
|
+
homepage: https://github.com/vim-scripts/utf8-math
|
|
631
|
+
desc: Keyboard shortcuts for math UTF-8 symbols
|
|
632
|
+
- name: Utility
|
|
633
|
+
url: git://github.com/vim-scripts/Utility.git
|
|
634
|
+
type: git
|
|
635
|
+
homepage: https://github.com/vim-scripts/Utility
|
|
636
|
+
desc: Vertical Copy
|
|
637
|
+
- name: v4daemon
|
|
638
|
+
url: git://github.com/vim-scripts/v4daemon.git
|
|
639
|
+
type: git
|
|
640
|
+
homepage: https://github.com/vim-scripts/v4daemon
|
|
641
|
+
desc: Send vim buffer lines to your background daemon (i.e. netcat)
|
|
642
|
+
- name: vdb-duplicated
|
|
643
|
+
url: git://github.com/vim-scripts/vdb-duplicated.git
|
|
644
|
+
type: git
|
|
645
|
+
homepage: https://github.com/vim-scripts/vdb-duplicated
|
|
646
|
+
desc: Interrupted upload duplication, do not download
|
|
647
|
+
- name: VEC
|
|
648
|
+
url: git://github.com/vim-scripts/VEC.git
|
|
649
|
+
type: git
|
|
650
|
+
homepage: https://github.com/vim-scripts/VEC
|
|
651
|
+
desc: Vim Extension Classes
|
|
652
|
+
- name: Verilog-constructs-plugin
|
|
653
|
+
url: git://github.com/vim-scripts/Verilog-constructs-plugin.git
|
|
654
|
+
type: git
|
|
655
|
+
homepage: https://github.com/vim-scripts/Verilog-constructs-plugin
|
|
656
|
+
desc: Plugin to insert Verilog Constructs
|
|
657
|
+
- name: Viewing-Procmail-Log
|
|
658
|
+
url: git://github.com/vim-scripts/Viewing-Procmail-Log.git
|
|
659
|
+
type: git
|
|
660
|
+
homepage: https://github.com/vim-scripts/Viewing-Procmail-Log
|
|
661
|
+
desc: Seeing only the interesting parts of procmail log
|
|
662
|
+
- name: ViewOutput
|
|
663
|
+
url: git://github.com/vim-scripts/ViewOutput.git
|
|
664
|
+
type: git
|
|
665
|
+
homepage: https://github.com/vim-scripts/ViewOutput
|
|
666
|
+
desc: scroll back and search [long] output of vim command
|
|
667
|
+
- name: view_diff
|
|
668
|
+
url: git://github.com/vim-scripts/view_diff.git
|
|
669
|
+
type: git
|
|
670
|
+
homepage: https://github.com/vim-scripts/view_diff
|
|
671
|
+
desc: view diff file in an eaiser way by vimdiff
|
|
672
|
+
- name: VikiDeplate
|
|
673
|
+
url: git://github.com/vim-scripts/VikiDeplate.git
|
|
674
|
+
type: git
|
|
675
|
+
homepage: https://github.com/vim-scripts/VikiDeplate
|
|
676
|
+
desc: A personal wiki for Vim
|
|
677
|
+
- name: vikitasks
|
|
678
|
+
url: git://github.com/vim-scripts/vikitasks.git
|
|
679
|
+
type: git
|
|
680
|
+
homepage: https://github.com/vim-scripts/vikitasks
|
|
681
|
+
desc: Search viki files for tasks and display them in a list
|
|
682
|
+
- name: vim-addon-actions
|
|
683
|
+
url: git://github.com/vim-scripts/vim-addon-actions.git
|
|
684
|
+
type: git
|
|
685
|
+
homepage: https://github.com/vim-scripts/vim-addon-actions
|
|
686
|
+
desc: keep list of actions you can bind to shortcuts easily on demand
|
|
687
|
+
- name: vim-addon-async
|
|
688
|
+
url: git://github.com/vim-scripts/vim-addon-async.git
|
|
689
|
+
type: git
|
|
690
|
+
homepage: https://github.com/vim-scripts/vim-addon-async
|
|
691
|
+
desc: asynchronous communication for Vim
|
|
692
|
+
- name: vim-addon-background-cmd
|
|
693
|
+
url: git://github.com/vim-scripts/vim-addon-background-cmd.git
|
|
694
|
+
type: git
|
|
695
|
+
homepage: https://github.com/vim-scripts/vim-addon-background-cmd
|
|
696
|
+
desc: keep on working while compiling your project
|
|
697
|
+
- name: vim-addon-completion
|
|
698
|
+
url: git://github.com/vim-scripts/vim-addon-completion.git
|
|
699
|
+
type: git
|
|
700
|
+
homepage: https://github.com/vim-scripts/vim-addon-completion
|
|
701
|
+
desc: select and cycle completion function
|
|
702
|
+
- name: vim-addon-fcsh
|
|
703
|
+
url: git://github.com/vim-scripts/vim-addon-fcsh.git
|
|
704
|
+
type: git
|
|
705
|
+
homepage: https://github.com/vim-scripts/vim-addon-fcsh
|
|
706
|
+
desc: run adobe fcsh Flex compiler shell in background decreasing compilation times
|
|
707
|
+
- name: vim-addon-json-encoding
|
|
708
|
+
url: git://github.com/vim-scripts/vim-addon-json-encoding.git
|
|
709
|
+
type: git
|
|
710
|
+
homepage: https://github.com/vim-scripts/vim-addon-json-encoding
|
|
711
|
+
desc: make Vim read and write JSON objects
|
|
712
|
+
- name: slang_syntax
|
|
713
|
+
url: git://github.com/vim-scripts/slang_syntax.git
|
|
714
|
+
type: git
|
|
715
|
+
homepage: https://github.com/vim-scripts/slang_syntax
|
|
716
|
+
desc: Sytanx files for OpenGL shader languages GLSL 400 and GLSL 330
|
|
717
|
+
- name: Slidedown-Syntax
|
|
718
|
+
url: git://github.com/vim-scripts/Slidedown-Syntax.git
|
|
719
|
+
type: git
|
|
720
|
+
homepage: https://github.com/vim-scripts/Slidedown-Syntax
|
|
721
|
+
desc: highlighting for the Slidedown presentation tool
|
|
722
|
+
- name: Smart-Diffsplit
|
|
723
|
+
url: git://github.com/vim-scripts/Smart-Diffsplit.git
|
|
724
|
+
type: git
|
|
725
|
+
homepage: https://github.com/vim-scripts/Smart-Diffsplit
|
|
726
|
+
desc: Diffsplit that restores window settings
|
|
727
|
+
- name: Smart-Home-Key
|
|
728
|
+
url: git://github.com/vim-scripts/Smart-Home-Key.git
|
|
729
|
+
type: git
|
|
730
|
+
homepage: https://github.com/vim-scripts/Smart-Home-Key
|
|
731
|
+
desc: Home key toggles between ^ and 0
|
|
732
|
+
- name: Smart-Parentheses
|
|
733
|
+
url: git://github.com/vim-scripts/Smart-Parentheses.git
|
|
734
|
+
type: git
|
|
735
|
+
homepage: https://github.com/vim-scripts/Smart-Parentheses
|
|
736
|
+
desc: Minimal but smart parentheses handling for programming
|
|
737
|
+
- name: Smart-Tabs
|
|
738
|
+
url: git://github.com/vim-scripts/Smart-Tabs.git
|
|
739
|
+
type: git
|
|
740
|
+
homepage: https://github.com/vim-scripts/Smart-Tabs
|
|
741
|
+
desc: Use tabs for indent, spaces for alignment
|
|
742
|
+
- name: smartbd
|
|
743
|
+
url: git://github.com/vim-scripts/smartbd.git
|
|
744
|
+
type: git
|
|
745
|
+
homepage: https://github.com/vim-scripts/smartbd
|
|
746
|
+
desc: keep splits when deleting buffers
|
|
747
|
+
- name: SmartCase
|
|
748
|
+
url: git://github.com/vim-scripts/SmartCase.git
|
|
749
|
+
type: git
|
|
750
|
+
homepage: https://github.com/vim-scripts/SmartCase
|
|
751
|
+
desc: replacing words while keeping original lower/uppercase style
|
|
752
|
+
- name: smartchr
|
|
753
|
+
url: git://github.com/vim-scripts/smartchr.git
|
|
754
|
+
type: git
|
|
755
|
+
homepage: https://github.com/vim-scripts/smartchr
|
|
756
|
+
desc: Insert several candidates with a single key
|
|
757
|
+
- name: smartmake
|
|
758
|
+
url: git://github.com/vim-scripts/smartmake.git
|
|
759
|
+
type: git
|
|
760
|
+
homepage: https://github.com/vim-scripts/smartmake
|
|
761
|
+
desc: A somehow smarter version of the make command
|
|
762
|
+
- name: Smartput
|
|
763
|
+
url: git://github.com/vim-scripts/Smartput.git
|
|
764
|
+
type: git
|
|
765
|
+
homepage: https://github.com/vim-scripts/Smartput
|
|
766
|
+
desc: Adjust spaces and commas when putting text.
|
|
767
|
+
- name: snipper
|
|
768
|
+
url: git://github.com/vim-scripts/snipper.git
|
|
769
|
+
type: git
|
|
770
|
+
homepage: https://github.com/vim-scripts/snipper
|
|
771
|
+
desc: snippets script for vim (like textmate or scribes have)
|
|
772
|
+
- name: SnippetComplete
|
|
773
|
+
url: git://github.com/vim-scripts/SnippetComplete.git
|
|
774
|
+
type: git
|
|
775
|
+
homepage: https://github.com/vim-scripts/SnippetComplete
|
|
776
|
+
desc: Insert mode completion that completes defined abbreviations.
|
|
777
|
+
- name: snippetsEmu
|
|
778
|
+
url: git://github.com/vim-scripts/snippetsEmu.git
|
|
779
|
+
type: git
|
|
780
|
+
homepage: https://github.com/vim-scripts/snippetsEmu
|
|
781
|
+
desc: An attempt to emulate TextMate's snippet expansion
|
|
782
|
+
- name: SnippetsMgr
|
|
783
|
+
url: git://github.com/vim-scripts/SnippetsMgr.git
|
|
784
|
+
type: git
|
|
785
|
+
homepage: https://github.com/vim-scripts/SnippetsMgr
|
|
786
|
+
desc: This script helps to work with code snippets.
|
|
787
|
+
- name: SnipSnap
|
|
788
|
+
url: git://github.com/vim-scripts/SnipSnap.git
|
|
789
|
+
type: git
|
|
790
|
+
homepage: https://github.com/vim-scripts/SnipSnap
|
|
791
|
+
desc: Filetype and Syntax SnipSnap Wiki.
|
|
792
|
+
- name: Socialtext-wiki-syntax-highlighting
|
|
793
|
+
url: git://github.com/vim-scripts/Socialtext-wiki-syntax-highlighting.git
|
|
794
|
+
type: git
|
|
795
|
+
homepage: https://github.com/vim-scripts/Socialtext-wiki-syntax-highlighting
|
|
796
|
+
desc: Syntax highlighting and an ftplugin for Socialtext wiki
|
|
797
|
+
- name: softblue
|
|
798
|
+
url: git://github.com/vim-scripts/softblue.git
|
|
799
|
+
type: git
|
|
800
|
+
homepage: https://github.com/vim-scripts/softblue
|
|
801
|
+
desc: A blue color scheme, low contrast
|
|
802
|
+
- name: SoftTabStops
|
|
803
|
+
url: git://github.com/vim-scripts/SoftTabStops.git
|
|
804
|
+
type: git
|
|
805
|
+
homepage: https://github.com/vim-scripts/SoftTabStops
|
|
806
|
+
desc: Set typewriter like tabstops.
|
|
807
|
+
- name: Son-of-Obisidian
|
|
808
|
+
url: git://github.com/vim-scripts/Son-of-Obisidian.git
|
|
809
|
+
type: git
|
|
810
|
+
homepage: https://github.com/vim-scripts/Son-of-Obisidian
|
|
811
|
+
desc: Port of Visual Studio 2010 Son of obsidian color scheme
|
|
812
|
+
- name: Sorcerer
|
|
813
|
+
url: git://github.com/vim-scripts/Sorcerer.git
|
|
814
|
+
type: git
|
|
815
|
+
homepage: https://github.com/vim-scripts/Sorcerer
|
|
816
|
+
desc: Dark-background GUI color scheme.
|
|
817
|
+
- name: Sorceror
|
|
818
|
+
url: git://github.com/vim-scripts/Sorceror.git
|
|
819
|
+
type: git
|
|
820
|
+
homepage: https://github.com/vim-scripts/Sorceror
|
|
821
|
+
desc: Dark-background GUI color scheme.
|
|
822
|
+
- name: sort-python-imports
|
|
823
|
+
url: git://github.com/vim-scripts/sort-python-imports.git
|
|
824
|
+
type: git
|
|
825
|
+
homepage: https://github.com/vim-scripts/sort-python-imports
|
|
826
|
+
desc: this script allows you to sort python imports alphabetically
|
|
827
|
+
- name: Specky
|
|
828
|
+
url: git://github.com/vim-scripts/Specky.git
|
|
829
|
+
type: git
|
|
830
|
+
homepage: https://github.com/vim-scripts/Specky
|
|
831
|
+
desc: Functions to help make behavioral testing easy with ruby and rspec.
|
|
832
|
+
- name: Speedware
|
|
833
|
+
url: git://github.com/vim-scripts/Speedware.git
|
|
834
|
+
type: git
|
|
835
|
+
homepage: https://github.com/vim-scripts/Speedware
|
|
836
|
+
desc: Syntax Highlighting for Speedware
|
|
837
|
+
- name: SpellChecker
|
|
838
|
+
url: git://github.com/vim-scripts/SpellChecker.git
|
|
839
|
+
type: git
|
|
840
|
+
homepage: https://github.com/vim-scripts/SpellChecker
|
|
841
|
+
desc: Spell check text including LaTeX documents
|
|
842
|
+
- name: Spiderhawk
|
|
843
|
+
url: git://github.com/vim-scripts/Spiderhawk.git
|
|
844
|
+
type: git
|
|
845
|
+
homepage: https://github.com/vim-scripts/Spiderhawk
|
|
846
|
+
desc: Initial Upload
|
|
847
|
+
- name: SpotlightOpen
|
|
848
|
+
url: git://github.com/vim-scripts/SpotlightOpen.git
|
|
849
|
+
type: git
|
|
850
|
+
homepage: https://github.com/vim-scripts/SpotlightOpen
|
|
851
|
+
desc: Open files using MacOS Tiger's Spotlight
|
|
852
|
+
- name: SQLUtilities
|
|
853
|
+
url: git://github.com/vim-scripts/SQLUtilities.git
|
|
854
|
+
type: git
|
|
855
|
+
homepage: https://github.com/vim-scripts/SQLUtilities
|
|
856
|
+
desc: SQL utilities - Formatting, generate - columns lists, procedures for databases
|
|
857
|
+
- name: sql_iabbr-2
|
|
858
|
+
url: git://github.com/vim-scripts/sql_iabbr-2.git
|
|
859
|
+
type: git
|
|
860
|
+
homepage: https://github.com/vim-scripts/sql_iabbr-2
|
|
861
|
+
desc: convert SQL keywords uppercase automatically.
|
|
862
|
+
- name: ST20-compiler-plugin
|
|
863
|
+
url: git://github.com/vim-scripts/ST20-compiler-plugin.git
|
|
864
|
+
type: git
|
|
865
|
+
homepage: https://github.com/vim-scripts/ST20-compiler-plugin
|
|
866
|
+
desc: Vim compiler plugin for ST20 C compiler
|
|
867
|
+
- name: stackreg
|
|
868
|
+
url: git://github.com/vim-scripts/stackreg.git
|
|
869
|
+
type: git
|
|
870
|
+
homepage: https://github.com/vim-scripts/stackreg
|
|
871
|
+
desc: Vz-like stackable registers
|
|
872
|
+
- name: stakeholders
|
|
873
|
+
url: git://github.com/vim-scripts/stakeholders.git
|
|
874
|
+
type: git
|
|
875
|
+
homepage: https://github.com/vim-scripts/stakeholders
|
|
876
|
+
desc: Pimp up your old templates with dynamic place-holders
|
|
877
|
+
- name: stlrefvim
|
|
878
|
+
url: git://github.com/vim-scripts/stlrefvim.git
|
|
879
|
+
type: git
|
|
880
|
+
homepage: https://github.com/vim-scripts/stlrefvim
|
|
881
|
+
desc: A C++ Standard Template Library reference manual
|
|
882
|
+
- name: strawimodo
|
|
883
|
+
url: git://github.com/vim-scripts/strawimodo.git
|
|
884
|
+
type: git
|
|
885
|
+
homepage: https://github.com/vim-scripts/strawimodo
|
|
886
|
+
desc: GUI-only - colorful but sane
|
|
887
|
+
- name: StringComplete
|
|
888
|
+
url: git://github.com/vim-scripts/StringComplete.git
|
|
889
|
+
type: git
|
|
890
|
+
homepage: https://github.com/vim-scripts/StringComplete
|
|
891
|
+
desc: Insert-completion for quoted strings
|
|
892
|
+
- name: StyleChecker--perl
|
|
893
|
+
url: git://github.com/vim-scripts/StyleChecker--perl.git
|
|
894
|
+
type: git
|
|
895
|
+
homepage: https://github.com/vim-scripts/StyleChecker--perl
|
|
896
|
+
desc: Tool for finding and highlighting repeated words in file
|
|
897
|
+
- name: submode
|
|
898
|
+
url: git://github.com/vim-scripts/submode.git
|
|
899
|
+
type: git
|
|
900
|
+
homepage: https://github.com/vim-scripts/submode
|
|
901
|
+
desc: Create your own submodes
|
|
902
|
+
- name: sudoku
|
|
903
|
+
url: git://github.com/vim-scripts/sudoku.git
|
|
904
|
+
type: git
|
|
905
|
+
homepage: https://github.com/vim-scripts/sudoku
|
|
906
|
+
desc: Sudoku solving helper
|
|
907
|
+
- name: Sudoku-Solver
|
|
908
|
+
url: git://github.com/vim-scripts/Sudoku-Solver.git
|
|
909
|
+
type: git
|
|
910
|
+
homepage: https://github.com/vim-scripts/Sudoku-Solver
|
|
911
|
+
desc: Plugin for solving Sudoku puzzles
|
|
912
|
+
- name: Super-Shell-Indent
|
|
913
|
+
url: git://github.com/vim-scripts/Super-Shell-Indent.git
|
|
914
|
+
type: git
|
|
915
|
+
homepage: https://github.com/vim-scripts/Super-Shell-Indent
|
|
916
|
+
desc: Improved indentation for shell scripts
|
|
917
|
+
- name: svncommand-tng
|
|
918
|
+
url: git://github.com/vim-scripts/svncommand-tng.git
|
|
919
|
+
type: git
|
|
920
|
+
homepage: https://github.com/vim-scripts/svncommand-tng
|
|
921
|
+
desc: Subversion (svn) Integration Plugin, the next generation (tng)
|
|
922
|
+
- name: svndiff
|
|
923
|
+
url: git://github.com/vim-scripts/svndiff.git
|
|
924
|
+
type: git
|
|
925
|
+
homepage: https://github.com/vim-scripts/svndiff
|
|
926
|
+
desc: Shows colored signs in buffer indicating diff with original svn/git file,
|
|
927
|
+
- name: svnvimdiff
|
|
928
|
+
url: git://github.com/vim-scripts/svnvimdiff.git
|
|
929
|
+
type: git
|
|
930
|
+
homepage: https://github.com/vim-scripts/svnvimdiff
|
|
931
|
+
desc: svn diff + vimdiff
|
|
932
|
+
- name: svn_commit
|
|
933
|
+
url: git://github.com/vim-scripts/svn_commit.git
|
|
934
|
+
type: git
|
|
935
|
+
homepage: https://github.com/vim-scripts/svn_commit
|
|
936
|
+
desc: read in aborted subversion commit log messages
|
|
937
|
+
- name: swap
|
|
938
|
+
url: git://github.com/vim-scripts/swap.git
|
|
939
|
+
type: git
|
|
940
|
+
homepage: https://github.com/vim-scripts/swap
|
|
941
|
+
desc: Easy swapping of text
|
|
942
|
+
- name: swap-parameters
|
|
943
|
+
url: git://github.com/vim-scripts/swap-parameters.git
|
|
944
|
+
type: git
|
|
945
|
+
homepage: https://github.com/vim-scripts/swap-parameters
|
|
946
|
+
desc: swap parameters of a function (requires python)
|
|
947
|
+
- name: SwapHeader
|
|
948
|
+
url: git://github.com/vim-scripts/SwapHeader.git
|
|
949
|
+
type: git
|
|
950
|
+
homepage: https://github.com/vim-scripts/SwapHeader
|
|
951
|
+
desc: This script allows to switch between source and header files.
|
|
952
|
+
- name: SwapIt
|
|
953
|
+
url: git://github.com/vim-scripts/SwapIt.git
|
|
954
|
+
type: git
|
|
955
|
+
homepage: https://github.com/vim-scripts/SwapIt
|
|
956
|
+
desc: Extensible keyword swapper (turn yes to no, True to False and more)
|
|
957
|
+
- name: SWIFT-ATE-Syntax
|
|
958
|
+
url: git://github.com/vim-scripts/SWIFT-ATE-Syntax.git
|
|
959
|
+
type: git
|
|
960
|
+
homepage: https://github.com/vim-scripts/SWIFT-ATE-Syntax
|
|
961
|
+
desc: SWIFT ATE files highlighting
|
|
962
|
+
- name: swig
|
|
963
|
+
url: git://github.com/vim-scripts/swig.git
|
|
964
|
+
type: git
|
|
965
|
+
homepage: https://github.com/vim-scripts/swig
|
|
966
|
+
desc: SWIG syntax
|
|
967
|
+
- name: SWIG-syntax
|
|
968
|
+
url: git://github.com/vim-scripts/SWIG-syntax.git
|
|
969
|
+
type: git
|
|
970
|
+
homepage: https://github.com/vim-scripts/SWIG-syntax
|
|
971
|
+
desc: Syntax file for SWIG
|
|
972
|
+
- name: Switch
|
|
973
|
+
url: git://github.com/vim-scripts/Switch.git
|
|
974
|
+
type: git
|
|
975
|
+
homepage: https://github.com/vim-scripts/Switch
|
|
976
|
+
desc: Quick toggling of boolean options
|
|
977
|
+
- name: switch-files
|
|
978
|
+
url: git://github.com/vim-scripts/switch-files.git
|
|
979
|
+
type: git
|
|
980
|
+
homepage: https://github.com/vim-scripts/switch-files
|
|
981
|
+
desc: switch between .c and .h files or different path and same filename easily
|
|
982
|
+
- name: SwitchExt
|
|
983
|
+
url: git://github.com/vim-scripts/SwitchExt.git
|
|
984
|
+
type: git
|
|
985
|
+
homepage: https://github.com/vim-scripts/SwitchExt
|
|
986
|
+
desc: Switch between source and header files
|
|
987
|
+
- name: Syntax-for-XUL
|
|
988
|
+
url: git://github.com/vim-scripts/Syntax-for-XUL.git
|
|
989
|
+
type: git
|
|
990
|
+
homepage: https://github.com/vim-scripts/Syntax-for-XUL
|
|
991
|
+
desc: Highlighting for XML User interface Language.
|
|
992
|
+
- name: syntax-highlighting-for-tintinttpp
|
|
993
|
+
url: git://github.com/vim-scripts/syntax-highlighting-for-tintinttpp.git
|
|
994
|
+
type: git
|
|
995
|
+
homepage: https://github.com/vim-scripts/syntax-highlighting-for-tintinttpp
|
|
996
|
+
desc: great little syntax file for all you mudders!
|
|
997
|
+
- name: SyntaxAlwaysOn
|
|
998
|
+
url: git://github.com/vim-scripts/SyntaxAlwaysOn.git
|
|
999
|
+
type: git
|
|
1000
|
+
homepage: https://github.com/vim-scripts/SyntaxAlwaysOn
|
|
1001
|
+
desc: deprecated
|
|
1002
|
+
- name: SyntaxComplete
|
|
1003
|
+
url: git://github.com/vim-scripts/SyntaxComplete.git
|
|
1004
|
+
type: git
|
|
1005
|
+
homepage: https://github.com/vim-scripts/SyntaxComplete
|
|
1006
|
+
desc: OMNI Completion based on the current syntax highlights
|
|
1007
|
+
- name: syslog-syntax-file
|
|
1008
|
+
url: git://github.com/vim-scripts/syslog-syntax-file.git
|
|
1009
|
+
type: git
|
|
1010
|
+
homepage: https://github.com/vim-scripts/syslog-syntax-file
|
|
1011
|
+
desc: Adds syntax color to log files created by sysklogd.
|
|
1012
|
+
- name: Tabline-wrapping-patch
|
|
1013
|
+
url: git://github.com/vim-scripts/Tabline-wrapping-patch.git
|
|
1014
|
+
type: git
|
|
1015
|
+
homepage: https://github.com/vim-scripts/Tabline-wrapping-patch
|
|
1016
|
+
desc: Allows tabline strings to wrap onto new lines
|
|
1017
|
+
- name: Tabmerge
|
|
1018
|
+
url: git://github.com/vim-scripts/Tabmerge.git
|
|
1019
|
+
type: git
|
|
1020
|
+
homepage: https://github.com/vim-scripts/Tabmerge
|
|
1021
|
+
desc: Merge a tab's windows with the current tab
|
|
1022
|
+
- name: tabops
|
|
1023
|
+
url: git://github.com/vim-scripts/tabops.git
|
|
1024
|
+
type: git
|
|
1025
|
+
homepage: https://github.com/vim-scripts/tabops
|
|
1026
|
+
desc: A collection of miscellaneous functionalities operating tabs.
|
|
1027
|
+
- name: tac-syntax
|
|
1028
|
+
url: git://github.com/vim-scripts/tac-syntax.git
|
|
1029
|
+
type: git
|
|
1030
|
+
homepage: https://github.com/vim-scripts/tac-syntax
|
|
1031
|
+
desc: Syntax for Tac files (http://slimmer.gforge.inria.fr/tac/)
|
|
1032
|
+
- name: Tag-Signature-Balloons
|
|
1033
|
+
url: git://github.com/vim-scripts/Tag-Signature-Balloons.git
|
|
1034
|
+
type: git
|
|
1035
|
+
homepage: https://github.com/vim-scripts/Tag-Signature-Balloons
|
|
1036
|
+
desc: Tag Signatures in Balloon Tooltips
|
|
1037
|
+
- name: TagManager-BETA
|
|
1038
|
+
url: git://github.com/vim-scripts/TagManager-BETA.git
|
|
1039
|
+
type: git
|
|
1040
|
+
homepage: https://github.com/vim-scripts/TagManager-BETA
|
|
1041
|
+
desc: Build, manage and keep tag databases up-to-date within Vim
|
|
1042
|
+
- name: tagmaster
|
|
1043
|
+
url: git://github.com/vim-scripts/tagmaster.git
|
|
1044
|
+
type: git
|
|
1045
|
+
homepage: https://github.com/vim-scripts/tagmaster
|
|
1046
|
+
desc: Tags manipulation script
|
|
1047
|
+
- name: tagMenu
|
|
1048
|
+
url: git://github.com/vim-scripts/tagMenu.git
|
|
1049
|
+
type: git
|
|
1050
|
+
homepage: https://github.com/vim-scripts/tagMenu
|
|
1051
|
+
desc: Popup menu showing tags
|
|
1052
|
+
- name: Tango2
|
|
1053
|
+
url: git://github.com/vim-scripts/Tango2.git
|
|
1054
|
+
type: git
|
|
1055
|
+
homepage: https://github.com/vim-scripts/Tango2
|
|
1056
|
+
desc: A Tango based colour theme for Vim (ported from gedit)
|
|
1057
|
+
- name: tangoshady
|
|
1058
|
+
url: git://github.com/vim-scripts/tangoshady.git
|
|
1059
|
+
type: git
|
|
1060
|
+
homepage: https://github.com/vim-scripts/tangoshady
|
|
1061
|
+
desc: the real TANGO colorscheme
|
|
1062
|
+
- name: TaQua
|
|
1063
|
+
url: git://github.com/vim-scripts/TaQua.git
|
|
1064
|
+
type: git
|
|
1065
|
+
homepage: https://github.com/vim-scripts/TaQua
|
|
1066
|
+
desc: baby colors for use with aqua themes
|
|
1067
|
+
- name: tAssert
|
|
1068
|
+
url: git://github.com/vim-scripts/tAssert.git
|
|
1069
|
+
type: git
|
|
1070
|
+
homepage: https://github.com/vim-scripts/tAssert
|
|
1071
|
+
desc: Simple assertions, poor man's contracts for vim script
|
|
1072
|
+
- name: tbf-vimfiles
|
|
1073
|
+
url: git://github.com/vim-scripts/tbf-vimfiles.git
|
|
1074
|
+
type: git
|
|
1075
|
+
homepage: https://github.com/vim-scripts/tbf-vimfiles
|
|
1076
|
+
desc: Collection of syntax files for C, C#, Java, NSIS and Doxygen
|
|
1077
|
+
- name: tbibtools
|
|
1078
|
+
url: git://github.com/vim-scripts/tbibtools.git
|
|
1079
|
+
type: git
|
|
1080
|
+
homepage: https://github.com/vim-scripts/tbibtools
|
|
1081
|
+
desc: bibtex-related utilities (sort, reformat, list contents ...)
|
|
1082
|
+
- name: tcalc
|
|
1083
|
+
url: git://github.com/vim-scripts/tcalc.git
|
|
1084
|
+
type: git
|
|
1085
|
+
homepage: https://github.com/vim-scripts/tcalc
|
|
1086
|
+
desc: A small ruby-based RPN-calculator
|
|
1087
|
+
- name: tchaba
|
|
1088
|
+
url: git://github.com/vim-scripts/tchaba.git
|
|
1089
|
+
type: git
|
|
1090
|
+
homepage: https://github.com/vim-scripts/tchaba
|
|
1091
|
+
desc: A dark color scheme, 256 color terminals
|
|
1092
|
+
- name: template-file-loader
|
|
1093
|
+
url: git://github.com/vim-scripts/template-file-loader.git
|
|
1094
|
+
type: git
|
|
1095
|
+
homepage: https://github.com/vim-scripts/template-file-loader
|
|
1096
|
+
desc: Loads a template file and does customizable processing when editing a new file.
|
|
1097
|
+
- name: Templates-for-Files-and-Function-Groups
|
|
1098
|
+
url: git://github.com/vim-scripts/Templates-for-Files-and-Function-Groups.git
|
|
1099
|
+
type: git
|
|
1100
|
+
homepage: https://github.com/vim-scripts/Templates-for-Files-and-Function-Groups
|
|
1101
|
+
desc: Yet another file template script.
|
|
1102
|
+
- name: Templeet
|
|
1103
|
+
url: git://github.com/vim-scripts/Templeet.git
|
|
1104
|
+
type: git
|
|
1105
|
+
homepage: https://github.com/vim-scripts/Templeet
|
|
1106
|
+
desc: Syntax file for templeet
|
|
1107
|
+
- name: Teradata-syntax
|
|
1108
|
+
url: git://github.com/vim-scripts/Teradata-syntax.git
|
|
1109
|
+
type: git
|
|
1110
|
+
homepage: https://github.com/vim-scripts/Teradata-syntax
|
|
1111
|
+
desc: Teradata SQL, BTEQ Commands (Teradata V2R4,V2R5)
|
|
1112
|
+
- name: teraterm
|
|
1113
|
+
url: git://github.com/vim-scripts/teraterm.git
|
|
1114
|
+
type: git
|
|
1115
|
+
homepage: https://github.com/vim-scripts/teraterm
|
|
1116
|
+
desc: Teraterm MACRO syntax highlighting
|
|
1117
|
+
- name: tesla
|
|
1118
|
+
url: git://github.com/vim-scripts/tesla.git
|
|
1119
|
+
type: git
|
|
1120
|
+
homepage: https://github.com/vim-scripts/tesla
|
|
1121
|
+
desc: A dark color scheme for the GUI
|
|
1122
|
+
- name: testname
|
|
1123
|
+
url: git://github.com/vim-scripts/testname.git
|
|
1124
|
+
type: git
|
|
1125
|
+
homepage: https://github.com/vim-scripts/testname
|
|
1126
|
+
desc: Generate unused file name for testing purpose
|
|
1127
|
+
- name: TextMarker
|
|
1128
|
+
url: git://github.com/vim-scripts/TextMarker.git
|
|
1129
|
+
type: git
|
|
1130
|
+
homepage: https://github.com/vim-scripts/TextMarker
|
|
1131
|
+
desc: GUI to mark same words in a file using mouse and toolbar buttons, fast and easy
|
|
1132
|
+
- name: textobj-datetime
|
|
1133
|
+
url: git://github.com/vim-scripts/textobj-datetime.git
|
|
1134
|
+
type: git
|
|
1135
|
+
homepage: https://github.com/vim-scripts/textobj-datetime
|
|
1136
|
+
desc: Text objects for date and time
|
|
1137
|
+
- name: textobj-diff
|
|
1138
|
+
url: git://github.com/vim-scripts/textobj-diff.git
|
|
1139
|
+
type: git
|
|
1140
|
+
homepage: https://github.com/vim-scripts/textobj-diff
|
|
1141
|
+
desc: Text objects for ouputs of diff(1)
|
|
1142
|
+
- name: textobj-entire
|
|
1143
|
+
url: git://github.com/vim-scripts/textobj-entire.git
|
|
1144
|
+
type: git
|
|
1145
|
+
homepage: https://github.com/vim-scripts/textobj-entire
|
|
1146
|
+
desc: Text objects for entire buffer
|
|
1147
|
+
- name: textobj-fatpack
|
|
1148
|
+
url: git://github.com/vim-scripts/textobj-fatpack.git
|
|
1149
|
+
type: git
|
|
1150
|
+
homepage: https://github.com/vim-scripts/textobj-fatpack
|
|
1151
|
+
desc: Various text objects in single package
|
|
1152
|
+
- name: textobj-fold
|
|
1153
|
+
url: git://github.com/vim-scripts/textobj-fold.git
|
|
1154
|
+
type: git
|
|
1155
|
+
homepage: https://github.com/vim-scripts/textobj-fold
|
|
1156
|
+
desc: Text objects for foldings
|
|
1157
|
+
- name: textobj-function
|
|
1158
|
+
url: git://github.com/vim-scripts/textobj-function.git
|
|
1159
|
+
type: git
|
|
1160
|
+
homepage: https://github.com/vim-scripts/textobj-function
|
|
1161
|
+
desc: Text object for a function
|
|
1162
|
+
- name: textobj-indent
|
|
1163
|
+
url: git://github.com/vim-scripts/textobj-indent.git
|
|
1164
|
+
type: git
|
|
1165
|
+
homepage: https://github.com/vim-scripts/textobj-indent
|
|
1166
|
+
desc: Text objects for indented blocks of lines
|
|
1167
|
+
- name: textobj-jabraces
|
|
1168
|
+
url: git://github.com/vim-scripts/textobj-jabraces.git
|
|
1169
|
+
type: git
|
|
1170
|
+
homepage: https://github.com/vim-scripts/textobj-jabraces
|
|
1171
|
+
desc: Text objects for Japanese braces
|
|
1172
|
+
- name: textobj-lastpat
|
|
1173
|
+
url: git://github.com/vim-scripts/textobj-lastpat.git
|
|
1174
|
+
type: git
|
|
1175
|
+
homepage: https://github.com/vim-scripts/textobj-lastpat
|
|
1176
|
+
desc: Text objects for the last searched pattern
|
|
1177
|
+
- name: textobj-syntax
|
|
1178
|
+
url: git://github.com/vim-scripts/textobj-syntax.git
|
|
1179
|
+
type: git
|
|
1180
|
+
homepage: https://github.com/vim-scripts/textobj-syntax
|
|
1181
|
+
desc: Text objects for syntax highlighted items
|
|
1182
|
+
- name: textobj-user
|
|
1183
|
+
url: git://github.com/vim-scripts/textobj-user.git
|
|
1184
|
+
type: git
|
|
1185
|
+
homepage: https://github.com/vim-scripts/textobj-user
|
|
1186
|
+
desc: Support for user-defined text objects
|
|
1187
|
+
- name: textobj-verticalbar
|
|
1188
|
+
url: git://github.com/vim-scripts/textobj-verticalbar.git
|
|
1189
|
+
type: git
|
|
1190
|
+
homepage: https://github.com/vim-scripts/textobj-verticalbar
|
|
1191
|
+
desc: Text objects for vertical bar
|
|
1192
|
+
- name: Thesaurus
|
|
1193
|
+
url: git://github.com/vim-scripts/Thesaurus.git
|
|
1194
|
+
type: git
|
|
1195
|
+
homepage: https://github.com/vim-scripts/Thesaurus
|
|
1196
|
+
desc: Thesaurus suggestion script
|
|
1197
|
+
- name: Thousand-separator
|
|
1198
|
+
url: git://github.com/vim-scripts/Thousand-separator.git
|
|
1199
|
+
type: git
|
|
1200
|
+
homepage: https://github.com/vim-scripts/Thousand-separator
|
|
1201
|
+
desc: Vim script to put thousand separator in between numbers.
|
|
1202
|
+
- name: TI-Basic-Syntax
|
|
1203
|
+
url: git://github.com/vim-scripts/TI-Basic-Syntax.git
|
|
1204
|
+
type: git
|
|
1205
|
+
homepage: https://github.com/vim-scripts/TI-Basic-Syntax
|
|
1206
|
+
desc: Syntax for TI-99/4+ Basic and Extended Basic
|
|
1207
|
+
- name: Tibet
|
|
1208
|
+
url: git://github.com/vim-scripts/Tibet.git
|
|
1209
|
+
type: git
|
|
1210
|
+
homepage: https://github.com/vim-scripts/Tibet
|
|
1211
|
+
desc: A Colorscheme Inspired in Tibetan coloring
|
|
1212
|
+
- name: tiddlywiki
|
|
1213
|
+
url: git://github.com/vim-scripts/tiddlywiki.git
|
|
1214
|
+
type: git
|
|
1215
|
+
homepage: https://github.com/vim-scripts/tiddlywiki
|
|
1216
|
+
desc: TiddlyWiki syntax file
|
|
1217
|
+
- name: tidy
|
|
1218
|
+
url: git://github.com/vim-scripts/tidy.git
|
|
1219
|
+
type: git
|
|
1220
|
+
homepage: https://github.com/vim-scripts/tidy
|
|
1221
|
+
desc: Color scheme 'tidy' based on PerlTidy's colors.
|
|
1222
|
+
- name: tidy-compiler-script
|
|
1223
|
+
url: git://github.com/vim-scripts/tidy-compiler-script.git
|
|
1224
|
+
type: git
|
|
1225
|
+
homepage: https://github.com/vim-scripts/tidy-compiler-script
|
|
1226
|
+
desc: compiler script for tidy
|
|
1227
|
+
- name: TIMEIT
|
|
1228
|
+
url: git://github.com/vim-scripts/TIMEIT.git
|
|
1229
|
+
type: git
|
|
1230
|
+
homepage: https://github.com/vim-scripts/TIMEIT
|
|
1231
|
+
desc: Time execution of vim command(s) with subsecond resolution
|
|
1232
|
+
- name: timekeeper
|
|
1233
|
+
url: git://github.com/vim-scripts/timekeeper.git
|
|
1234
|
+
type: git
|
|
1235
|
+
homepage: https://github.com/vim-scripts/timekeeper
|
|
1236
|
+
desc: keeps a journal of used time
|
|
1237
|
+
- name: Timer-routine
|
|
1238
|
+
url: git://github.com/vim-scripts/Timer-routine.git
|
|
1239
|
+
type: git
|
|
1240
|
+
homepage: https://github.com/vim-scripts/Timer-routine
|
|
1241
|
+
desc: Does a 'timer' for vimscript like there is on other languages
|
|
1242
|
+
- name: tmru
|
|
1243
|
+
url: git://github.com/vim-scripts/tmru.git
|
|
1244
|
+
type: git
|
|
1245
|
+
homepage: https://github.com/vim-scripts/tmru
|
|
1246
|
+
desc: Most Recently Used Files
|
|
1247
|
+
- name: tobase
|
|
1248
|
+
url: git://github.com/vim-scripts/tobase.git
|
|
1249
|
+
type: git
|
|
1250
|
+
homepage: https://github.com/vim-scripts/tobase
|
|
1251
|
+
desc: Convert from base(2,8,10,16) to base(2-32). Also character to html entity.
|
|
1252
|
+
- name: tocterm
|
|
1253
|
+
url: git://github.com/vim-scripts/tocterm.git
|
|
1254
|
+
type: git
|
|
1255
|
+
homepage: https://github.com/vim-scripts/tocterm
|
|
1256
|
+
desc: Utitliy to add cterm support to color schemes without the GUIColorSchemes plugin
|
|
1257
|
+
- name: TODO-List
|
|
1258
|
+
url: git://github.com/vim-scripts/TODO-List.git
|
|
1259
|
+
type: git
|
|
1260
|
+
homepage: https://github.com/vim-scripts/TODO-List
|
|
1261
|
+
desc: Syntax highlighting for a todo list
|
|
1262
|
+
- name: Toggle
|
|
1263
|
+
url: git://github.com/vim-scripts/Toggle.git
|
|
1264
|
+
type: git
|
|
1265
|
+
homepage: https://github.com/vim-scripts/Toggle
|
|
1266
|
+
desc: allows you to toggle bool (true/false) and other words with a shortcut
|
|
1267
|
+
- name: Toggle-Window-Size
|
|
1268
|
+
url: git://github.com/vim-scripts/Toggle-Window-Size.git
|
|
1269
|
+
type: git
|
|
1270
|
+
homepage: https://github.com/vim-scripts/Toggle-Window-Size
|
|
1271
|
+
desc: Toggle the OS Window size(s) of GVIM
|
|
1272
|
+
- name: ToggleComment
|
|
1273
|
+
url: git://github.com/vim-scripts/ToggleComment.git
|
|
1274
|
+
type: git
|
|
1275
|
+
homepage: https://github.com/vim-scripts/ToggleComment
|
|
1276
|
+
desc: Simple, flexibel, language-independent mappings to de-/commentify
|
|
1277
|
+
- name: ToggleLineNumberMode
|
|
1278
|
+
url: git://github.com/vim-scripts/ToggleLineNumberMode.git
|
|
1279
|
+
type: git
|
|
1280
|
+
homepage: https://github.com/vim-scripts/ToggleLineNumberMode
|
|
1281
|
+
desc: Switch between "Relative" / "Absolute" line number
|
|
1282
|
+
- name: Tortoise
|
|
1283
|
+
url: git://github.com/vim-scripts/Tortoise.git
|
|
1284
|
+
type: git
|
|
1285
|
+
homepage: https://github.com/vim-scripts/Tortoise
|
|
1286
|
+
desc: Automate TortoiseSVN from vim
|
|
1287
|
+
- name: TortoiseTyping
|
|
1288
|
+
url: git://github.com/vim-scripts/TortoiseTyping.git
|
|
1289
|
+
type: git
|
|
1290
|
+
homepage: https://github.com/vim-scripts/TortoiseTyping
|
|
1291
|
+
desc: a minimal typing tutor for touch-typists
|
|
1292
|
+
- name: Tower-of-Hanoi
|
|
1293
|
+
url: git://github.com/vim-scripts/Tower-of-Hanoi.git
|
|
1294
|
+
type: git
|
|
1295
|
+
homepage: https://github.com/vim-scripts/Tower-of-Hanoi
|
|
1296
|
+
desc: Tower of Hanoi game for Vim
|
|
1297
|
+
- name: tplugin
|
|
1298
|
+
url: git://github.com/vim-scripts/tplugin.git
|
|
1299
|
+
type: git
|
|
1300
|
+
homepage: https://github.com/vim-scripts/tplugin
|
|
1301
|
+
desc: A plugin loader/runtimepath manager with autoload capabilities
|
|
1302
|
+
- name: Trac-Wikimarkup
|
|
1303
|
+
url: git://github.com/vim-scripts/Trac-Wikimarkup.git
|
|
1304
|
+
type: git
|
|
1305
|
+
homepage: https://github.com/vim-scripts/Trac-Wikimarkup
|
|
1306
|
+
desc: Better syntax highlighting for Trac wikimarkup
|
|
1307
|
+
- name: tracwiki
|
|
1308
|
+
url: git://github.com/vim-scripts/tracwiki.git
|
|
1309
|
+
type: git
|
|
1310
|
+
homepage: https://github.com/vim-scripts/tracwiki
|
|
1311
|
+
desc: Vim syntax file for Trac wiki syntax
|
|
1312
|
+
- name: trag
|
|
1313
|
+
url: git://github.com/vim-scripts/trag.git
|
|
1314
|
+
type: git
|
|
1315
|
+
homepage: https://github.com/vim-scripts/trag
|
|
1316
|
+
desc: A language & project-aware regexp builder & runner for vimgrep
|
|
1317
|
+
- name: TranslateEnToCn
|
|
1318
|
+
url: git://github.com/vim-scripts/TranslateEnToCn.git
|
|
1319
|
+
type: git
|
|
1320
|
+
homepage: https://github.com/vim-scripts/TranslateEnToCn
|
|
1321
|
+
desc: translate english to chinese in vim
|
|
1322
|
+
- name: TranslateIt
|
|
1323
|
+
url: git://github.com/vim-scripts/TranslateIt.git
|
|
1324
|
+
type: git
|
|
1325
|
+
homepage: https://github.com/vim-scripts/TranslateIt
|
|
1326
|
+
desc: Translate a word under cursor using custom dictionary utility
|
|
1327
|
+
- name: translit
|
|
1328
|
+
url: git://github.com/vim-scripts/translit.git
|
|
1329
|
+
type: git
|
|
1330
|
+
homepage: https://github.com/vim-scripts/translit
|
|
1331
|
+
desc: Transliteration mode for Vim (russian, greek)
|
|
1332
|
+
- name: Translit3
|
|
1333
|
+
url: git://github.com/vim-scripts/Translit3.git
|
|
1334
|
+
type: git
|
|
1335
|
+
homepage: https://github.com/vim-scripts/Translit3
|
|
1336
|
+
desc: Transliterate a string or your input
|
|
1337
|
+
- name: translit_converter
|
|
1338
|
+
url: git://github.com/vim-scripts/translit_converter.git
|
|
1339
|
+
type: git
|
|
1340
|
+
homepage: https://github.com/vim-scripts/translit_converter
|
|
1341
|
+
desc: convert transliterated text (russian)
|
|
1342
|
+
- name: trogdor
|
|
1343
|
+
url: git://github.com/vim-scripts/trogdor.git
|
|
1344
|
+
type: git
|
|
1345
|
+
homepage: https://github.com/vim-scripts/trogdor
|
|
1346
|
+
desc: A coding theme to help minimize eye strain.
|
|
1347
|
+
- name: tselectbuffer
|
|
1348
|
+
url: git://github.com/vim-scripts/tselectbuffer.git
|
|
1349
|
+
type: git
|
|
1350
|
+
homepage: https://github.com/vim-scripts/tselectbuffer
|
|
1351
|
+
desc: A quick buffer selector/switcher
|
|
1352
|
+
- name: tselectfiles
|
|
1353
|
+
url: git://github.com/vim-scripts/tselectfiles.git
|
|
1354
|
+
type: git
|
|
1355
|
+
homepage: https://github.com/vim-scripts/tselectfiles
|
|
1356
|
+
desc: A quick file selector/browser/explorer (sort of)
|
|
1357
|
+
- name: tSkeleton
|
|
1358
|
+
url: git://github.com/vim-scripts/tSkeleton.git
|
|
1359
|
+
type: git
|
|
1360
|
+
homepage: https://github.com/vim-scripts/tSkeleton
|
|
1361
|
+
desc: File Templates and Code Skeletons/Snippets
|
|
1362
|
+
- name: TT2-syntax
|
|
1363
|
+
url: git://github.com/vim-scripts/TT2-syntax.git
|
|
1364
|
+
type: git
|
|
1365
|
+
homepage: https://github.com/vim-scripts/TT2-syntax
|
|
1366
|
+
desc: " Syntax Highlight for Template-Toolkit 2.x"
|
|
1367
|
+
- name: ttagcomplete
|
|
1368
|
+
url: git://github.com/vim-scripts/ttagcomplete.git
|
|
1369
|
+
type: git
|
|
1370
|
+
homepage: https://github.com/vim-scripts/ttagcomplete
|
|
1371
|
+
desc: Context-sensitive tags-based completion and code skeletons
|
|
1372
|
+
- name: ttagecho
|
|
1373
|
+
url: git://github.com/vim-scripts/ttagecho.git
|
|
1374
|
+
type: git
|
|
1375
|
+
homepage: https://github.com/vim-scripts/ttagecho
|
|
1376
|
+
desc: Show current tag information
|
|
1377
|
+
- name: ttags
|
|
1378
|
+
url: git://github.com/vim-scripts/ttags.git
|
|
1379
|
+
type: git
|
|
1380
|
+
homepage: https://github.com/vim-scripts/ttags
|
|
1381
|
+
desc: Tag list browser (List, filter, preview, jump to tags)
|
|
1382
|
+
- name: ttcn-dict
|
|
1383
|
+
url: git://github.com/vim-scripts/ttcn-dict.git
|
|
1384
|
+
type: git
|
|
1385
|
+
homepage: https://github.com/vim-scripts/ttcn-dict
|
|
1386
|
+
desc: TTCN-3 dictionary (keyword completion) file
|
|
1387
|
+
- name: ttcn-ftplugin
|
|
1388
|
+
url: git://github.com/vim-scripts/ttcn-ftplugin.git
|
|
1389
|
+
type: git
|
|
1390
|
+
homepage: https://github.com/vim-scripts/ttcn-ftplugin
|
|
1391
|
+
desc: TTCN-3 ftplugin file
|
|
1392
|
+
- name: ttcn-indent
|
|
1393
|
+
url: git://github.com/vim-scripts/ttcn-indent.git
|
|
1394
|
+
type: git
|
|
1395
|
+
homepage: https://github.com/vim-scripts/ttcn-indent
|
|
1396
|
+
desc: TTCN-3 indent file
|
|
1397
|
+
- name: ttcn-syntax
|
|
1398
|
+
url: git://github.com/vim-scripts/ttcn-syntax.git
|
|
1399
|
+
type: git
|
|
1400
|
+
homepage: https://github.com/vim-scripts/ttcn-syntax
|
|
1401
|
+
desc: TTCN-3 syntax highlighting file
|
|
1402
|
+
- name: TTCoach
|
|
1403
|
+
url: git://github.com/vim-scripts/TTCoach.git
|
|
1404
|
+
type: git
|
|
1405
|
+
homepage: https://github.com/vim-scripts/TTCoach
|
|
1406
|
+
desc: Utility to train touch typing skills
|
|
1407
|
+
- name: TwitVim
|
|
1408
|
+
url: git://github.com/vim-scripts/TwitVim.git
|
|
1409
|
+
type: git
|
|
1410
|
+
homepage: https://github.com/vim-scripts/TwitVim
|
|
1411
|
+
desc: Twitter client for Vim
|
|
1412
|
+
- name: two2tango
|
|
1413
|
+
url: git://github.com/vim-scripts/two2tango.git
|
|
1414
|
+
type: git
|
|
1415
|
+
homepage: https://github.com/vim-scripts/two2tango
|
|
1416
|
+
desc: Colorscheme based upon Tango palette
|
|
1417
|
+
- name: txt2tags
|
|
1418
|
+
url: git://github.com/vim-scripts/txt2tags.git
|
|
1419
|
+
type: git
|
|
1420
|
+
homepage: https://github.com/vim-scripts/txt2tags
|
|
1421
|
+
desc: Syntax highlighting for txt2tags documents
|
|
1422
|
+
- name: txt2tags-menu
|
|
1423
|
+
url: git://github.com/vim-scripts/txt2tags-menu.git
|
|
1424
|
+
type: git
|
|
1425
|
+
homepage: https://github.com/vim-scripts/txt2tags-menu
|
|
1426
|
+
desc: gVim menu for txt2tags
|
|
1427
|
+
- name: TxtBrowser
|
|
1428
|
+
url: git://github.com/vim-scripts/TxtBrowser.git
|
|
1429
|
+
type: git
|
|
1430
|
+
homepage: https://github.com/vim-scripts/TxtBrowser
|
|
1431
|
+
desc: Browse plain text easily(show the title tag and syntax highlight)
|
|
1432
|
+
- name: Txtfmt-The-Vim-Highlighter
|
|
1433
|
+
url: git://github.com/vim-scripts/Txtfmt-The-Vim-Highlighter.git
|
|
1434
|
+
type: git
|
|
1435
|
+
homepage: https://github.com/vim-scripts/Txtfmt-The-Vim-Highlighter
|
|
1436
|
+
desc: ""Rich text" highlighting in Vim! (colors, underline, bold, italic, etc...)"
|
|
1437
|
+
- name: typeredeemer
|
|
1438
|
+
url: git://github.com/vim-scripts/typeredeemer.git
|
|
1439
|
+
type: git
|
|
1440
|
+
homepage: https://github.com/vim-scripts/typeredeemer
|
|
1441
|
+
desc: Simple font-size unit conversion for your CSS stylesheets
|
|
1442
|
+
- name: UltiSnips
|
|
1443
|
+
url: git://github.com/vim-scripts/UltiSnips.git
|
|
1444
|
+
type: git
|
|
1445
|
+
homepage: https://github.com/vim-scripts/UltiSnips
|
|
1446
|
+
desc: The ultimate snippet solution for python enabled Vim.
|
|
1447
|
+
- name: umber-green
|
|
1448
|
+
url: git://github.com/vim-scripts/umber-green.git
|
|
1449
|
+
type: git
|
|
1450
|
+
homepage: https://github.com/vim-scripts/umber-green
|
|
1451
|
+
desc: Umber and green monochrome monitor nostalgia.
|
|
1452
|
+
- name: UniCycle
|
|
1453
|
+
url: git://github.com/vim-scripts/UniCycle.git
|
|
1454
|
+
type: git
|
|
1455
|
+
homepage: https://github.com/vim-scripts/UniCycle
|
|
1456
|
+
desc: Unicode character cycler
|
|
1457
|
+
- name: unite-colorscheme
|
|
1458
|
+
url: git://github.com/vim-scripts/unite-colorscheme.git
|
|
1459
|
+
type: git
|
|
1460
|
+
homepage: https://github.com/vim-scripts/unite-colorscheme
|
|
1461
|
+
desc: A Unite.vim plugin for changing your colorscheme.
|
|
1462
|
+
- name: unite-font
|
|
1463
|
+
url: git://github.com/vim-scripts/unite-font.git
|
|
1464
|
+
type: git
|
|
1465
|
+
homepage: https://github.com/vim-scripts/unite-font
|
|
1466
|
+
desc: A Unite.vim plugin for changing your font.
|
|
1467
|
+
- name: unite-locate
|
|
1468
|
+
url: git://github.com/vim-scripts/unite-locate.git
|
|
1469
|
+
type: git
|
|
1470
|
+
homepage: https://github.com/vim-scripts/unite-locate
|
|
1471
|
+
desc: A Unite.vim plugin to find/open files easily, using locate command
|
|
1472
|
+
- name: up2picasaweb
|
|
1473
|
+
url: git://github.com/vim-scripts/up2picasaweb.git
|
|
1474
|
+
type: git
|
|
1475
|
+
homepage: https://github.com/vim-scripts/up2picasaweb
|
|
1476
|
+
desc: upload image to picasaweb with vim
|
|
1477
|
+
- name: upAndDown
|
|
1478
|
+
url: git://github.com/vim-scripts/upAndDown.git
|
|
1479
|
+
type: git
|
|
1480
|
+
homepage: https://github.com/vim-scripts/upAndDown
|
|
1481
|
+
desc: Swapping a line with the line directly above or below
|
|
1482
|
+
- name: UpdateDNSSerial
|
|
1483
|
+
url: git://github.com/vim-scripts/UpdateDNSSerial.git
|
|
1484
|
+
type: git
|
|
1485
|
+
homepage: https://github.com/vim-scripts/UpdateDNSSerial
|
|
1486
|
+
desc: Update automatically the serial of DNS Zone
|
|
1487
|
+
- name: update_vim
|
|
1488
|
+
url: git://github.com/vim-scripts/update_vim.git
|
|
1489
|
+
type: git
|
|
1490
|
+
homepage: https://github.com/vim-scripts/update_vim
|
|
1491
|
+
desc: Shell script for updating(patching) vim 6.1
|
|
1492
|
+
- name: vanzan_color
|
|
1493
|
+
url: git://github.com/vim-scripts/vanzan_color.git
|
|
1494
|
+
type: git
|
|
1495
|
+
homepage: https://github.com/vim-scripts/vanzan_color
|
|
1496
|
+
desc: A dark blue (nearly black) color scheme
|
|
1497
|
+
- name: Varrays
|
|
1498
|
+
url: git://github.com/vim-scripts/Varrays.git
|
|
1499
|
+
type: git
|
|
1500
|
+
homepage: https://github.com/vim-scripts/Varrays
|
|
1501
|
+
desc: Arrays lib based on curly braces names
|
|
1502
|
+
- name: VB-Line-Number
|
|
1503
|
+
url: git://github.com/vim-scripts/VB-Line-Number.git
|
|
1504
|
+
type: git
|
|
1505
|
+
homepage: https://github.com/vim-scripts/VB-Line-Number
|
|
1506
|
+
desc: "Translate Line #'s reported by vb command line to source code line"
|
|
1507
|
+
- name: vbugle
|
|
1508
|
+
url: git://github.com/vim-scripts/vbugle.git
|
|
1509
|
+
type: git
|
|
1510
|
+
homepage: https://github.com/vim-scripts/vbugle
|
|
1511
|
+
desc: Highlight possibe security bugs
|
|
1512
|
+
- name: VCard-syntax
|
|
1513
|
+
url: git://github.com/vim-scripts/VCard-syntax.git
|
|
1514
|
+
type: git
|
|
1515
|
+
homepage: https://github.com/vim-scripts/VCard-syntax
|
|
1516
|
+
desc: Vcard syntax for vcf file.
|
|
1517
|
+
- name: vcsnursery
|
|
1518
|
+
url: git://github.com/vim-scripts/vcsnursery.git
|
|
1519
|
+
type: git
|
|
1520
|
+
homepage: https://github.com/vim-scripts/vcsnursery
|
|
1521
|
+
desc: Additional backends for vcscommand
|
|
1522
|
+
- name: vc_diff
|
|
1523
|
+
url: git://github.com/vim-scripts/vc_diff.git
|
|
1524
|
+
type: git
|
|
1525
|
+
homepage: https://github.com/vim-scripts/vc_diff
|
|
1526
|
+
desc: show difference of source code using
|
|
1527
|
+
- name: verilog_systemverilog_fix
|
|
1528
|
+
url: git://github.com/vim-scripts/verilog_systemverilog_fix.git
|
|
1529
|
+
type: git
|
|
1530
|
+
homepage: https://github.com/vim-scripts/verilog_systemverilog_fix
|
|
1531
|
+
desc: Fixed Verilog/SystemVerilog file type plugin
|
|
1532
|
+
- name: Vexorian-color-scheme
|
|
1533
|
+
url: git://github.com/vim-scripts/Vexorian-color-scheme.git
|
|
1534
|
+
type: git
|
|
1535
|
+
homepage: https://github.com/vim-scripts/Vexorian-color-scheme
|
|
1536
|
+
desc: initial release
|
|
1537
|
+
- name: VFT--VIM-Form-Toolkit
|
|
1538
|
+
url: git://github.com/vim-scripts/VFT--VIM-Form-Toolkit.git
|
|
1539
|
+
type: git
|
|
1540
|
+
homepage: https://github.com/vim-scripts/VFT--VIM-Form-Toolkit
|
|
1541
|
+
desc: console-based forms with checkboxes, comboboxes, etc. (screenshot included)
|
|
1542
|
+
- name: vgrep
|
|
1543
|
+
url: git://github.com/vim-scripts/vgrep.git
|
|
1544
|
+
type: git
|
|
1545
|
+
homepage: https://github.com/vim-scripts/vgrep
|
|
1546
|
+
desc: another grep in wide look
|
|
1547
|
+
- name: VHDL-indent
|
|
1548
|
+
url: git://github.com/vim-scripts/VHDL-indent.git
|
|
1549
|
+
type: git
|
|
1550
|
+
homepage: https://github.com/vim-scripts/VHDL-indent
|
|
1551
|
+
desc: indent file for VHDL
|
|
1552
|
+
- name: VHDL-indent-93-syntax
|
|
1553
|
+
url: git://github.com/vim-scripts/VHDL-indent-93-syntax.git
|
|
1554
|
+
type: git
|
|
1555
|
+
homepage: https://github.com/vim-scripts/VHDL-indent-93-syntax
|
|
1556
|
+
desc: Revised VHDL indent file
|
|
1557
|
+
- name: VhdlNav
|
|
1558
|
+
url: git://github.com/vim-scripts/VhdlNav.git
|
|
1559
|
+
type: git
|
|
1560
|
+
homepage: https://github.com/vim-scripts/VhdlNav
|
|
1561
|
+
desc: Keeps track of your position in a VHDL file
|
|
1562
|
+
- name: VHT
|
|
1563
|
+
url: git://github.com/vim-scripts/VHT.git
|
|
1564
|
+
type: git
|
|
1565
|
+
homepage: https://github.com/vim-scripts/VHT
|
|
1566
|
+
desc: Vim HTML Templates
|
|
1567
|
+
- name: ViBlip
|
|
1568
|
+
url: git://github.com/vim-scripts/ViBlip.git
|
|
1569
|
+
type: git
|
|
1570
|
+
homepage: https://github.com/vim-scripts/ViBlip
|
|
1571
|
+
desc: ViBlip allows to use Blip! (polish microblogging service)
|
|
1572
|
+
- name: vibrantink
|
|
1573
|
+
url: git://github.com/vim-scripts/vibrantink.git
|
|
1574
|
+
type: git
|
|
1575
|
+
homepage: https://github.com/vim-scripts/vibrantink
|
|
1576
|
+
desc: A Vim port of Justin Palmer's VibrantInk theme for TextMate
|
|
1577
|
+
- name: Vicle
|
|
1578
|
+
url: git://github.com/vim-scripts/Vicle.git
|
|
1579
|
+
type: git
|
|
1580
|
+
homepage: https://github.com/vim-scripts/Vicle
|
|
1581
|
+
desc: Vim - Interpreter Command Line Editor. Like Chimp or Slimv.
|
|
1582
|
+
- name: vicom
|
|
1583
|
+
url: git://github.com/vim-scripts/vicom.git
|
|
1584
|
+
type: git
|
|
1585
|
+
homepage: https://github.com/vim-scripts/vicom
|
|
1586
|
+
desc: Intelligent Line Commenter for the most popular programs [LINUX ONLY]
|
|
1587
|
+
- name: View-Ports
|
|
1588
|
+
url: git://github.com/vim-scripts/View-Ports.git
|
|
1589
|
+
type: git
|
|
1590
|
+
homepage: https://github.com/vim-scripts/View-Ports
|
|
1591
|
+
desc: Change tab title in terminal version of Vim
|
|
1592
|
+
- name: vim-addon-manager
|
|
1593
|
+
url: git://github.com/vim-scripts/vim-addon-manager.git
|
|
1594
|
+
type: git
|
|
1595
|
+
homepage: https://github.com/vim-scripts/vim-addon-manager
|
|
1596
|
+
desc: manage and update plugins easily
|
|
1597
|
+
- name: vim-addon-mw-utils
|
|
1598
|
+
url: git://github.com/vim-scripts/vim-addon-mw-utils.git
|
|
1599
|
+
type: git
|
|
1600
|
+
homepage: https://github.com/vim-scripts/vim-addon-mw-utils
|
|
1601
|
+
desc: some utilities I wrote
|
|
1602
|
+
- name: vim-addon-ocaml
|
|
1603
|
+
url: git://github.com/vim-scripts/vim-addon-ocaml.git
|
|
1604
|
+
type: git
|
|
1605
|
+
homepage: https://github.com/vim-scripts/vim-addon-ocaml
|
|
1606
|
+
desc: collected ocaml scripts - some completion - annotations
|
|
1607
|
+
- name: vim-addon-sbt
|
|
1608
|
+
url: git://github.com/vim-scripts/vim-addon-sbt.git
|
|
1609
|
+
type: git
|
|
1610
|
+
homepage: https://github.com/vim-scripts/vim-addon-sbt
|
|
1611
|
+
desc: run sbt (simple build tool) within vim using python background process
|
|
1612
|
+
- name: vim-addon-signs
|
|
1613
|
+
url: git://github.com/vim-scripts/vim-addon-signs.git
|
|
1614
|
+
type: git
|
|
1615
|
+
homepage: https://github.com/vim-scripts/vim-addon-signs
|
|
1616
|
+
desc: work around the bad API of Vim setting, unsetting signs (markers at the left)
|
|
1617
|
+
- name: vim-addon-sql
|
|
1618
|
+
url: git://github.com/vim-scripts/vim-addon-sql.git
|
|
1619
|
+
type: git
|
|
1620
|
+
homepage: https://github.com/vim-scripts/vim-addon-sql
|
|
1621
|
+
desc: alias sensitive SQL completion (MySQL, Postgresql, SQLite)
|
|
1622
|
+
- name: vim-addon-xdebug
|
|
1623
|
+
url: git://github.com/vim-scripts/vim-addon-xdebug.git
|
|
1624
|
+
type: git
|
|
1625
|
+
homepage: https://github.com/vim-scripts/vim-addon-xdebug
|
|
1626
|
+
desc: xdebug support for VIm using vim-addon-async
|
|
1627
|
+
- name: VIM-Color-Picker
|
|
1628
|
+
url: git://github.com/vim-scripts/VIM-Color-Picker.git
|
|
1629
|
+
type: git
|
|
1630
|
+
homepage: https://github.com/vim-scripts/VIM-Color-Picker
|
|
1631
|
+
desc: A simple color picker for VIM, based on GTK color chooser dialog.
|
|
1632
|
+
- name: Vim-Condensed-Quick-Reference
|
|
1633
|
+
url: git://github.com/vim-scripts/Vim-Condensed-Quick-Reference.git
|
|
1634
|
+
type: git
|
|
1635
|
+
homepage: https://github.com/vim-scripts/Vim-Condensed-Quick-Reference
|
|
1636
|
+
desc: Vim quick reference in LaTeX, PDF and PS formats
|
|
1637
|
+
- name: VIM-Email-Client
|
|
1638
|
+
url: git://github.com/vim-scripts/VIM-Email-Client.git
|
|
1639
|
+
type: git
|
|
1640
|
+
homepage: https://github.com/vim-scripts/VIM-Email-Client
|
|
1641
|
+
desc: Independent Email Client for Vim
|
|
1642
|
+
- name: vim-fileutils
|
|
1643
|
+
url: git://github.com/vim-scripts/vim-fileutils.git
|
|
1644
|
+
type: git
|
|
1645
|
+
homepage: https://github.com/vim-scripts/vim-fileutils
|
|
1646
|
+
desc: Cross-platform file manipulation library
|
|
1647
|
+
- name: vim-game-of-life
|
|
1648
|
+
url: git://github.com/vim-scripts/vim-game-of-life.git
|
|
1649
|
+
type: git
|
|
1650
|
+
homepage: https://github.com/vim-scripts/vim-game-of-life
|
|
1651
|
+
desc: Game of Life in VIM.
|
|
1652
|
+
- name: vim-haxe
|
|
1653
|
+
url: git://github.com/vim-scripts/vim-haxe.git
|
|
1654
|
+
type: git
|
|
1655
|
+
homepage: https://github.com/vim-scripts/vim-haxe
|
|
1656
|
+
desc: haxe language support
|
|
1657
|
+
- name: vim-indent-object
|
|
1658
|
+
url: git://github.com/vim-scripts/vim-indent-object.git
|
|
1659
|
+
type: git
|
|
1660
|
+
homepage: https://github.com/vim-scripts/vim-indent-object
|
|
1661
|
+
desc: Text Objects based on Indentation Level
|
|
1662
|
+
- name: Vim-JDE
|
|
1663
|
+
url: git://github.com/vim-scripts/Vim-JDE.git
|
|
1664
|
+
type: git
|
|
1665
|
+
homepage: https://github.com/vim-scripts/Vim-JDE
|
|
1666
|
+
desc: Vim - Just a Development Envirement (Java/C++)
|
|
1667
|
+
- name: Vim-klip-for-Serence-Klipfolio-Windows
|
|
1668
|
+
url: git://github.com/vim-scripts/Vim-klip-for-Serence-Klipfolio-Windows.git
|
|
1669
|
+
type: git
|
|
1670
|
+
homepage: https://github.com/vim-scripts/Vim-klip-for-Serence-Klipfolio-Windows
|
|
1671
|
+
desc: Klip that queries vim.sf.net for recent scripts
|
|
1672
|
+
- name: Vim-R-plugin
|
|
1673
|
+
url: git://github.com/vim-scripts/Vim-R-plugin.git
|
|
1674
|
+
type: git
|
|
1675
|
+
homepage: https://github.com/vim-scripts/Vim-R-plugin
|
|
1676
|
+
desc: Plugin to work with R
|
|
1677
|
+
- name: vimcommander
|
|
1678
|
+
url: git://github.com/vim-scripts/vimcommander.git
|
|
1679
|
+
type: git
|
|
1680
|
+
homepage: https://github.com/vim-scripts/vimcommander
|
|
1681
|
+
desc: totalcommander-like two-panel tree file explorer for vim
|
|
1682
|
+
- name: vimcompcrtr
|
|
1683
|
+
url: git://github.com/vim-scripts/vimcompcrtr.git
|
|
1684
|
+
type: git
|
|
1685
|
+
homepage: https://github.com/vim-scripts/vimcompcrtr
|
|
1686
|
+
desc: Script that makes creating completion functions much easier.
|
|
1687
|
+
- name: vimconfig
|
|
1688
|
+
url: git://github.com/vim-scripts/vimconfig.git
|
|
1689
|
+
type: git
|
|
1690
|
+
homepage: https://github.com/vim-scripts/vimconfig
|
|
1691
|
+
desc: "Vim 6.3 configuration files: vimrc, ftplugins, plugins"
|
|
1692
|
+
- name: vimCU
|
|
1693
|
+
url: git://github.com/vim-scripts/vimCU.git
|
|
1694
|
+
type: git
|
|
1695
|
+
homepage: https://github.com/vim-scripts/vimCU
|
|
1696
|
+
desc: comment/uncomment functionalities for every language
|
|
1697
|
+
- name: VimDebug
|
|
1698
|
+
url: git://github.com/vim-scripts/VimDebug.git
|
|
1699
|
+
type: git
|
|
1700
|
+
homepage: https://github.com/vim-scripts/VimDebug
|
|
1701
|
+
desc: integrated debugger for perl, ruby, python (updated 01/2008)
|
|
1702
|
+
- name: vimdecdef
|
|
1703
|
+
url: git://github.com/vim-scripts/vimdecdef.git
|
|
1704
|
+
type: git
|
|
1705
|
+
homepage: https://github.com/vim-scripts/vimdecdef
|
|
1706
|
+
desc: Switch between C++ declarations and definitions
|
|
1707
|
+
- name: vimdiff-vcs
|
|
1708
|
+
url: git://github.com/vim-scripts/vimdiff-vcs.git
|
|
1709
|
+
type: git
|
|
1710
|
+
homepage: https://github.com/vim-scripts/vimdiff-vcs
|
|
1711
|
+
desc: Drop-in replacement for vimdiff and gvimdiff featuring automatic CVS diff
|
|
1712
|
+
- name: vimdoc
|
|
1713
|
+
url: git://github.com/vim-scripts/vimdoc.git
|
|
1714
|
+
type: git
|
|
1715
|
+
homepage: https://github.com/vim-scripts/vimdoc
|
|
1716
|
+
desc: produce vim documentation in man, html and LaTeX(PostScript) format
|
|
1717
|
+
- name: VIMEN
|
|
1718
|
+
url: git://github.com/vim-scripts/VIMEN.git
|
|
1719
|
+
type: git
|
|
1720
|
+
homepage: https://github.com/vim-scripts/VIMEN
|
|
1721
|
+
desc: Vim Is More than Editor Now
|
|
1722
|
+
- name: VimExplorer
|
|
1723
|
+
url: git://github.com/vim-scripts/VimExplorer.git
|
|
1724
|
+
type: git
|
|
1725
|
+
homepage: https://github.com/vim-scripts/VimExplorer
|
|
1726
|
+
desc: VE - the File Manager within Vim!
|
|
1727
|
+
- name: vimff
|
|
1728
|
+
url: git://github.com/vim-scripts/vimff.git
|
|
1729
|
+
type: git
|
|
1730
|
+
homepage: https://github.com/vim-scripts/vimff
|
|
1731
|
+
desc: Connection between common-lisp and vim.
|
|
1732
|
+
- name: VimFootnotes
|
|
1733
|
+
url: git://github.com/vim-scripts/VimFootnotes.git
|
|
1734
|
+
type: git
|
|
1735
|
+
homepage: https://github.com/vim-scripts/VimFootnotes
|
|
1736
|
+
desc: Insert various types of footnotes with Vim.
|
|
1737
|
+
- name: VimNotes
|
|
1738
|
+
url: git://github.com/vim-scripts/VimNotes.git
|
|
1739
|
+
type: git
|
|
1740
|
+
homepage: https://github.com/vim-scripts/VimNotes
|
|
1741
|
+
desc: A script to help keep an organized collection of notes with linking.
|
|
1742
|
+
- name: vimomni
|
|
1743
|
+
url: git://github.com/vim-scripts/vimomni.git
|
|
1744
|
+
type: git
|
|
1745
|
+
homepage: https://github.com/vim-scripts/vimomni
|
|
1746
|
+
desc: omni completion for VimL
|
|
1747
|
+
- name: vimoop
|
|
1748
|
+
url: git://github.com/vim-scripts/vimoop.git
|
|
1749
|
+
type: git
|
|
1750
|
+
homepage: https://github.com/vim-scripts/vimoop
|
|
1751
|
+
desc: Adds some features of Python OOP model to vim.
|
|
1752
|
+
- name: VimOrganizer
|
|
1753
|
+
url: git://github.com/vim-scripts/VimOrganizer.git
|
|
1754
|
+
type: git
|
|
1755
|
+
homepage: https://github.com/vim-scripts/VimOrganizer
|
|
1756
|
+
desc: An Emacs' Org-mode clone for Vim
|
|
1757
|
+
- name: vimoutliner-colorscheme-fix
|
|
1758
|
+
url: git://github.com/vim-scripts/vimoutliner-colorscheme-fix.git
|
|
1759
|
+
type: git
|
|
1760
|
+
homepage: https://github.com/vim-scripts/vimoutliner-colorscheme-fix
|
|
1761
|
+
desc: Allows VimOutliner files to work with *any* colorscheme.
|
|
1762
|
+
- name: vimpager
|
|
1763
|
+
url: git://github.com/vim-scripts/vimpager.git
|
|
1764
|
+
type: git
|
|
1765
|
+
homepage: https://github.com/vim-scripts/vimpager
|
|
1766
|
+
desc: Use ViM as PAGER
|
|
1767
|
+
- name: VimPdb
|
|
1768
|
+
url: git://github.com/vim-scripts/VimPdb.git
|
|
1769
|
+
type: git
|
|
1770
|
+
homepage: https://github.com/vim-scripts/VimPdb
|
|
1771
|
+
desc: Integrated Python debugging within Vim
|
|
1772
|
+
- name: vimper
|
|
1773
|
+
url: git://github.com/vim-scripts/vimper.git
|
|
1774
|
+
type: git
|
|
1775
|
+
homepage: https://github.com/vim-scripts/vimper
|
|
1776
|
+
desc: Yet another IDE using Vim...
|
|
1777
|
+
- name: vimplate
|
|
1778
|
+
url: git://github.com/vim-scripts/vimplate.git
|
|
1779
|
+
type: git
|
|
1780
|
+
homepage: https://github.com/vim-scripts/vimplate
|
|
1781
|
+
desc: template system for vim (example for C++, Perl, LaTeX and make)
|
|
1782
|
+
- name: vimplate-B
|
|
1783
|
+
url: git://github.com/vim-scripts/vimplate-B.git
|
|
1784
|
+
type: git
|
|
1785
|
+
homepage: https://github.com/vim-scripts/vimplate-B
|
|
1786
|
+
desc: Template-Toolkit support for Vim
|
|
1787
|
+
- name: Vimplate-Enhanced
|
|
1788
|
+
url: git://github.com/vim-scripts/Vimplate-Enhanced.git
|
|
1789
|
+
type: git
|
|
1790
|
+
homepage: https://github.com/vim-scripts/Vimplate-Enhanced
|
|
1791
|
+
desc: Vimplate template system for vim 7.0 (supports C/C++/Cpp, Perl, make, LaTeX)
|
|
1792
|
+
- name: vimpluginloader
|
|
1793
|
+
url: git://github.com/vim-scripts/vimpluginloader.git
|
|
1794
|
+
type: git
|
|
1795
|
+
homepage: https://github.com/vim-scripts/vimpluginloader
|
|
1796
|
+
desc: Plugin that helps to create complicated vim scripts
|
|
1797
|
+
- name: vimpp
|
|
1798
|
+
url: git://github.com/vim-scripts/vimpp.git
|
|
1799
|
+
type: git
|
|
1800
|
+
homepage: https://github.com/vim-scripts/vimpp
|
|
1801
|
+
desc: Object-oriented programming for vim scripts in C++ style.
|
|
1802
|
+
- name: vimstall
|
|
1803
|
+
url: git://github.com/vim-scripts/vimstall.git
|
|
1804
|
+
type: git
|
|
1805
|
+
homepage: https://github.com/vim-scripts/vimstall
|
|
1806
|
+
desc: vimstall is a shell script to install vim plugins from vim.org automatically
|
|
1807
|
+
- name: vimstuff
|
|
1808
|
+
url: git://github.com/vim-scripts/vimstuff.git
|
|
1809
|
+
type: git
|
|
1810
|
+
homepage: https://github.com/vim-scripts/vimstuff
|
|
1811
|
+
desc: Some useful vim functions
|
|
1812
|
+
- name: VimTAP
|
|
1813
|
+
url: git://github.com/vim-scripts/VimTAP.git
|
|
1814
|
+
type: git
|
|
1815
|
+
homepage: https://github.com/vim-scripts/VimTAP
|
|
1816
|
+
desc: Test Anything Protocol for vim
|
|
1817
|
+
- name: vimtemplate
|
|
1818
|
+
url: git://github.com/vim-scripts/vimtemplate.git
|
|
1819
|
+
type: git
|
|
1820
|
+
homepage: https://github.com/vim-scripts/vimtemplate
|
|
1821
|
+
desc: MRU-like simple template management plugin
|
|
1822
|
+
- name: vimtips_with_comments
|
|
1823
|
+
url: git://github.com/vim-scripts/vimtips_with_comments.git
|
|
1824
|
+
type: git
|
|
1825
|
+
homepage: https://github.com/vim-scripts/vimtips_with_comments
|
|
1826
|
+
desc: a package of all tips from vim's homesite with all comments
|
|
1827
|
+
- name: vimtl
|
|
1828
|
+
url: git://github.com/vim-scripts/vimtl.git
|
|
1829
|
+
type: git
|
|
1830
|
+
homepage: https://github.com/vim-scripts/vimtl
|
|
1831
|
+
desc: Allow to handle todo lists
|
|
1832
|
+
- name: Vimtodo
|
|
1833
|
+
url: git://github.com/vim-scripts/Vimtodo.git
|
|
1834
|
+
type: git
|
|
1835
|
+
homepage: https://github.com/vim-scripts/Vimtodo
|
|
1836
|
+
desc: Todo manager script inspired by todo.txt and org-mode
|
|
1837
|
+
- name: VimTrac
|
|
1838
|
+
url: git://github.com/vim-scripts/VimTrac.git
|
|
1839
|
+
type: git
|
|
1840
|
+
homepage: https://github.com/vim-scripts/VimTrac
|
|
1841
|
+
desc: A vim client for the Trac wiki and ticketing system
|
|
1842
|
+
- name: VimTweak
|
|
1843
|
+
url: git://github.com/vim-scripts/VimTweak.git
|
|
1844
|
+
type: git
|
|
1845
|
+
homepage: https://github.com/vim-scripts/VimTweak
|
|
1846
|
+
desc: The tweaking dll for GVim.exe.
|
|
1847
|
+
- name: vimuiex
|
|
1848
|
+
url: git://github.com/vim-scripts/vimuiex.git
|
|
1849
|
+
type: git
|
|
1850
|
+
homepage: https://github.com/vim-scripts/vimuiex
|
|
1851
|
+
desc: "Vim UI extensions: a pack of plugins that use an overlapping popup list"
|
|
1852
|
+
- name: vimUnit
|
|
1853
|
+
url: git://github.com/vim-scripts/vimUnit.git
|
|
1854
|
+
type: git
|
|
1855
|
+
homepage: https://github.com/vim-scripts/vimUnit
|
|
1856
|
+
desc: vimUnit is a unit testing tool inspiered by tools like junit.
|
|
1857
|
+
- name: Visual-Mapping-Maker
|
|
1858
|
+
url: git://github.com/vim-scripts/Visual-Mapping-Maker.git
|
|
1859
|
+
type: git
|
|
1860
|
+
homepage: https://github.com/vim-scripts/Visual-Mapping-Maker
|
|
1861
|
+
desc: Create a mapping for the visual selected block
|
|
1862
|
+
- name: Visual-Mark
|
|
1863
|
+
url: git://github.com/vim-scripts/Visual-Mark.git
|
|
1864
|
+
type: git
|
|
1865
|
+
homepage: https://github.com/vim-scripts/Visual-Mark
|
|
1866
|
+
desc: Visual mark, similar to UltraEdit's bookmark
|
|
1867
|
+
- name: vj
|
|
1868
|
+
url: git://github.com/vim-scripts/vj.git
|
|
1869
|
+
type: git
|
|
1870
|
+
homepage: https://github.com/vim-scripts/vj
|
|
1871
|
+
desc: color scheme
|
|
1872
|
+
- name: vmake
|
|
1873
|
+
url: git://github.com/vim-scripts/vmake.git
|
|
1874
|
+
type: git
|
|
1875
|
+
homepage: https://github.com/vim-scripts/vmake
|
|
1876
|
+
desc: Use quickfix with external make
|
|
1877
|
+
- name: vmv
|
|
1878
|
+
url: git://github.com/vim-scripts/vmv.git
|
|
1879
|
+
type: git
|
|
1880
|
+
homepage: https://github.com/vim-scripts/vmv
|
|
1881
|
+
desc: group rename files from the command prompt with vim
|
|
1882
|
+
- name: void
|
|
1883
|
+
url: git://github.com/vim-scripts/void.git
|
|
1884
|
+
type: git
|
|
1885
|
+
homepage: https://github.com/vim-scripts/void
|
|
1886
|
+
desc: A dark, clean color scheme
|
|
1887
|
+
- name: VOoM
|
|
1888
|
+
url: git://github.com/vim-scripts/VOoM.git
|
|
1889
|
+
type: git
|
|
1890
|
+
homepage: https://github.com/vim-scripts/VOoM
|
|
1891
|
+
desc: Vim Outliner of Markers -- two-pane outliner and related utilities
|
|
1892
|
+
- name: vydark
|
|
1893
|
+
url: git://github.com/vim-scripts/vydark.git
|
|
1894
|
+
type: git
|
|
1895
|
+
homepage: https://github.com/vim-scripts/vydark
|
|
1896
|
+
desc: A versatile, comfortable colour scheme for every day use. Dark background.
|
|
1897
|
+
- name: vylight
|
|
1898
|
+
url: git://github.com/vim-scripts/vylight.git
|
|
1899
|
+
type: git
|
|
1900
|
+
homepage: https://github.com/vim-scripts/vylight
|
|
1901
|
+
desc: A color scheme that integrates well with OS X. Light background.
|
|
1902
|
+
- name: W3AF-script-syntax-file
|
|
1903
|
+
url: git://github.com/vim-scripts/W3AF-script-syntax-file.git
|
|
1904
|
+
type: git
|
|
1905
|
+
homepage: https://github.com/vim-scripts/W3AF-script-syntax-file
|
|
1906
|
+
desc: Script syntax file for w3af (Web Application Attack and Audit Framework)
|
|
1907
|
+
- name: wargreycolorscheme
|
|
1908
|
+
url: git://github.com/vim-scripts/wargreycolorscheme.git
|
|
1909
|
+
type: git
|
|
1910
|
+
homepage: https://github.com/vim-scripts/wargreycolorscheme
|
|
1911
|
+
desc: Dark color scheme for terminal with full options
|
|
1912
|
+
- name: Warm-grey
|
|
1913
|
+
url: git://github.com/vim-scripts/Warm-grey.git
|
|
1914
|
+
type: git
|
|
1915
|
+
homepage: https://github.com/vim-scripts/Warm-grey
|
|
1916
|
+
desc: A monochromish, light slightly warm theme
|
|
1917
|
+
- name: WarzoneResourceFileSyntax
|
|
1918
|
+
url: git://github.com/vim-scripts/WarzoneResourceFileSyntax.git
|
|
1919
|
+
type: git
|
|
1920
|
+
homepage: https://github.com/vim-scripts/WarzoneResourceFileSyntax
|
|
1921
|
+
desc: Syntax highlighting for Warzone2100 resource files
|
|
1922
|
+
- name: watermark
|
|
1923
|
+
url: git://github.com/vim-scripts/watermark.git
|
|
1924
|
+
type: git
|
|
1925
|
+
homepage: https://github.com/vim-scripts/watermark
|
|
1926
|
+
desc: a low contrast Color Scheme
|
|
1927
|
+
- name: Wavefronts-obj
|
|
1928
|
+
url: git://github.com/vim-scripts/Wavefronts-obj.git
|
|
1929
|
+
type: git
|
|
1930
|
+
homepage: https://github.com/vim-scripts/Wavefronts-obj
|
|
1931
|
+
desc: Syntax for wavefront's obj file format
|
|
1932
|
+
- name: Window-Sizes
|
|
1933
|
+
url: git://github.com/vim-scripts/Window-Sizes.git
|
|
1934
|
+
type: git
|
|
1935
|
+
homepage: https://github.com/vim-scripts/Window-Sizes
|
|
1936
|
+
desc: Allows multiple windows to have specific vertical sizes
|
|
1937
|
+
- name: Windows-PowerShell-File-Type-Plugin
|
|
1938
|
+
url: git://github.com/vim-scripts/Windows-PowerShell-File-Type-Plugin.git
|
|
1939
|
+
type: git
|
|
1940
|
+
homepage: https://github.com/vim-scripts/Windows-PowerShell-File-Type-Plugin
|
|
1941
|
+
desc: Simple ftplugin for use with Windows PowerShell
|
|
1942
|
+
- name: Windows-PowerShell-indent-enhanced
|
|
1943
|
+
url: git://github.com/vim-scripts/Windows-PowerShell-indent-enhanced.git
|
|
1944
|
+
type: git
|
|
1945
|
+
homepage: https://github.com/vim-scripts/Windows-PowerShell-indent-enhanced
|
|
1946
|
+
desc: New version - everything indents correctly
|
|
1947
|
+
- name: Windows-PowerShell-Indent-File
|
|
1948
|
+
url: git://github.com/vim-scripts/Windows-PowerShell-Indent-File.git
|
|
1949
|
+
type: git
|
|
1950
|
+
homepage: https://github.com/vim-scripts/Windows-PowerShell-Indent-File
|
|
1951
|
+
desc: Simple indenting rules for Windows PowerShell
|
|
1952
|
+
- name: Windows-PowerShell-Syntax-File
|
|
1953
|
+
url: git://github.com/vim-scripts/Windows-PowerShell-Syntax-File.git
|
|
1954
|
+
type: git
|
|
1955
|
+
homepage: https://github.com/vim-scripts/Windows-PowerShell-Syntax-File
|
|
1956
|
+
desc: Default syntax coloring for Windows PowerShell
|
|
1957
|
+
- name: winhelp
|
|
1958
|
+
url: git://github.com/vim-scripts/winhelp.git
|
|
1959
|
+
type: git
|
|
1960
|
+
homepage: https://github.com/vim-scripts/winhelp
|
|
1961
|
+
desc: A script for easy lookup in Windows .chm and .hlp help files.
|
|
1962
|
+
- name: winmanager
|
|
1963
|
+
url: git://github.com/vim-scripts/winmanager.git
|
|
1964
|
+
type: git
|
|
1965
|
+
homepage: https://github.com/vim-scripts/winmanager
|
|
1966
|
+
desc: A windows style IDE for Vim 6.0
|
|
1967
|
+
- name: winmanager--Fox
|
|
1968
|
+
url: git://github.com/vim-scripts/winmanager--Fox.git
|
|
1969
|
+
type: git
|
|
1970
|
+
homepage: https://github.com/vim-scripts/winmanager--Fox
|
|
1971
|
+
desc: A windows style IDE for Vim
|
|
1972
|
+
- name: WinMove
|
|
1973
|
+
url: git://github.com/vim-scripts/WinMove.git
|
|
1974
|
+
type: git
|
|
1975
|
+
homepage: https://github.com/vim-scripts/WinMove
|
|
1976
|
+
desc: Move your gVim
|
|
1977
|
+
- name: writebackup
|
|
1978
|
+
url: git://github.com/vim-scripts/writebackup.git
|
|
1979
|
+
type: git
|
|
1980
|
+
homepage: https://github.com/vim-scripts/writebackup
|
|
1981
|
+
desc: Write backups of current file with date file extension.
|
|
1982
|
+
- name: writebackupToAdjacentDir
|
|
1983
|
+
url: git://github.com/vim-scripts/writebackupToAdjacentDir.git
|
|
1984
|
+
type: git
|
|
1985
|
+
homepage: https://github.com/vim-scripts/writebackupToAdjacentDir
|
|
1986
|
+
desc: Backup to an adjacent backup directory.
|
|
1987
|
+
- name: writebackupVersionControl
|
|
1988
|
+
url: git://github.com/vim-scripts/writebackupVersionControl.git
|
|
1989
|
+
type: git
|
|
1990
|
+
homepage: https://github.com/vim-scripts/writebackupVersionControl
|
|
1991
|
+
desc: Version control functions (diff, restore, history) for writebackup backups.
|
|
1992
|
+
- name: WriteRoom-for-Vim
|
|
1993
|
+
url: git://github.com/vim-scripts/WriteRoom-for-Vim.git
|
|
1994
|
+
type: git
|
|
1995
|
+
homepage: https://github.com/vim-scripts/WriteRoom-for-Vim
|
|
1996
|
+
desc: A Vim emulation of the minimalistic WriteRoom editor
|
|
1997
|
+
- name: WuYe
|
|
1998
|
+
url: git://github.com/vim-scripts/WuYe.git
|
|
1999
|
+
type: git
|
|
2000
|
+
homepage: https://github.com/vim-scripts/WuYe
|
|
2001
|
+
desc: A dark background color scheme
|
|
2002
|
+
- name: wwwsearch
|
|
2003
|
+
url: git://github.com/vim-scripts/wwwsearch.git
|
|
2004
|
+
type: git
|
|
2005
|
+
homepage: https://github.com/vim-scripts/wwwsearch
|
|
2006
|
+
desc: Search WWW easily from Vim
|
|
2007
|
+
- name: x12-syntax
|
|
2008
|
+
url: git://github.com/vim-scripts/x12-syntax.git
|
|
2009
|
+
type: git
|
|
2010
|
+
homepage: https://github.com/vim-scripts/x12-syntax
|
|
2011
|
+
desc: Highlighter for X12 EDI(electronic data interchange) files
|
|
2012
|
+
- name: XChat-IRC-Log
|
|
2013
|
+
url: git://github.com/vim-scripts/XChat-IRC-Log.git
|
|
2014
|
+
type: git
|
|
2015
|
+
homepage: https://github.com/vim-scripts/XChat-IRC-Log
|
|
2016
|
+
desc: Syntax highlighting for X-Chat IRC log files
|
|
2017
|
+
- name: xchat-log-syntax
|
|
2018
|
+
url: git://github.com/vim-scripts/xchat-log-syntax.git
|
|
2019
|
+
type: git
|
|
2020
|
+
homepage: https://github.com/vim-scripts/xchat-log-syntax
|
|
2021
|
+
desc: a syntax file for xchat log files
|
|
2022
|
+
- name: Xdebugxs-dictionary-of-functions
|
|
2023
|
+
url: git://github.com/vim-scripts/Xdebugxs-dictionary-of-functions.git
|
|
2024
|
+
type: git
|
|
2025
|
+
homepage: https://github.com/vim-scripts/Xdebugxs-dictionary-of-functions
|
|
2026
|
+
desc: This is simply dictionary of Xdebug2 functions
|
|
2027
|
+
- name: xemacs-colorscheme
|
|
2028
|
+
url: git://github.com/vim-scripts/xemacs-colorscheme.git
|
|
2029
|
+
type: git
|
|
2030
|
+
homepage: https://github.com/vim-scripts/xemacs-colorscheme
|
|
2031
|
+
desc: Vim with xemacs-like colors
|
|
2032
|
+
- name: xemacs-mouse-drag-copy
|
|
2033
|
+
url: git://github.com/vim-scripts/xemacs-mouse-drag-copy.git
|
|
2034
|
+
type: git
|
|
2035
|
+
homepage: https://github.com/vim-scripts/xemacs-mouse-drag-copy
|
|
2036
|
+
desc: (x)emacs style quick copy and paste
|
|
2037
|
+
- name: xml_autons
|
|
2038
|
+
url: git://github.com/vim-scripts/xml_autons.git
|
|
2039
|
+
type: git
|
|
2040
|
+
homepage: https://github.com/vim-scripts/xml_autons
|
|
2041
|
+
desc: auto :XMLns by the current content
|
|
2042
|
+
- name: xml_cbks
|
|
2043
|
+
url: git://github.com/vim-scripts/xml_cbks.git
|
|
2044
|
+
type: git
|
|
2045
|
+
homepage: https://github.com/vim-scripts/xml_cbks
|
|
2046
|
+
desc: Extends xmledit package to provide schema-specific attribute callbacks easily
|
|
2047
|
+
- name: xml_taginsert
|
|
2048
|
+
url: git://github.com/vim-scripts/xml_taginsert.git
|
|
2049
|
+
type: git
|
|
2050
|
+
homepage: https://github.com/vim-scripts/xml_taginsert
|
|
2051
|
+
desc: Insert xml tags by pressing <F7>
|
|
2052
|
+
- name: xmms-play-and-enqueue
|
|
2053
|
+
url: git://github.com/vim-scripts/xmms-play-and-enqueue.git
|
|
2054
|
+
type: git
|
|
2055
|
+
homepage: https://github.com/vim-scripts/xmms-play-and-enqueue
|
|
2056
|
+
desc: This snippet plays a file or enqueues it using xmms.
|
|
2057
|
+
- name: xmms2ctrl
|
|
2058
|
+
url: git://github.com/vim-scripts/xmms2ctrl.git
|
|
2059
|
+
type: git
|
|
2060
|
+
homepage: https://github.com/vim-scripts/xmms2ctrl
|
|
2061
|
+
desc: Control XMMS2 through VIM
|
|
2062
|
+
- name: xpcomplete
|
|
2063
|
+
url: git://github.com/vim-scripts/xpcomplete.git
|
|
2064
|
+
type: git
|
|
2065
|
+
homepage: https://github.com/vim-scripts/xpcomplete
|
|
2066
|
+
desc: Completion for the XP-Framework (php)
|
|
2067
|
+
- name: XpMenu
|
|
2068
|
+
url: git://github.com/vim-scripts/XpMenu.git
|
|
2069
|
+
type: git
|
|
2070
|
+
homepage: https://github.com/vim-scripts/XpMenu
|
|
2071
|
+
desc: Make vim use WinXP style menu.
|
|
2072
|
+
- name: XPstatusline
|
|
2073
|
+
url: git://github.com/vim-scripts/XPstatusline.git
|
|
2074
|
+
type: git
|
|
2075
|
+
homepage: https://github.com/vim-scripts/XPstatusline
|
|
2076
|
+
desc: statusline with many infomation
|
|
2077
|
+
- name: xptemplate
|
|
2078
|
+
url: git://github.com/vim-scripts/xptemplate.git
|
|
2079
|
+
type: git
|
|
2080
|
+
homepage: https://github.com/vim-scripts/xptemplate
|
|
2081
|
+
desc: XP's Snippet Template engine for vim
|
|
2082
|
+
- name: XQuery-syntax
|
|
2083
|
+
url: git://github.com/vim-scripts/XQuery-syntax.git
|
|
2084
|
+
type: git
|
|
2085
|
+
homepage: https://github.com/vim-scripts/XQuery-syntax
|
|
2086
|
+
desc: XQuery syntax
|
|
2087
|
+
- name: yasnippets
|
|
2088
|
+
url: git://github.com/vim-scripts/yasnippets.git
|
|
2089
|
+
type: git
|
|
2090
|
+
homepage: https://github.com/vim-scripts/yasnippets
|
|
2091
|
+
desc: Yet another plugin for snippets and file skeletons
|
|
2092
|
+
- name: yate
|
|
2093
|
+
url: git://github.com/vim-scripts/yate.git
|
|
2094
|
+
type: git
|
|
2095
|
+
homepage: https://github.com/vim-scripts/yate
|
|
2096
|
+
desc: This plugin makes search in tags more convenient.
|
|
2097
|
+
- name: yavdb
|
|
2098
|
+
url: git://github.com/vim-scripts/yavdb.git
|
|
2099
|
+
type: git
|
|
2100
|
+
homepage: https://github.com/vim-scripts/yavdb
|
|
2101
|
+
desc: Yet Another (Generic) Vim Debugger Integration
|
|
2102
|
+
- name: yellow
|
|
2103
|
+
url: git://github.com/vim-scripts/yellow.git
|
|
2104
|
+
type: git
|
|
2105
|
+
homepage: https://github.com/vim-scripts/yellow
|
|
2106
|
+
desc: A yellow-green color scheme
|
|
2107
|
+
- name: yet-another-svn-script
|
|
2108
|
+
url: git://github.com/vim-scripts/yet-another-svn-script.git
|
|
2109
|
+
type: git
|
|
2110
|
+
homepage: https://github.com/vim-scripts/yet-another-svn-script
|
|
2111
|
+
desc: makes svn add /commit much easier from vim
|
|
2112
|
+
- name: yo-speller
|
|
2113
|
+
url: git://github.com/vim-scripts/yo-speller.git
|
|
2114
|
+
type: git
|
|
2115
|
+
homepage: https://github.com/vim-scripts/yo-speller
|
|
2116
|
+
desc: "NOTE: this only for russian users! Spell YO letter in the buffer."
|
|
2117
|
+
- name: Yow
|
|
2118
|
+
url: git://github.com/vim-scripts/Yow.git
|
|
2119
|
+
type: git
|
|
2120
|
+
homepage: https://github.com/vim-scripts/Yow
|
|
2121
|
+
desc: Random Zippy The Pinhead quotes. A port of Emacs' M-x yow.
|
|
2122
|
+
- name: ywchaos
|
|
2123
|
+
url: git://github.com/vim-scripts/ywchaos.git
|
|
2124
|
+
type: git
|
|
2125
|
+
homepage: https://github.com/vim-scripts/ywchaos
|
|
2126
|
+
desc: Journal taking and diary making, to record all the chaos of your life :)
|
|
2127
|
+
- name: ywtxt
|
|
2128
|
+
url: git://github.com/vim-scripts/ywtxt.git
|
|
2129
|
+
type: git
|
|
2130
|
+
homepage: https://github.com/vim-scripts/ywtxt
|
|
2131
|
+
desc: Ease vim to write plain documents.
|
|
2132
|
+
- name: ywvim
|
|
2133
|
+
url: git://github.com/vim-scripts/ywvim.git
|
|
2134
|
+
type: git
|
|
2135
|
+
homepage: https://github.com/vim-scripts/ywvim
|
|
2136
|
+
desc: Another input method(IM) for VIM, supports all modes.
|
|
2137
|
+
- name: Zen-Color-Scheme
|
|
2138
|
+
url: git://github.com/vim-scripts/Zen-Color-Scheme.git
|
|
2139
|
+
type: git
|
|
2140
|
+
homepage: https://github.com/vim-scripts/Zen-Color-Scheme
|
|
2141
|
+
desc: Zen is an elegant and clean color scheme for Vim
|
|
2142
|
+
- name: Vim-R-plugin2
|
|
2143
|
+
url: git://github.com/vim-scripts/Vim-R-plugin2.git
|
|
2144
|
+
type: git
|
|
2145
|
+
homepage: https://github.com/vim-scripts/Vim-R-plugin2
|
|
2146
|
+
desc: Plugin to work with R
|
|
2147
|
+
- name: vim-refact
|
|
2148
|
+
url: git://github.com/vim-scripts/vim-refact.git
|
|
2149
|
+
type: git
|
|
2150
|
+
homepage: https://github.com/vim-scripts/vim-refact
|
|
2151
|
+
desc: Some refactoring for Vim
|
|
2152
|
+
- name: vim-rpcpaste
|
|
2153
|
+
url: git://github.com/vim-scripts/vim-rpcpaste.git
|
|
2154
|
+
type: git
|
|
2155
|
+
homepage: https://github.com/vim-scripts/vim-rpcpaste
|
|
2156
|
+
desc: A ViM plugin to send code to a pastebin such as paste.debian.net using XML-RPC
|
|
2157
|
+
- name: Vim-Rspec
|
|
2158
|
+
url: git://github.com/vim-scripts/Vim-Rspec.git
|
|
2159
|
+
type: git
|
|
2160
|
+
homepage: https://github.com/vim-scripts/Vim-Rspec
|
|
2161
|
+
desc: Enable the use of the spec command inside Vim
|
|
2162
|
+
- name: vim-scraper
|
|
2163
|
+
url: git://github.com/vim-scripts/vim-scraper.git
|
|
2164
|
+
type: git
|
|
2165
|
+
homepage: https://github.com/vim-scripts/vim-scraper
|
|
2166
|
+
desc: ONLY USED FOR ISSUES TAB. The code owned by the vim-scraper user.
|
|
2167
|
+
- name: Vim-Script-Updater
|
|
2168
|
+
url: git://github.com/vim-scripts/Vim-Script-Updater.git
|
|
2169
|
+
type: git
|
|
2170
|
+
homepage: https://github.com/vim-scripts/Vim-Script-Updater
|
|
2171
|
+
desc: Automatically update vim scripts
|
|
2172
|
+
- name: Vim-Setup-system
|
|
2173
|
+
url: git://github.com/vim-scripts/Vim-Setup-system.git
|
|
2174
|
+
type: git
|
|
2175
|
+
homepage: https://github.com/vim-scripts/Vim-Setup-system
|
|
2176
|
+
desc: Vim Setup system - persistent setup directly in vim
|
|
2177
|
+
- name: vim-snipplr
|
|
2178
|
+
url: git://github.com/vim-scripts/vim-snipplr.git
|
|
2179
|
+
type: git
|
|
2180
|
+
homepage: https://github.com/vim-scripts/vim-snipplr
|
|
2181
|
+
desc: frontend for http://www.snipplr.com/
|
|
2182
|
+
- name: Vim-Syntax-File-for-Google-Code-Wiki
|
|
2183
|
+
url: git://github.com/vim-scripts/Vim-Syntax-File-for-Google-Code-Wiki.git
|
|
2184
|
+
type: git
|
|
2185
|
+
homepage: https://github.com/vim-scripts/Vim-Syntax-File-for-Google-Code-Wiki
|
|
2186
|
+
desc: Vim Syntax File for Google Code Wiki
|
|
2187
|
+
- name: vim-templates
|
|
2188
|
+
url: git://github.com/vim-scripts/vim-templates.git
|
|
2189
|
+
type: git
|
|
2190
|
+
homepage: https://github.com/vim-scripts/vim-templates
|
|
2191
|
+
desc: Handling of templates and Pre/Post editing commands
|
|
2192
|
+
- name: Vim-Title-Formatter
|
|
2193
|
+
url: git://github.com/vim-scripts/Vim-Title-Formatter.git
|
|
2194
|
+
type: git
|
|
2195
|
+
homepage: https://github.com/vim-scripts/Vim-Title-Formatter
|
|
2196
|
+
desc: Formats the gvim instance titlebar string for efficiency
|
|
2197
|
+
- name: vimform
|
|
2198
|
+
url: git://github.com/vim-scripts/vimform.git
|
|
2199
|
+
type: git
|
|
2200
|
+
homepage: https://github.com/vim-scripts/vimform
|
|
2201
|
+
desc: Simple text-based forms for vim
|
|
2202
|
+
- name: vimfortune
|
|
2203
|
+
url: git://github.com/vim-scripts/vimfortune.git
|
|
2204
|
+
type: git
|
|
2205
|
+
homepage: https://github.com/vim-scripts/vimfortune
|
|
2206
|
+
desc: Show random tips when launching VIM
|
|
2207
|
+
- name: vimgdb
|
|
2208
|
+
url: git://github.com/vim-scripts/vimgdb.git
|
|
2209
|
+
type: git
|
|
2210
|
+
homepage: https://github.com/vim-scripts/vimgdb
|
|
2211
|
+
desc: Emacs like gdb interface to cterm vim
|
|
2212
|
+
- name: vimgen
|
|
2213
|
+
url: git://github.com/vim-scripts/vimgen.git
|
|
2214
|
+
type: git
|
|
2215
|
+
homepage: https://github.com/vim-scripts/vimgen
|
|
2216
|
+
desc: vim inline generator / template expander
|
|
2217
|
+
- name: Vimgrep-Replace
|
|
2218
|
+
url: git://github.com/vim-scripts/Vimgrep-Replace.git
|
|
2219
|
+
type: git
|
|
2220
|
+
homepage: https://github.com/vim-scripts/Vimgrep-Replace
|
|
2221
|
+
desc: Use vimgrep to do search and replace
|
|
2222
|
+
- name: VimgrepBuffer
|
|
2223
|
+
url: git://github.com/vim-scripts/VimgrepBuffer.git
|
|
2224
|
+
type: git
|
|
2225
|
+
homepage: https://github.com/vim-scripts/VimgrepBuffer
|
|
2226
|
+
desc: Run vimgrep on buffers
|
|
2227
|
+
- name: vimGTD
|
|
2228
|
+
url: git://github.com/vim-scripts/vimGTD.git
|
|
2229
|
+
type: git
|
|
2230
|
+
homepage: https://github.com/vim-scripts/vimGTD
|
|
2231
|
+
desc: frontend to PyGTD todo list manager
|
|
2232
|
+
- name: VimIM
|
|
2233
|
+
url: git://github.com/vim-scripts/VimIM.git
|
|
2234
|
+
type: git
|
|
2235
|
+
homepage: https://github.com/vim-scripts/VimIM
|
|
2236
|
+
desc: !binary |
|
|
2237
|
+
VmltIElucHV0IE1ldGhvZCAtLSBWaW0g5Lit5paH6L6T5YWl5rOV
|
|
2238
|
+
|
|
2239
|
+
- name: vimksh
|
|
2240
|
+
url: git://github.com/vim-scripts/vimksh.git
|
|
2241
|
+
type: git
|
|
2242
|
+
homepage: https://github.com/vim-scripts/vimksh
|
|
2243
|
+
desc: Using MSWin Vim with MSWin SFU 3.5
|
|
2244
|
+
- name: vimlatex
|
|
2245
|
+
url: git://github.com/vim-scripts/vimlatex.git
|
|
2246
|
+
type: git
|
|
2247
|
+
homepage: https://github.com/vim-scripts/vimlatex
|
|
2248
|
+
desc: Sanitizes LaTeX error messages for Vim-LaTeX.
|
|
2249
|
+
- name: VimLocalHistory
|
|
2250
|
+
url: git://github.com/vim-scripts/VimLocalHistory.git
|
|
2251
|
+
type: git
|
|
2252
|
+
homepage: https://github.com/vim-scripts/VimLocalHistory
|
|
2253
|
+
desc: Automatic backup and poor man's revision control.
|
|
2254
|
+
- name: vimmp
|
|
2255
|
+
url: git://github.com/vim-scripts/vimmp.git
|
|
2256
|
+
type: git
|
|
2257
|
+
homepage: https://github.com/vim-scripts/vimmp
|
|
2258
|
+
desc: An XMMS2 and MPD client for Vim
|
|
2259
|
+
- name: vimmpc
|
|
2260
|
+
url: git://github.com/vim-scripts/vimmpc.git
|
|
2261
|
+
type: git
|
|
2262
|
+
homepage: https://github.com/vim-scripts/vimmpc
|
|
2263
|
+
desc: Manipulate a running mpd daemon from within vim
|
|
2264
|
+
- name: Vimpress
|
|
2265
|
+
url: git://github.com/vim-scripts/Vimpress.git
|
|
2266
|
+
type: git
|
|
2267
|
+
homepage: https://github.com/vim-scripts/Vimpress
|
|
2268
|
+
desc: Manage wordpress blog posts from Vim
|
|
2269
|
+
- name: vimproject
|
|
2270
|
+
url: git://github.com/vim-scripts/vimproject.git
|
|
2271
|
+
type: git
|
|
2272
|
+
homepage: https://github.com/vim-scripts/vimproject
|
|
2273
|
+
desc: A Python script to create nested menus in gvim to open files in a project
|
|
2274
|
+
- name: vimrc
|
|
2275
|
+
url: git://github.com/vim-scripts/vimrc.git
|
|
2276
|
+
type: git
|
|
2277
|
+
homepage: https://github.com/vim-scripts/vimrc
|
|
2278
|
+
desc: Word Processing in Vim (_vimrc win32)
|
|
2279
|
+
- name: Vimrc-Version-Numbering
|
|
2280
|
+
url: git://github.com/vim-scripts/Vimrc-Version-Numbering.git
|
|
2281
|
+
type: git
|
|
2282
|
+
homepage: https://github.com/vim-scripts/Vimrc-Version-Numbering
|
|
2283
|
+
desc: automatic vimrc version numbering
|
|
2284
|
+
- name: vimrc_nopik
|
|
2285
|
+
url: git://github.com/vim-scripts/vimrc_nopik.git
|
|
2286
|
+
type: git
|
|
2287
|
+
homepage: https://github.com/vim-scripts/vimrc_nopik
|
|
2288
|
+
desc: Customized vimrc by Nopik
|
|
2289
|
+
- name: vimRubyX
|
|
2290
|
+
url: git://github.com/vim-scripts/vimRubyX.git
|
|
2291
|
+
type: git
|
|
2292
|
+
homepage: https://github.com/vim-scripts/vimRubyX
|
|
2293
|
+
desc: enhancements to vim ruby interface
|
|
2294
|
+
- name: vimscript
|
|
2295
|
+
url: git://github.com/vim-scripts/vimscript.git
|
|
2296
|
+
type: git
|
|
2297
|
+
homepage: https://github.com/vim-scripts/vimscript
|
|
2298
|
+
desc: use vim as an interpreter to write shell commands in vimscript like vimsh
|
|
2299
|
+
- name: vimscript-coding-aids
|
|
2300
|
+
url: git://github.com/vim-scripts/vimscript-coding-aids.git
|
|
2301
|
+
type: git
|
|
2302
|
+
homepage: https://github.com/vim-scripts/vimscript-coding-aids
|
|
2303
|
+
desc: some coding aids for writing vim scripts
|
|
2304
|
+
- name: vimsh
|
|
2305
|
+
url: git://github.com/vim-scripts/vimsh.git
|
|
2306
|
+
type: git
|
|
2307
|
+
homepage: https://github.com/vim-scripts/vimsh
|
|
2308
|
+
desc: simple Vim script shell command line interpreters
|
|
2309
|
+
- name: vimsizer
|
|
2310
|
+
url: git://github.com/vim-scripts/vimsizer.git
|
|
2311
|
+
type: git
|
|
2312
|
+
homepage: https://github.com/vim-scripts/vimsizer
|
|
2313
|
+
desc: A vim global plugin that allows for quick window sizing
|
|
2314
|
+
- name: VimSpeak
|
|
2315
|
+
url: git://github.com/vim-scripts/VimSpeak.git
|
|
2316
|
+
type: git
|
|
2317
|
+
homepage: https://github.com/vim-scripts/VimSpeak
|
|
2318
|
+
desc: Speak selected text with MS Agent
|
|
2319
|
+
- name: vimspell
|
|
2320
|
+
url: git://github.com/vim-scripts/vimspell.git
|
|
2321
|
+
type: git
|
|
2322
|
+
homepage: https://github.com/vim-scripts/vimspell
|
|
2323
|
+
desc: ispell or aspell based spell checker with fly-spelling
|
|
2324
|
+
- name: VimSpy
|
|
2325
|
+
url: git://github.com/vim-scripts/VimSpy.git
|
|
2326
|
+
type: git
|
|
2327
|
+
homepage: https://github.com/vim-scripts/VimSpy
|
|
2328
|
+
desc: VimSpy enables you to browse through all Vim internal entities.
|
|
2329
|
+
- name: VimVS6
|
|
2330
|
+
url: git://github.com/vim-scripts/VimVS6.git
|
|
2331
|
+
type: git
|
|
2332
|
+
homepage: https://github.com/vim-scripts/VimVS6
|
|
2333
|
+
desc: Compile Visual Studio 6 projects and search in MSDN help files using VIM
|
|
2334
|
+
- name: vimwiki
|
|
2335
|
+
url: git://github.com/vim-scripts/vimwiki.git
|
|
2336
|
+
type: git
|
|
2337
|
+
homepage: https://github.com/vim-scripts/vimwiki
|
|
2338
|
+
desc: Personal Wiki for Vim
|
|
2339
|
+
- name: vimxmms2
|
|
2340
|
+
url: git://github.com/vim-scripts/vimxmms2.git
|
|
2341
|
+
type: git
|
|
2342
|
+
homepage: https://github.com/vim-scripts/vimxmms2
|
|
2343
|
+
desc: An XMMS2 client for Vim.
|
|
2344
|
+
- name: Vimya
|
|
2345
|
+
url: git://github.com/vim-scripts/Vimya.git
|
|
2346
|
+
type: git
|
|
2347
|
+
homepage: https://github.com/vim-scripts/Vimya
|
|
2348
|
+
desc: "Evaluate buffer content as Python or MEL script in Autodesk\xC2\xAE Maya\xC2\xAE"
|
|
2349
|
+
- name: vim_colors
|
|
2350
|
+
url: git://github.com/vim-scripts/vim_colors.git
|
|
2351
|
+
type: git
|
|
2352
|
+
homepage: https://github.com/vim-scripts/vim_colors
|
|
2353
|
+
desc: 4 Vim Themes I use for programming (GUI only)
|
|
2354
|
+
- name: vim_faq
|
|
2355
|
+
url: git://github.com/vim-scripts/vim_faq.git
|
|
2356
|
+
type: git
|
|
2357
|
+
homepage: https://github.com/vim-scripts/vim_faq
|
|
2358
|
+
desc: The Vim-FAQ from vimdoc.sourceforge.net
|
|
2359
|
+
- name: VIP
|
|
2360
|
+
url: git://github.com/vim-scripts/VIP.git
|
|
2361
|
+
type: git
|
|
2362
|
+
homepage: https://github.com/vim-scripts/VIP
|
|
2363
|
+
desc: Special copy and paste for VHDL entities, components and instances of components
|
|
2364
|
+
- name: vis
|
|
2365
|
+
url: git://github.com/vim-scripts/vis.git
|
|
2366
|
+
type: git
|
|
2367
|
+
homepage: https://github.com/vim-scripts/vis
|
|
2368
|
+
desc: Extended Visual Mode Commands, Substitutes, and Searches
|
|
2369
|
+
- name: VisIncr
|
|
2370
|
+
url: git://github.com/vim-scripts/VisIncr.git
|
|
2371
|
+
type: git
|
|
2372
|
+
homepage: https://github.com/vim-scripts/VisIncr
|
|
2373
|
+
desc: Produce increasing/decreasing columns of numbers, dates, or daynames
|
|
2374
|
+
- name: Visual-Cpp
|
|
2375
|
+
url: git://github.com/vim-scripts/Visual-Cpp.git
|
|
2376
|
+
type: git
|
|
2377
|
+
homepage: https://github.com/vim-scripts/Visual-Cpp
|
|
2378
|
+
desc: A color scheme resembling the MS Visual C++ IDE
|
|
2379
|
+
- name: vorax
|
|
2380
|
+
url: git://github.com/vim-scripts/vorax.git
|
|
2381
|
+
type: git
|
|
2382
|
+
homepage: https://github.com/vim-scripts/vorax
|
|
2383
|
+
desc: An Oracle IDE for Geeks.
|
|
2384
|
+
- name: vorg
|
|
2385
|
+
url: git://github.com/vim-scripts/vorg.git
|
|
2386
|
+
type: git
|
|
2387
|
+
homepage: https://github.com/vim-scripts/vorg
|
|
2388
|
+
desc: vim organizer syntax file
|
|
2389
|
+
- name: VPars
|
|
2390
|
+
url: git://github.com/vim-scripts/VPars.git
|
|
2391
|
+
type: git
|
|
2392
|
+
homepage: https://github.com/vim-scripts/VPars
|
|
2393
|
+
desc: Parameter substitution functions to be used in text fragments
|
|
2394
|
+
- name: vplinst
|
|
2395
|
+
url: git://github.com/vim-scripts/vplinst.git
|
|
2396
|
+
type: git
|
|
2397
|
+
homepage: https://github.com/vim-scripts/vplinst
|
|
2398
|
+
desc: "[yet another] Vim Plugin Installer"
|
|
2399
|
+
- name: VS-like-Class-Completion
|
|
2400
|
+
url: git://github.com/vim-scripts/VS-like-Class-Completion.git
|
|
2401
|
+
type: git
|
|
2402
|
+
homepage: https://github.com/vim-scripts/VS-like-Class-Completion
|
|
2403
|
+
desc: This script can complete member of cpp or java like Visual Studio.
|
|
2404
|
+
- name: vspec
|
|
2405
|
+
url: git://github.com/vim-scripts/vspec.git
|
|
2406
|
+
type: git
|
|
2407
|
+
homepage: https://github.com/vim-scripts/vspec
|
|
2408
|
+
desc: Test framework for Vim script
|
|
2409
|
+
- name: VST
|
|
2410
|
+
url: git://github.com/vim-scripts/VST.git
|
|
2411
|
+
type: git
|
|
2412
|
+
homepage: https://github.com/vim-scripts/VST
|
|
2413
|
+
desc: Vim reStructured Text
|
|
2414
|
+
- name: vst_with_syn
|
|
2415
|
+
url: git://github.com/vim-scripts/vst_with_syn.git
|
|
2416
|
+
type: git
|
|
2417
|
+
homepage: https://github.com/vim-scripts/vst_with_syn
|
|
2418
|
+
desc: combine of Mikolaj Machowski's VST and Estienne Swart's rest.vim
|
|
2419
|
+
- name: vtags
|
|
2420
|
+
url: git://github.com/vim-scripts/vtags.git
|
|
2421
|
+
type: git
|
|
2422
|
+
homepage: https://github.com/vim-scripts/vtags
|
|
2423
|
+
desc: tags file generator
|
|
2424
|
+
- name: vtags_def
|
|
2425
|
+
url: git://github.com/vim-scripts/vtags_def.git
|
|
2426
|
+
type: git
|
|
2427
|
+
homepage: https://github.com/vim-scripts/vtags_def
|
|
2428
|
+
desc: vtags language definitions
|
|
2429
|
+
- name: vtreeexplorer
|
|
2430
|
+
url: git://github.com/vim-scripts/vtreeexplorer.git
|
|
2431
|
+
type: git
|
|
2432
|
+
homepage: https://github.com/vim-scripts/vtreeexplorer
|
|
2433
|
+
desc: tree based file explorer - the original
|
|
2434
|
+
- name: VUT
|
|
2435
|
+
url: git://github.com/vim-scripts/VUT.git
|
|
2436
|
+
type: git
|
|
2437
|
+
homepage: https://github.com/vim-scripts/VUT
|
|
2438
|
+
desc: Vim Universal Templates
|
|
2439
|
+
- name: VxLib
|
|
2440
|
+
url: git://github.com/vim-scripts/VxLib.git
|
|
2441
|
+
type: git
|
|
2442
|
+
homepage: https://github.com/vim-scripts/VxLib
|
|
2443
|
+
desc: Some utility functions packed in a library
|
|
2444
|
+
- name: webpreview
|
|
2445
|
+
url: git://github.com/vim-scripts/webpreview.git
|
|
2446
|
+
type: git
|
|
2447
|
+
homepage: https://github.com/vim-scripts/webpreview
|
|
2448
|
+
desc: make previewing pages in web browsers easily
|
|
2449
|
+
- name: WhereFrom
|
|
2450
|
+
url: git://github.com/vim-scripts/WhereFrom.git
|
|
2451
|
+
type: git
|
|
2452
|
+
homepage: https://github.com/vim-scripts/WhereFrom
|
|
2453
|
+
desc: WhereFrom helps one locate where maps, functions, or commands are defined
|
|
2454
|
+
- name: White-Dust
|
|
2455
|
+
url: git://github.com/vim-scripts/White-Dust.git
|
|
2456
|
+
type: git
|
|
2457
|
+
homepage: https://github.com/vim-scripts/White-Dust
|
|
2458
|
+
desc: A light color scheme for GUI
|
|
2459
|
+
- name: Wiked
|
|
2460
|
+
url: git://github.com/vim-scripts/Wiked.git
|
|
2461
|
+
type: git
|
|
2462
|
+
homepage: https://github.com/vim-scripts/Wiked
|
|
2463
|
+
desc: Syntax file for file.wiki
|
|
2464
|
+
- name: Wikidoc-syntax-highlighting
|
|
2465
|
+
url: git://github.com/vim-scripts/Wikidoc-syntax-highlighting.git
|
|
2466
|
+
type: git
|
|
2467
|
+
homepage: https://github.com/vim-scripts/Wikidoc-syntax-highlighting
|
|
2468
|
+
desc: Wikidoc format syntax highlighting
|
|
2469
|
+
- name: wikinotes
|
|
2470
|
+
url: git://github.com/vim-scripts/wikinotes.git
|
|
2471
|
+
type: git
|
|
2472
|
+
homepage: https://github.com/vim-scripts/wikinotes
|
|
2473
|
+
desc: Wikipedia syntax with added functionality for taking notes
|
|
2474
|
+
- name: win-manager-Improved
|
|
2475
|
+
url: git://github.com/vim-scripts/win-manager-Improved.git
|
|
2476
|
+
type: git
|
|
2477
|
+
homepage: https://github.com/vim-scripts/win-manager-Improved
|
|
2478
|
+
desc: Adds directory shortcuts to winmanager for faster traversal across file system
|
|
2479
|
+
- name: winwkspaceexplorer
|
|
2480
|
+
url: git://github.com/vim-scripts/winwkspaceexplorer.git
|
|
2481
|
+
type: git
|
|
2482
|
+
homepage: https://github.com/vim-scripts/winwkspaceexplorer
|
|
2483
|
+
desc: IDE like Project explorer ( plugin for winmanager )
|
|
2484
|
+
- name: WLS-Mode
|
|
2485
|
+
url: git://github.com/vim-scripts/WLS-Mode.git
|
|
2486
|
+
type: git
|
|
2487
|
+
homepage: https://github.com/vim-scripts/WLS-Mode
|
|
2488
|
+
desc: Complete Bea-Weblogic-Mode as tar.bz2
|
|
2489
|
+
- name: wmgraphviz
|
|
2490
|
+
url: git://github.com/vim-scripts/wmgraphviz.git
|
|
2491
|
+
type: git
|
|
2492
|
+
homepage: https://github.com/vim-scripts/wmgraphviz
|
|
2493
|
+
desc: Plugin for Graphviz DOT
|
|
2494
|
+
- name: WML-Wireless-Markup-Language-syntax
|
|
2495
|
+
url: git://github.com/vim-scripts/WML-Wireless-Markup-Language-syntax.git
|
|
2496
|
+
type: git
|
|
2497
|
+
homepage: https://github.com/vim-scripts/WML-Wireless-Markup-Language-syntax
|
|
2498
|
+
desc: The title says it all
|
|
2499
|
+
- name: woc
|
|
2500
|
+
url: git://github.com/vim-scripts/woc.git
|
|
2501
|
+
type: git
|
|
2502
|
+
homepage: https://github.com/vim-scripts/woc
|
|
2503
|
+
desc: A vim WoC browser. It enables hyperlinks for sources and ASCII texts.
|
|
2504
|
+
- name: Wombat
|
|
2505
|
+
url: git://github.com/vim-scripts/Wombat.git
|
|
2506
|
+
type: git
|
|
2507
|
+
homepage: https://github.com/vim-scripts/Wombat
|
|
2508
|
+
desc: Dark gray color scheme sharing some similarities with Desert
|
|
2509
|
+
- name: Workspace-Manager
|
|
2510
|
+
url: git://github.com/vim-scripts/Workspace-Manager.git
|
|
2511
|
+
type: git
|
|
2512
|
+
homepage: https://github.com/vim-scripts/Workspace-Manager
|
|
2513
|
+
desc: Plugin for managing groups of files
|
|
2514
|
+
- name: XML-Completion
|
|
2515
|
+
url: git://github.com/vim-scripts/XML-Completion.git
|
|
2516
|
+
type: git
|
|
2517
|
+
homepage: https://github.com/vim-scripts/XML-Completion
|
|
2518
|
+
desc: Completion for XML files
|
|
2519
|
+
- name: XML-Folding
|
|
2520
|
+
url: git://github.com/vim-scripts/XML-Folding.git
|
|
2521
|
+
type: git
|
|
2522
|
+
homepage: https://github.com/vim-scripts/XML-Folding
|
|
2523
|
+
desc: Folds XML / HTML Tags, CDATA and comments
|
|
2524
|
+
- name: XML-Indent
|
|
2525
|
+
url: git://github.com/vim-scripts/XML-Indent.git
|
|
2526
|
+
type: git
|
|
2527
|
+
homepage: https://github.com/vim-scripts/XML-Indent
|
|
2528
|
+
desc: My XML Indent (align attributes)
|
|
2529
|
+
- name: xml2latex
|
|
2530
|
+
url: git://github.com/vim-scripts/xml2latex.git
|
|
2531
|
+
type: git
|
|
2532
|
+
homepage: https://github.com/vim-scripts/xml2latex
|
|
2533
|
+
desc: Convert XML files to LaTeX tabbing environment
|
|
2534
|
+
- name: xmledit
|
|
2535
|
+
url: git://github.com/vim-scripts/xmledit.git
|
|
2536
|
+
type: git
|
|
2537
|
+
homepage: https://github.com/vim-scripts/xmledit
|
|
2538
|
+
desc: A filetype plugin to help edit XML, HTML, and SGML documents
|
|
2539
|
+
- name: XmlPretty
|
|
2540
|
+
url: git://github.com/vim-scripts/XmlPretty.git
|
|
2541
|
+
type: git
|
|
2542
|
+
homepage: https://github.com/vim-scripts/XmlPretty
|
|
2543
|
+
desc: Pretty-print an xml file
|
|
2544
|
+
- name: xsl-fo
|
|
2545
|
+
url: git://github.com/vim-scripts/xsl-fo.git
|
|
2546
|
+
type: git
|
|
2547
|
+
homepage: https://github.com/vim-scripts/xsl-fo
|
|
2548
|
+
desc: xsl-fo Syntax
|
|
2549
|
+
- name: xslt
|
|
2550
|
+
url: git://github.com/vim-scripts/xslt.git
|
|
2551
|
+
type: git
|
|
2552
|
+
homepage: https://github.com/vim-scripts/xslt
|
|
2553
|
+
desc: XSLT ftplugin
|
|
2554
|
+
- name: XSLT-syntax
|
|
2555
|
+
url: git://github.com/vim-scripts/XSLT-syntax.git
|
|
2556
|
+
type: git
|
|
2557
|
+
homepage: https://github.com/vim-scripts/XSLT-syntax
|
|
2558
|
+
desc: Syntax for XSLT (with HTML and others)
|
|
2559
|
+
- name: xtemplate
|
|
2560
|
+
url: git://github.com/vim-scripts/xtemplate.git
|
|
2561
|
+
type: git
|
|
2562
|
+
homepage: https://github.com/vim-scripts/xtemplate
|
|
2563
|
+
desc: code template engine
|
|
2564
|
+
- name: XTermEsc
|
|
2565
|
+
url: git://github.com/vim-scripts/XTermEsc.git
|
|
2566
|
+
type: git
|
|
2567
|
+
homepage: https://github.com/vim-scripts/XTermEsc
|
|
2568
|
+
desc: highlight xterm escape sequences
|
|
2569
|
+
- name: yamlvim
|
|
2570
|
+
url: git://github.com/vim-scripts/yamlvim.git
|
|
2571
|
+
type: git
|
|
2572
|
+
homepage: https://github.com/vim-scripts/yamlvim
|
|
2573
|
+
desc: YAML dumper/emitter in pure vimscript
|
|
2574
|
+
- name: Yankcode
|
|
2575
|
+
url: git://github.com/vim-scripts/Yankcode.git
|
|
2576
|
+
type: git
|
|
2577
|
+
homepage: https://github.com/vim-scripts/Yankcode
|
|
2578
|
+
desc: Paste syntax code to webpage quickly
|
|
2579
|
+
- name: YAPosting
|
|
2580
|
+
url: git://github.com/vim-scripts/YAPosting.git
|
|
2581
|
+
type: git
|
|
2582
|
+
homepage: https://github.com/vim-scripts/YAPosting
|
|
2583
|
+
desc: Yet Another Posting script
|
|
2584
|
+
- name: Zenburn
|
|
2585
|
+
url: git://github.com/vim-scripts/Zenburn.git
|
|
2586
|
+
type: git
|
|
2587
|
+
homepage: https://github.com/vim-scripts/Zenburn
|
|
2588
|
+
desc: Low contrast colour scheme for low light conditions
|
|
2589
|
+
- name: Zephyr-Color-Scheme
|
|
2590
|
+
url: git://github.com/vim-scripts/Zephyr-Color-Scheme.git
|
|
2591
|
+
type: git
|
|
2592
|
+
homepage: https://github.com/vim-scripts/Zephyr-Color-Scheme
|
|
2593
|
+
desc: Dark color scheme with distinct but calm colors
|
|
2594
|
+
- name: zetavim
|
|
2595
|
+
url: git://github.com/vim-scripts/zetavim.git
|
|
2596
|
+
type: git
|
|
2597
|
+
homepage: https://github.com/vim-scripts/zetavim
|
|
2598
|
+
desc: Plugin to ftdetect, syntax highlight ZWiki-zeta markup. Interface with Zeta site
|
|
2599
|
+
- name: Zmrok
|
|
2600
|
+
url: git://github.com/vim-scripts/Zmrok.git
|
|
2601
|
+
type: git
|
|
2602
|
+
homepage: https://github.com/vim-scripts/Zmrok
|
|
2603
|
+
desc: Dark, warm color scheme
|
|
2604
|
+
- name: ZoomWin
|
|
2605
|
+
url: git://github.com/vim-scripts/ZoomWin.git
|
|
2606
|
+
type: git
|
|
2607
|
+
homepage: https://github.com/vim-scripts/ZoomWin
|
|
2608
|
+
desc: Zoom in/out of windows (toggle between one window and multi-window)
|
|
2609
|
+
- name: Zopedav
|
|
2610
|
+
url: git://github.com/vim-scripts/Zopedav.git
|
|
2611
|
+
type: git
|
|
2612
|
+
homepage: https://github.com/vim-scripts/Zopedav
|
|
2613
|
+
desc: Handles remote editing with WebDAV, including zope
|
|
2614
|
+
- name: zOS-Enterprise-Compiler-PLI
|
|
2615
|
+
url: git://github.com/vim-scripts/zOS-Enterprise-Compiler-PLI.git
|
|
2616
|
+
type: git
|
|
2617
|
+
homepage: https://github.com/vim-scripts/zOS-Enterprise-Compiler-PLI
|
|
2618
|
+
desc: z/OS Enterprise Compiler PLI Language Syntax File
|
|
2619
|
+
- name: zzsplash
|
|
2620
|
+
url: git://github.com/vim-scripts/zzsplash.git
|
|
2621
|
+
type: git
|
|
2622
|
+
homepage: https://github.com/vim-scripts/zzsplash
|
|
2623
|
+
desc: Show Vim splash screen even when started with a filename argument
|
|
2624
|
+
- name: vim2ansi
|
|
2625
|
+
url: git://github.com/vim-scripts/vim2ansi.git
|
|
2626
|
+
type: git
|
|
2627
|
+
homepage: https://github.com/vim-scripts/vim2ansi
|
|
2628
|
+
desc: Convert highlighted text into ansi control sequence
|
|
2629
|
+
- name: Vimacs
|
|
2630
|
+
url: git://github.com/vim-scripts/Vimacs.git
|
|
2631
|
+
type: git
|
|
2632
|
+
homepage: https://github.com/vim-scripts/Vimacs
|
|
2633
|
+
desc: "Vim-Improved eMACS: Emacs emulation for Vim"
|
|
2634
|
+
- name: ViMail
|
|
2635
|
+
url: git://github.com/vim-scripts/ViMail.git
|
|
2636
|
+
type: git
|
|
2637
|
+
homepage: https://github.com/vim-scripts/ViMail
|
|
2638
|
+
desc: Compose and send mail from vim.
|
|
2639
|
+
- name: vimake
|
|
2640
|
+
url: git://github.com/vim-scripts/vimake.git
|
|
2641
|
+
type: git
|
|
2642
|
+
homepage: https://github.com/vim-scripts/vimake
|
|
2643
|
+
desc: Vimake is a programming aid written in C++ for Linux
|
|
2644
|
+
- name: vimargumentchec
|
|
2645
|
+
url: git://github.com/vim-scripts/vimargumentchec.git
|
|
2646
|
+
type: git
|
|
2647
|
+
homepage: https://github.com/vim-scripts/vimargumentchec
|
|
2648
|
+
desc: Library that helps to check function and command arguments.
|
|
2649
|
+
- name: Vimball
|
|
2650
|
+
url: git://github.com/vim-scripts/Vimball.git
|
|
2651
|
+
type: git
|
|
2652
|
+
homepage: https://github.com/vim-scripts/Vimball
|
|
2653
|
+
desc: "vim-based archiver: builds, extracts, and previews"
|
|
2654
|
+
- name: VimCalc
|
|
2655
|
+
url: git://github.com/vim-scripts/VimCalc.git
|
|
2656
|
+
type: git
|
|
2657
|
+
homepage: https://github.com/vim-scripts/VimCalc
|
|
2658
|
+
desc: Plugin that provides a convenient interactive calculator inside a Vim buffer.
|
|
2659
|
+
- name: vimcdoc
|
|
2660
|
+
url: git://github.com/vim-scripts/vimcdoc.git
|
|
2661
|
+
type: git
|
|
2662
|
+
homepage: https://github.com/vim-scripts/vimcdoc
|
|
2663
|
+
desc: Vim online documentation Chinese version
|
|
2664
|
+
- name: Vimchant
|
|
2665
|
+
url: git://github.com/vim-scripts/Vimchant.git
|
|
2666
|
+
type: git
|
|
2667
|
+
homepage: https://github.com/vim-scripts/Vimchant
|
|
2668
|
+
desc: Fast on-the-fly spell-checker based on Enchant
|
|
2669
|
+
- name: VimClojure
|
|
2670
|
+
url: git://github.com/vim-scripts/VimClojure.git
|
|
2671
|
+
type: git
|
|
2672
|
+
homepage: https://github.com/vim-scripts/VimClojure
|
|
2673
|
+
desc: A filetype, syntax and indent plugin for Clojure
|