aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-07-13 04:38:37 +0800
committerGitHub <noreply@github.com>2024-07-13 04:38:37 +0800
commit10256bb760fcab0dc25f7eb5b0b45966cb771939 (patch)
treef8af21a639677156bb59141e817377782550551e
parent16f63b964fc4a7842fd9a2fd5e0ba8c997d549c9 (diff)
downloadrneovim-10256bb760fcab0dc25f7eb5b0b45966cb771939.tar.gz
rneovim-10256bb760fcab0dc25f7eb5b0b45966cb771939.tar.bz2
rneovim-10256bb760fcab0dc25f7eb5b0b45966cb771939.zip
vim-patch:74703f1: runtime(doc): remove obsolete Ex insert behavior (#29678)
related: vim/vim#15120 closes: vim/vim#15228 https://github.com/vim/vim/commit/74703f1086e7815f356123736666d9930db8683a Nvim only supports Vim Ex mode, so this is long obsolete in Nvim. Co-authored-by: Mohamed Akram <mohd.akram@outlook.com>
-rw-r--r--runtime/doc/insert.txt5
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt
index 91b0d41f1c..6eda76f239 100644
--- a/runtime/doc/insert.txt
+++ b/runtime/doc/insert.txt
@@ -1927,11 +1927,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".