diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-11-21 14:40:04 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-11-21 14:40:04 +0100 |
commit | cafaa8a9502f64d5c23e51c1f89c5b322deb22fe (patch) | |
tree | 0ab118586f27f7a220ef093898d09926e67b8153 /src/testdir/test39.in | |
parent | d07c6e1e82d4321da0fb11ff408aeaeb9fba1f68 (diff) | |
download | vim-cafaa8a9502f64d5c23e51c1f89c5b322deb22fe.zip |
updated for version 7.4.099
Problem: Append in blockwise Visual mode with "$" is wrong.
Solution: After "$" don't use the code that checks if the cursor was moved.
(Hirohito Higashi, Ken Takata)
Diffstat (limited to 'src/testdir/test39.in')
-rw-r--r-- | src/testdir/test39.in | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/testdir/test39.in b/src/testdir/test39.in index 77e2bd768..4f42a13a5 100644 --- a/src/testdir/test39.in +++ b/src/testdir/test39.in @@ -23,6 +23,18 @@ G$khhhhhkkcmno /^aaaa/ :exe ":norm! l\<C-V>jjjlllI\<Right>\<Right> \<Esc>" :/^aa/,/^$/w >> test.out +:" Test for Visual block was created with the last <C-v>$ +/^A23$/ +:exe ":norm! l\<C-V>j$Aab\<Esc>" +:.,/^$/w >> test.out +:" Test for Visual block was created with the middle <C-v>$ (1) +/^B23$/ +:exe ":norm! l\<C-V>j$hAab\<Esc>" +:.,/^$/w >> test.out +:" Test for Visual block was created with the middle <C-v>$ (2) +/^C23$/ +:exe ":norm! l\<C-V>j$hhAab\<Esc>" +:.,/^$/w >> test.out :" gUe must uppercase a whole word, also when ß changes to SS Gothe youtußeuu endYpk0wgUe :" gUfx must uppercase until x, inclusive. @@ -49,6 +61,15 @@ bbbbbb cccccc dddddd +A23 +4567 + +B23 +4567 + +C23 +4567 + abcdefghijklm abcdefghijklm abcdefghijklm |