From 4d8fea4b2d29d89a7c3efc3eab0f0fd46cbc0645 Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Tue, 10 Dec 2013 10:14:55 -0800 Subject: [PATCH] Not using Syntastic lazy redraw anymore This gets rid of the annoying flashing (issue #669), but reverts the workaround for a rare Vim crash bug (issue #593). We can't have both. Update to latest Vim to not get the crash bug. Fixes #669. --- autoload/youcompleteme.vim | 4 ---- 1 file changed, 4 deletions(-) diff --git a/autoload/youcompleteme.vim b/autoload/youcompleteme.vim index 404b493a..2282944f 100644 --- a/autoload/youcompleteme.vim +++ b/autoload/youcompleteme.vim @@ -176,10 +176,6 @@ endfunction function! s:TweakSyntasticOptions() call s:ForceCFamilyFiletypesSyntasticPassiveMode() call s:ForceSyntasticCFamilyChecker() - - " We set this to work around segfaults in old versions of Vim - " See here for details: https://github.com/scrooloose/syntastic/issues/834 - let g:syntastic_delayed_redraws = 1 endfunction