mirror of
https://github.com/preservim/vim-thematic.git
synced 2025-11-11 11:23:49 -05:00
workaround for E117 error in Vundle
This commit is contained in:
@@ -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')
|
||||||
call thematic#gui#initFullscreen()
|
try
|
||||||
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user