changeset 18023:fd75825d06db v8.1.2007

patch 8.1.2007: no test for what 8.1.1926 fixes Commit: https://github.com/vim/vim/commit/fca068b977b1dc07b269e8c3e0ff7aa638357eff Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 8 14:07:47 2019 +0200 patch 8.1.2007: no test for what 8.1.1926 fixes Problem: No test for what 8.1.1926 fixes. Solution: Add a test case.
author Bram Moolenaar <Bram@vim.org>
date Sun, 08 Sep 2019 14:15:04 +0200
parents 6006041d8699
children 5b68c0bb3101
files src/testdir/test_highlight.vim src/version.c
diffstat 2 files changed, 22 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_highlight.vim
+++ b/src/testdir/test_highlight.vim
@@ -552,6 +552,26 @@ func Test_cursorline_after_yank()
   call delete('Xtest_cursorline_yank')
 endfunc
 
+" test for issue #4862
+func Test_put_before_cursorline()
+  new
+  only!
+  call setline(1, 'A')
+  redraw
+  let std_attr = screenattr(1, 1)
+  set cursorline
+  redraw
+  let cul_attr = screenattr(1, 1)
+  normal yyP
+  redraw
+  " Line 1 has cursor so it should be highlighted with CursorLine.
+  call assert_equal(cul_attr, screenattr(1, 1))
+  " And CursorLine highlighting from the second line should be gone.
+  call assert_equal(std_attr, screenattr(2, 1))
+  set nocursorline
+  bwipe!
+endfunc
+
 func Test_cursorline_with_visualmode()
   CheckScreendump
 
--- a/src/version.c
+++ b/src/version.c
@@ -758,6 +758,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2007,
+/**/
     2006,
 /**/
     2005,