diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-07-14 08:17:49 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2024-07-14 13:39:40 +0800 |
commit | ba36742211eea55bed2ffbca129a45023967f204 (patch) | |
tree | 788badd75a8c8f673a0f4fa7e498112320388f01 /runtime | |
parent | 9093fbdd026f088d923fea374a96a8b01ca0df3a (diff) | |
download | rneovim-ba36742211eea55bed2ffbca129a45023967f204.tar.gz rneovim-ba36742211eea55bed2ffbca129a45023967f204.tar.bz2 rneovim-ba36742211eea55bed2ffbca129a45023967f204.zip |
vim-patch:9.1.0574: ex: wrong handling of commands after bar
Problem: ex: wrong handling of commands after bar
Solution: for :append, :insert and :change use the text after the bar
as input for those commands. This is what POSIX requests.
(Mohamed Akram)
See the POSIX Spec:
https://pubs.opengroup.org/onlinepubs/9699919799/utilities/ex.html#tag_20_40_13_03
Section 12.c
closes: vim/vim#15229
https://github.com/vim/vim/commit/8c446da34998f6350911e07fbfd7932412c83185
Co-authored-by: Mohamed Akram <mohd.akram@outlook.com>
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/insert.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt index 6eda76f239..e12f240430 100644 --- a/runtime/doc/insert.txt +++ b/runtime/doc/insert.txt @@ -1927,6 +1927,16 @@ 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|. +Text typed after a "|" command separator is used first. So the following +command in ex mode: > + :a|one + two + . + :visual +<appends the following text, after the cursor line: > + one + two +< 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". |