parent
f4caf598fa
commit
e357f88de6
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user