disable screen redraw by default

This commit is contained in:
Alan Hamlett 2017-04-25 08:49:53 -07:00
parent 469bce9302
commit c89b973cb1
1 changed files with 2 additions and 2 deletions

View File

@ -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
" }}}