diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-08-05 03:17:08 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-10-11 19:32:31 +0200 |
commit | b11f5aa119af001a6ebee4cb610ff2cce20936ce (patch) | |
tree | fa54497177ed4058ce0893ca5f64dd373c9c29c6 /runtime/doc/job_control.txt | |
parent | e17e21e4cfb4c9c402b26e49f36af6c2ca6239ec (diff) | |
download | rneovim-b11f5aa119af001a6ebee4cb610ff2cce20936ce.tar.gz rneovim-b11f5aa119af001a6ebee4cb610ff2cce20936ce.tar.bz2 rneovim-b11f5aa119af001a6ebee4cb610ff2cce20936ce.zip |
doc: xdg, MAINTAIN.md, channel-id, job control
- tutor: emphasize K
Diffstat (limited to 'runtime/doc/job_control.txt')
-rw-r--r-- | runtime/doc/job_control.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/runtime/doc/job_control.txt b/runtime/doc/job_control.txt index ed5f16902a..e5cd765e83 100644 --- a/runtime/doc/job_control.txt +++ b/runtime/doc/job_control.txt @@ -16,12 +16,14 @@ Concepts Job Id *job-id* -When a job starts it is assigned a number, unique for the life of the current -Nvim session. Functions like |jobstart()| return job ids. Functions like +Each job is identified by an integer id, unique for the life of the current +Nvim session. Each job-id is a valid |channel-id|: they share the same "key +space". Functions like |jobstart()| return job ids; functions like |jobsend()|, |jobstop()|, |rpcnotify()|, and |rpcrequest()| take job ids. -The job's stdio streams are represented as a |channel|. It is possible to send -and recieve raw bytes, or use |msgpack-rpc|. +Job stdio streams form a |channel| which can send and receive raw bytes or +|msgpack-rpc| messages. + ============================================================================== Usage *job-control-usage* |