From 593b08b63de13fddc8f95d3ea2fc197040fe6846 Mon Sep 17 00:00:00 2001 From: gmarik Date: Mon, 9 May 2011 22:49:53 -0500 Subject: [PATCH 1/2] Vundle is a bundle too! Conflicts: test/vimrc --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bacbc79..ca8d24f 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ 1. Setup [Vundle]: - git clone http://github.com/gmarik/vundle.git ~/.vim/vundle.git + git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle 2. Configure bundles: @@ -15,9 +15,10 @@ set nocompatible " be iMproved filetype off " required! - set rtp+=~/.vim/vundle.git/ + set rtp+=~/.vim/bundle/vundle/ call vundle#rc() + " My Bundles here: " " original repos on github @@ -31,6 +32,8 @@ " non github repos Bundle 'git://git.wincent.com/command-t.git' " ... + " let Vundle manage Vundle + Bundle 'gmarik/vundle' filetype plugin indent on " required! @@ -108,10 +111,9 @@ see [`:h vundle`](vundle/blob/master/doc/vundle.txt#L1) vimdoc for more details. * √ activate newly added bundles on .vimrc reload or after :BundleInstall * √ use preview window for search results * √ vim documentation -* tests +* √ put vundle to bundles/ too(will fix vundle help) +* √ tests * improve error handling -* put vundle to bundles/ too(will fix vundle help) -* `:VundleUpdate` - self.update * handle dependencies * allow specify revision/version? * search by description aswell From 1cc7ab3dfd03d2ac5b617b553803c791b8ef8f14 Mon Sep 17 00:00:00 2001 From: gmarik Date: Mon, 9 May 2011 23:00:50 -0500 Subject: [PATCH 2/2] test/vimrc --- test/vimrc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/test/vimrc b/test/vimrc index 172679e..272c3a4 100644 --- a/test/vimrc +++ b/test/vimrc @@ -1,13 +1,19 @@ " vim -u test/vimrc set nocompatible +let root = '/tmp/vundle_bundles/' +if !isdirectory(expand(root).'/vundle') + exec '!git clone http://github.com/gmarik/vundle.git '.root.'/vundle' +endif + filetype off + runtime macros/matchit.vim -set rtp+=~/.vim/vundle.git/ -call vundle#rc('/tmp/vundle_bundles') +exec 'set rtp+='.root.'/vundle' -silent BundleClean! + +call vundle#rc(root) " vim-scripts name Bundle 'molokai'