Add DeferBuffer vim command
This commit is contained in:
parent
1e5c9162f9
commit
0233dccd1e
1 changed files with 14 additions and 9 deletions
|
@ -22,18 +22,22 @@ function Defer(command, ...)
|
|||
if has("nvim")
|
||||
call jobstart(a:command, {
|
||||
\ "out_io": "pipe",
|
||||
\ "out_cb": { pipe, text -> add(l:buffer, text) },
|
||||
\ "on_stdout": { pipe, text -> extend(l:buffer, text) },
|
||||
\ "on_exit": { id, code -> <SID>exit(code, l:buffer, l:start, strftime("%s"), l:callbacks) }
|
||||
\ })
|
||||
\})
|
||||
else
|
||||
call job_start(a:command, {
|
||||
\ "out_io": "pipe",
|
||||
\ "out_cb": { pipe, text -> add(l:buffer, text) },
|
||||
\ "close_cb": { pipe -> <SID>exit(0, l:buffer, l:start, strftime("%s"), a:000) }
|
||||
\ })
|
||||
\})
|
||||
end
|
||||
endfun
|
||||
|
||||
function s:replace(buf, text)
|
||||
call nvim_buf_set_lines(a:buf, 0, nvim_buf_line_count(a:buf), 0, a:text)
|
||||
endfun
|
||||
|
||||
function s:expand(string)
|
||||
return substitute(a:string, '%[:a-z]*', '\=expand(submatch(0))', 'g')
|
||||
endfun
|
||||
|
@ -55,3 +59,4 @@ endfun
|
|||
comm -complete=shellcmd -nargs=* Defer call Defer(s:expand(<q-args>))
|
||||
comm -complete=shellcmd -nargs=* DeferEcho call Defer(s:expand(<q-args>), { result -> <SID>echo("Deferred job completed (".(result['tend']-result['tstart'])."s): ".s:expand(<q-args>)) }, { result -> <SID>echo("Deferred job errored with ".result['code']." (".(result['tend']-result['tstart'])."s): ".s:expand(<q-args>), 'WarningMsg') })
|
||||
comm -complete=shellcmd -nargs=* DeferNotify call Defer(s:expand(<q-args>), { result -> <SID>notify("Deferred job completed (".(result['tend']-result['tstart'])."s):\n$ ".s:expand(<q-args>)) }, { result -> <SID>notify("Deferred job errored with ".result['code']." (".(result['tend']-result['tstart'])."s):\n$ ".s:expand(<q-args>)) })
|
||||
comm -complete=shellcmd -count=0 -nargs=* DeferBuffer call Defer(s:expand(<q-args>), { result -> <SID>replace(<count>, result['output']) })
|
||||
|
|
Loading…
Reference in a new issue