summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohamed Akram <mohd.akram@outlook.com>2024-07-12 18:53:07 +0200
committerChristian Brabandt <cb@256bit.org>2024-07-12 18:53:07 +0200
commit74703f1086e7815f356123736666d9930db8683a (patch)
tree5faee254c56b4d602c44dda1c474a4ad318b1720
parent231bb03946e5cfa5c54967e42c5017b6c83e4ac4 (diff)
runtime(doc): remove obsolete Ex insert behavior
related: #15120 closes: #15228 Signed-off-by: Mohamed Akram <mohd.akram@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--runtime/doc/insert.txt7
1 files changed, 1 insertions, 6 deletions
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt
index 6ebd83e3e7..08bf4f327e 100644
--- a/runtime/doc/insert.txt
+++ b/runtime/doc/insert.txt
@@ -1,4 +1,4 @@
-*insert.txt* For Vim version 9.1. Last change: 2024 Jan 04
+*insert.txt* For Vim version 9.1. Last change: 2024 Jul 12
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1995,11 +1995,6 @@ 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".