Browse Source

Merge 01a2045712 into 7d9b10874e

pull/222/merge
Lee 11 years ago
parent
commit
cff86fc6d5
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      autoload/vundle.vim

+ 4
- 1
autoload/vundle.vim View File

@ -61,7 +61,10 @@ endif
" :Plugin command in the vimrc. It is not possible to do this automatically
" because when loading the vimrc file no plugins where loaded yet.
func! vundle#rc(...) abort
let g:bundle_dir = len(a:000) > 0 ? expand(a:1, 1) : expand('$HOME/.vim/bundle', 1)
if has('gui_win32')
let g:bundle_dir = len(a:000) > 0 ? expand(a:1, 1) : expand('$HOME\vimfiles\bundle', 1)
else
let g:bundle_dir = len(a:000) > 0 ? expand(a:1, 1) : expand('$HOME/.vim/bundle', 1)
let g:updated_bundles = []
let g:vundle_log = []
let g:vundle_changelog = ['Updated Plugins:']


Loading…
Cancel
Save