Win/gVim: fix "no signs at start" race

This commit is contained in:
Marco Hinz 2017-02-21 17:10:48 +01:00
parent d155dffd9d
commit 01bcf8afab
No known key found for this signature in database
GPG Key ID: 1C980A1B657B4A4F

View File

@ -37,6 +37,11 @@ augroup signify
if (s:realtime || get(g:, 'signify_update_on_focusgained')) && !has('gui_win32')
autocmd FocusGained * SignifyRefresh
endif
if has('gui_running') && has('win32')
" Fix 'no signs at start' race.
autocmd GUIEnter * redraw
endif
augroup END
" Init: commands {{{1