require patch 7.4.2344 to use Vim async job_start

This commit is contained in:
Alan Hamlett 2017-10-17 08:08:08 -07:00
parent 8e1eb55dcf
commit 6816edd140
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ let s:VERSION = '6.0.1'
let s:heartbeats_buffer = []
let s:send_buffer_seconds = 10 " seconds between sending buffered heartbeats
let s:last_sent = localtime()
let s:has_async = has('patch-7.4-1510') && exists('*job_start')
let s:has_async = has('patch-7.4-2344') && exists('*job_start')
let s:nvim_async = exists('*jobstart')