summaryrefslogtreecommitdiff
path: root/runtime/doc/insert.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-09-30 21:47:56 +0200
committerBram Moolenaar <Bram@vim.org>2010-09-30 21:47:56 +0200
commit4a74803ef837eeb4d4fc799ac9a26fc93e584111 (patch)
tree49d3d0a083a47078ae42a3b353a691e005d71ab6 /runtime/doc/insert.txt
parentc2a406b3179af3a77fb059288ead7266cdce2ac8 (diff)
downloadvim-git-4a74803ef837eeb4d4fc799ac9a26fc93e584111.tar.gz
Runtime file updates.
Diffstat (limited to 'runtime/doc/insert.txt')
-rw-r--r--runtime/doc/insert.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt
index 9fe55870b..aa11ba787 100644
--- a/runtime/doc/insert.txt
+++ b/runtime/doc/insert.txt
@@ -1,4 +1,4 @@
-*insert.txt* For Vim version 7.3. Last change: 2010 Sep 15
+*insert.txt* For Vim version 7.3. Last change: 2010 Sep 29
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1766,6 +1766,11 @@ These two commands will keep on asking for lines, until you type a line
containing only a ".". Watch out for lines starting with a backslash, see
|line-continuation|.
+When in Ex mode (see |-e|) a backslash at the end of the line can be used to
+insert a NUL character. To be able to have a line ending in a backslash use
+two backslashes. This means that the number of backslashes is halved, but
+only at the end of the line.
+
NOTE: These commands cannot be used with |:global| or |:vglobal|.
":append" and ":insert" don't work properly in between ":if" and
":endif", ":for" and ":endfor", ":while" and ":endwhile".