summaryrefslogtreecommitdiffstats
path: root/runtime/doc/channel.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-07-15 22:54:41 +0200
committerBram Moolenaar <Bram@vim.org>2016-07-15 22:54:41 +0200
commit269f595f9eef584937e7eae70fde68cdd7da5bcf (patch)
tree67631e8ab3b7f15377a35dd27024613570b37618 /runtime/doc/channel.txt
parente0d3797664c59afc9705808f86a7cf00fd6d874d (diff)
Updated runtime files.
Diffstat (limited to 'runtime/doc/channel.txt')
-rw-r--r--runtime/doc/channel.txt10
1 files changed, 4 insertions, 6 deletions
diff --git a/runtime/doc/channel.txt b/runtime/doc/channel.txt
index dd4b8d3a83..6eec9f2ccd 100644
--- a/runtime/doc/channel.txt
+++ b/runtime/doc/channel.txt
@@ -1,4 +1,4 @@
-*channel.txt* For Vim version 7.4. Last change: 2016 Jul 07
+*channel.txt* For Vim version 7.4. Last change: 2016 Jul 15
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -6,13 +6,9 @@
Inter-process communication *channel*
-DRAFT DRAFT DRAFT DRAFT DRAFT DRAFT DRAFT DRAFT DRAFT DRAFT
-
Vim uses channels to communicate with other processes.
-A channel uses a socket or pipes *socket-interface*
+A channel uses a socket or pipes. *socket-interface*
Jobs can be used to start processes and communicate with them.
-
-Vim current supports up to 10 simultaneous channels.
The Netbeans interface also uses a channel. |netbeans|
1. Overview |job-channel-overview|
@@ -569,11 +565,13 @@ See |job_setoptions()| and |ch_setoptions()|.
"out_cb": handler Callback for when there is something to read on
stdout. Only for when the channel uses pipes. When
"out_cb" wasn't set the channel callback is used.
+ The two arguments are the channel and the message.
*job-err_cb* *err_cb*
"err_cb": handler Callback for when there is something to read on
stderr. Only for when the channel uses pipes. When
"err_cb" wasn't set the channel callback is used.
+ The two arguments are the channel and the message.
*job-close_cb*
"close_cb": handler Callback for when the channel is closed. Same as
"close_cb" on |ch_open()|, see |close_cb|.