From c89b973cb18c85486c2e9db0899eb685f499ba4c Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Tue, 25 Apr 2017 08:49:53 -0700 Subject: [PATCH] disable screen redraw by default --- plugin/wakatime.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/wakatime.vim b/plugin/wakatime.vim index a8226fc..9bb4534 100644 --- a/plugin/wakatime.vim +++ b/plugin/wakatime.vim @@ -73,9 +73,9 @@ let s:VERSION = '5.0.1' let g:wakatime_HeartbeatFrequency = 2 endif - " Set default screen redraw to 1 (s:true) + " Set default screen redraw to 0 (s:false) if !exists("g:wakatime_ScreenRedraw") - let g:wakatime_ScreenRedraw = s:true + let g:wakatime_ScreenRedraw = s:false endif " }}}