1
0
mirror of https://github.com/gryf/pythonhelper.git synced 2025-12-18 20:10:24 +01:00

You can now set the updatetime used by pythonhelper with g:pythonhelper_updatetime.

This commit is contained in:
cheater
2012-02-08 08:59:41 +01:00
committed by cheater
parent 1e1d1cc6f1
commit e1d3306adc

View File

@@ -715,7 +715,12 @@ autocmd CursorHoldI * call PHCursorHold()
autocmd BufDelete * silent call PHBufferDelete()
" period of no activity after which the CursorHold event is triggered
set updatetime=1000
if (exists("g:pythonhelper_updatetime"))
let &updatetime = g:pythonhelper_updatetime
" otherwise just return an empty string
else
set updatetime=1000
endif
" }}}