summaryrefslogtreecommitdiffstats
path: root/runtime/doc/channel.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-07 16:03:51 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-07 16:03:51 +0100
commit664f3cf3f21d3699bfd179c318ef5c869c085648 (patch)
tree33c061c600cf54a9ab1dc810bd02689bff097cec /runtime/doc/channel.txt
parentf48ee3c28488f7c361732316f905ac420b3d8087 (diff)
Runtime file updates.
Diffstat (limited to 'runtime/doc/channel.txt')
-rw-r--r--runtime/doc/channel.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/channel.txt b/runtime/doc/channel.txt
index 8767d8714b..1c401c41f3 100644
--- a/runtime/doc/channel.txt
+++ b/runtime/doc/channel.txt
@@ -1,4 +1,4 @@
-*channel.txt* For Vim version 8.1. Last change: 2019 Sep 11
+*channel.txt* For Vim version 8.1. Last change: 2019 Dec 07
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -223,7 +223,7 @@ ch_open() fails quickly. On MS-Windows "waittime" applies.
*E898* *E901* *E902*
If there is an error reading or writing a channel it will be closed.
-*E630* *E631*
+*E630* *E631*
==============================================================================
4. Using a JSON or JS channel *channel-use*
@@ -752,7 +752,7 @@ handle that separately, add an "err_cb" handler: >
If you want to handle both stderr and stdout with one handler use the
"callback" option: >
- let job = job_start(command, {"callback": "MyHandler"})
+ let job = job_start(command, {"callback": "MyHandler"})
Depending on the system, starting a job can put Vim in the background, the
started job gets the focus. To avoid that, use the `foreground()` function.