diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-07-13 04:38:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-13 04:38:37 +0800 |
commit | 10256bb760fcab0dc25f7eb5b0b45966cb771939 (patch) | |
tree | f8af21a639677156bb59141e817377782550551e | |
parent | 16f63b964fc4a7842fd9a2fd5e0ba8c997d549c9 (diff) | |
download | rneovim-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.txt | 5 |
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". |