Bugfix: fixed condition to source $MYGVIMRC

This commit is contained in:
gmarik 2011-01-05 13:57:47 -06:00
parent 46f5dcd5cc
commit 79e2e58107

View File

@ -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)