aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_visual.vim
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-08-22 18:34:52 -0400
committerGitHub <noreply@github.com>2020-08-22 18:34:52 -0400
commit8c49e3d50959e24dadd688f56a18f104bd5fd934 (patch)
treee75e6d0435ce10e9df427c5b11e943127dad0983 /src/nvim/testdir/test_visual.vim
parent161cdba1e3b8b53f474b2e76655c8c1a5217802f (diff)
parent246c510b6022b7155c9b78767c41094df7cb2be8 (diff)
downloadrneovim-8c49e3d50959e24dadd688f56a18f104bd5fd934.tar.gz
rneovim-8c49e3d50959e24dadd688f56a18f104bd5fd934.tar.bz2
rneovim-8c49e3d50959e24dadd688f56a18f104bd5fd934.zip
Merge pull request #12770 from janlazo/vim-8.1.1115
vim-patch:8.1.{1115,2267},8.2.{607,814,1472,1474,1476,1511}
Diffstat (limited to 'src/nvim/testdir/test_visual.vim')
-rw-r--r--src/nvim/testdir/test_visual.vim11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_visual.vim b/src/nvim/testdir/test_visual.vim
index 7fc8cdd7f4..734f264672 100644
--- a/src/nvim/testdir/test_visual.vim
+++ b/src/nvim/testdir/test_visual.vim
@@ -432,3 +432,14 @@ func Test_Visual_Block()
close!
endfunc
+
+func Test_visual_put_in_block()
+ new
+ call setline(1, ['xxxx', 'y∞yy', 'zzzz'])
+ normal 1G2yl
+ exe "normal 1G2l\<C-V>jjlp"
+ call assert_equal(['xxxx', 'y∞xx', 'zzxx'], getline(1, 3))
+ bwipe!
+endfunc
+
+" vim: shiftwidth=2 sts=2 expandtab