summaryrefslogtreecommitdiffstats
path: root/runtime/doc/channel.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-07-09 20:21:48 +0200
committerBram Moolenaar <Bram@vim.org>2016-07-09 20:21:48 +0200
commit063b9d15abea041a5bfff3ffc4e219e26fd1d4fa (patch)
tree991f749e954fc3096c12581861a276a4748258a5 /runtime/doc/channel.txt
parent0d3e24be5686c0710aa3c6671e4c626d6cb21a5f (diff)
Updated runtime files.
Diffstat (limited to 'runtime/doc/channel.txt')
-rw-r--r--runtime/doc/channel.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/runtime/doc/channel.txt b/runtime/doc/channel.txt
index 47039e1977..dd4b8d3a83 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 Jun 02
+*channel.txt* For Vim version 7.4. Last change: 2016 Jul 07
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -495,6 +495,9 @@ time a line is added to the buffer, the last-but-one line will be send to the
job stdin. This allows for editing the last line and sending it when pressing
Enter.
+NUL bytes in the text will be passed to the job (internally Vim stores these
+as NL bytes).
+
Reading job output in the close callback ~
*read-in-close-cb*
@@ -684,7 +687,8 @@ When the buffer written to is displayed in a window and the cursor is in the
first column of the last line, the cursor will be moved to the newly added
line and the window is scrolled up to show the cursor if needed.
-Undo is synced for every added line.
+Undo is synced for every added line. NUL bytes are accepted (internally Vim
+stores these as NL bytes).
Writing to a file ~