From 10256bb760fcab0dc25f7eb5b0b45966cb771939 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sat, 13 Jul 2024 04:38:37 +0800 Subject: [PATCH] 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 --- runtime/doc/insert.txt | 5 ----- 1 file changed, 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".