aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir
diff options
context:
space:
mode:
authorckelsel <ckelsel@hotmail.com>2017-09-24 09:48:52 +0800
committerckelsel <ckelsel@hotmail.com>2017-09-24 10:00:53 +0800
commit006425b8b683711cfb4f89074034ec1fe2085d40 (patch)
tree43b6bd31a3939ac32bc41b1c24f43a20dbd01d2a /src/nvim/testdir
parent4bb0e95abbf0a61d383d5261019a2667706c9d39 (diff)
downloadrneovim-006425b8b683711cfb4f89074034ec1fe2085d40.tar.gz
rneovim-006425b8b683711cfb4f89074034ec1fe2085d40.tar.bz2
rneovim-006425b8b683711cfb4f89074034ec1fe2085d40.zip
vim-patch:8.0.0330
Problem: Illegal memory access after "vapo". (Dominique Pelle) Solution: Fix the cursor column. https://github.com/vim/vim/commit/84b2a381451e9068b09ef6d85f5e8cf1598e7355
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r--src/nvim/testdir/test_visual.vim7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_visual.vim b/src/nvim/testdir/test_visual.vim
index 74c26e3d66..8cb59ca32a 100644
--- a/src/nvim/testdir/test_visual.vim
+++ b/src/nvim/testdir/test_visual.vim
@@ -28,3 +28,10 @@ func Test_Visual_ctrl_o()
set tw&
bw!
endfu
+
+func Test_Visual_vapo()
+ new
+ normal oxx
+ normal vapo
+ bwipe!
+endfunc