we don't care about vim version as long as it has async

This commit is contained in:
Alan Hamlett 2017-10-04 18:24:40 -07:00
parent aafc4bf402
commit e7f65fb7ad
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ let s:VERSION = '6.0.0'
let s:heartbeats_buffer = []
let s:send_buffer_seconds = 10 " seconds between sending buffered heartbeats
let s:last_sent = localtime()
let s:has_async = v:version >= 800 && exists('*job_start')
let s:has_async = has('patch-7.4-1510') && exists('*job_start')
function! s:Init()