From 79e2e581070a995fd66745ed9cb6f5bc7482db48 Mon Sep 17 00:00:00 2001 From: gmarik Date: Wed, 5 Jan 2011 13:57:47 -0600 Subject: [PATCH] Bugfix: fixed condition to source $MYGVIMRC --- autoload/vundle/installer.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index b9bd083..190c7c0 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -13,7 +13,7 @@ endf func! s:reload_bundles() " TODO: obtain Bundles without sourcing .vimrc silent source $MYVIMRC - if !filereadable($MYGVIMRC)| silent source $MYGVIMRC | endif + if filereadable($MYGVIMRC)| silent source $MYGVIMRC | endif endf func! s:helptags(rtp)