From afb70bf65e4d13d7909ae696d3f2c3dd3534ef42 Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Fri, 27 Dec 2013 10:54:36 -0800 Subject: [PATCH] Revert "Not using Syntastic lazy redraw anymore" This reverts commit 4d8fea4b2d29d89a7c3efc3eab0f0fd46cbc0645. Since the commit we are reverting didn't resolve #669, we are reverting it to fix #593 (again). --- autoload/youcompleteme.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autoload/youcompleteme.vim b/autoload/youcompleteme.vim index 2282944f..404b493a 100644 --- a/autoload/youcompleteme.vim +++ b/autoload/youcompleteme.vim @@ -176,6 +176,10 @@ 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