Browse Source

Fixes

pull/10/head
gmarik 15 years ago
parent
commit
17f66dec08
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      README.md
  2. +1
    -1
      plugin/vundle.vim

+ 2
- 2
README.md View File

@ -13,11 +13,11 @@
Append those lines to your .vimrc
source '~/.vim/plugin/vundle.vim'
source ~/.vim/plugin/vundle.vim
Bundle "http://github.com/vim-scripts/L9.git"
Bundle "http://github.com/vim-scripts/FuzzyFinder.git"
Bundle "http://git.wincent.com/command-t.git"
Bundle "git://git.wincent.com/command-t.git"
Bundle "http://github.com/vim-scripts/rails.vim.git"
Bundle "http://github.com/vim-scripts/ack.vim.git"


+ 1
- 1
plugin/vundle.vim View File

@ -41,7 +41,7 @@ function! vundle#sync_bundles()
for bundle in g:bundles
let bundle_path = s:BundlePath(bundle)
let bundle_uri = g:bundle_uris[bundle]
execute '!echo "* '.bundle.'";cd '.bundle_path.' && git pull || git clone '.bundle_uri.' '.bundle_path
execute '!echo "* '.bundle.'";cd '.g:bundle_dir.' && git pull 2>/dev/null || git clone '.bundle_uri.' '.bundle_path
endfor
endfunction


Loading…
Cancel
Save