async: define config variable for older vims

references #1542
This commit is contained in:
Christian Brabandt 2017-08-25 18:50:15 +02:00
parent f4caf598fa
commit e357f88de6
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09

View File

@ -215,16 +215,17 @@ endif
function! airline#async#nvim_vcs_untracked(cfg, file, vcs) function! airline#async#nvim_vcs_untracked(cfg, file, vcs)
let cmd = a:cfg.cmd . shellescape(a:file) let cmd = a:cfg.cmd . shellescape(a:file)
let id = -1 let id = -1
if has("nvim")
let config = { let config = {
\ 'buf': '', \ 'buf': '',
\ 'vcs': a:vcs, \ 'vcs': a:vcs,
\ 'cfg': a:cfg, \ 'cfg': a:cfg,
\ 'file': a:file, \ 'file': a:file,
\ 'cwd': fnamemodify(a:file, ':p:h'), \ 'cwd': fnamemodify(a:file, ':p:h')
\ 'on_stdout': function('s:nvim_untracked_job_handler'),
\ 'on_exit': function('s:nvim_untracked_job_handler')
\ } \ }
if has("nvim")
call extend(config, {
\ 'on_stdout': function('s:nvim_untracked_job_handler'),
\ 'on_exit': function('s:nvim_untracked_job_handler')})
if has_key(s:untracked_jobs, config.file) if has_key(s:untracked_jobs, config.file)
" still running " still running
return return