mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 17:50:04 +08:00
1.3 KiB
1.3 KiB
title | description |
---|---|
job api | job API provides some basic functions for running a job |
Available APIs >> job
Intro
job api provides a async job control api for vim and neovim.
let s:JOB = SpaceVim#api#import('job')
function! s:on_stdout(id, data, event) abort
" do something with stdout
endfunction
function! s:on_stderr(id, data, event) abort
" do something with stderr
endfunction
function! s:on_exit(id, data, event) abort
" handle exit code
endfunction
let cmd = ['python', 'test.py']
call s:JOB.start(cmd,
\ {
\ 'on_stdout' : function('s:on_stdout'),
\ 'on_stderr' : function('s:on_stderr'),
\ 'on_exit' : function('s:on_exit'),
\ }
\ )
Functions
function name | description |
---|---|
start(cmd, argv) |
start a job, return the job id |
send(id, data) |
send data to a job |
stop(id) |
stop a jobe with specific job id |
status(id) |
check the status of a job with the specific job id |
list() |
list all the jobs |