diff src/testdir/test_visual.vim @ 27374:c9a6c79998b2 v8.2.4215

patch 8.2.4215: illegal memory access when copying lines in Visual mode Commit: https://github.com/vim/vim/commit/dc5490e2cbc8c16022a23b449b48c1bd0083f366 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 25 13:52:53 2022 +0000 patch 8.2.4215: illegal memory access when copying lines in Visual mode Problem: Illegal memory access when copying lines in Visual mode. Solution: Adjust the Visual position after copying lines.
author Bram Moolenaar <Bram@vim.org>
date Tue, 25 Jan 2022 15:00:05 +0100
parents 85f56e16da9b
children a4746d1a3cf3
line wrap: on
line diff
--- a/src/testdir/test_visual.vim
+++ b/src/testdir/test_visual.vim
@@ -1328,5 +1328,16 @@ func Test_visual_exchange_windows()
   bwipe!
 endfunc
 
+" this was leaving the end of the Visual area beyond the end of a line
+func Test_visual_ex_copy_line()
+  new
+  call setline(1, ["aaa", "bbbbbbbbbxbb"])
+  /x
+  exe "normal ggvjfxO"
+  t0
+  normal gNU
+  bwipe!
+endfunc
+
 
 " vim: shiftwidth=2 sts=2 expandtab