summaryrefslogtreecommitdiff
path: root/runtime/doc/channel.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-10-30 21:55:26 +0100
committerBram Moolenaar <Bram@vim.org>2016-10-30 21:55:26 +0100
commitb4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59 (patch)
tree66eae772fda9599999682b9720e65822170140b1 /runtime/doc/channel.txt
parentfb63090b62801d718fe7e1f44407358404c08724 (diff)
downloadvim-git-b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59.tar.gz
Runtime file updates.
Diffstat (limited to 'runtime/doc/channel.txt')
-rw-r--r--runtime/doc/channel.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/runtime/doc/channel.txt b/runtime/doc/channel.txt
index 6588c9e79..bfd7246d2 100644
--- a/runtime/doc/channel.txt
+++ b/runtime/doc/channel.txt
@@ -1,4 +1,4 @@
-*channel.txt* For Vim version 8.0. Last change: 2016 Sep 29
+*channel.txt* For Vim version 8.0. Last change: 2016 Oct 27
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -598,9 +598,10 @@ See |job_setoptions()| and |ch_setoptions()|.
*job-exit_cb*
"exit_cb": handler Callback for when the job ends. The arguments are the
job and the exit status.
- Vim checks about every 10 seconds for jobs that ended.
- The check also be triggered by calling |job_status()|,
- which may then invoke the exit_cb handler.
+ Vim checks up to 10 times per second for jobs that
+ ended. The check can also be triggered by calling
+ |job_status()|, which may then invoke the exit_cb
+ handler.
Note that data can be buffered, callbacks may still be
called after the process ends.
*job-timeout*