workaround for E117 error in Vundle

This commit is contained in:
Reed Esau
2014-08-25 01:40:56 -06:00
parent c4bc8b9075
commit c6fbf87f72

View File

@@ -19,7 +19,12 @@ let g:thematic#original = {}
let g:thematic#original.laststatus = &laststatus let g:thematic#original.laststatus = &laststatus
let g:thematic#original.ruler = &ruler let g:thematic#original.ruler = &ruler
if has('fullscreen') if has('fullscreen')
try
call thematic#gui#initFullscreen() call thematic#gui#initFullscreen()
catch /E117/
" This is happening during BundleUpdate in Vundle on first load.
" Unsure how best to fix.
endtry
endif endif
" Defaults " Defaults