0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

patch 8.1.0007: no test for "o" and "O" in Visual block mode

Problem:    No test for "o" and "O" in Visual block mode.
Solution:   Add a test. (Dominique Pelle, closes #2932)
This commit is contained in:
Bram Moolenaar
2018-05-20 14:06:38 +02:00
parent a772baf85a
commit 2e94976abd
2 changed files with 21 additions and 0 deletions

View File

@@ -155,6 +155,25 @@ func Test_blockwise_visual()
enew!
endfunc
" Test swapping corners in blockwise visual mode with o and O
func Test_blockwise_visual_o_O()
enew!
exe "norm! 10i.\<Esc>Y4P3lj\<C-V>4l2jr "
exe "norm! gvO\<Esc>ra"
exe "norm! gvO\<Esc>rb"
exe "norm! gvo\<C-c>rc"
exe "norm! gvO\<C-c>rd"
call assert_equal(['..........',
\ '...c d..',
\ '... ..',
\ '...a b..',
\ '..........'], getline(1, '$'))
enew!
endfun
" Test Virtual replace mode.
func Test_virtual_replace()
if exists('&t_kD')

View File

@@ -761,6 +761,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
7,
/**/
6,
/**/