diff src/testdir/test_textprop.vim @ 23306:90ea5037a7e3 v8.2.2198

patch 8.2.2198: ml_get error when resizing window and using text property Commit: https://github.com/vim/vim/commit/23999d799cfe844b604f193183f8f84052c8e746 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 23 14:36:00 2020 +0100 patch 8.2.2198: ml_get error when resizing window and using text property Problem: ml_get error when resizing window and using text property. Solution: Validate botline of the right window. (closes https://github.com/vim/vim/issues/7528)
author Bram Moolenaar <Bram@vim.org>
date Wed, 23 Dec 2020 14:45:04 +0100
parents 4b398a229b0b
children 9f692a75d481
line wrap: on
line diff
--- a/src/testdir/test_textprop.vim
+++ b/src/testdir/test_textprop.vim
@@ -1358,4 +1358,24 @@ func Test_prop_block_insert()
   call prop_type_delete('test')
 endfunc
 
+" this was causing an ml_get error because w_botline was wrong
+func Test_prop_one_line_window()
+  enew
+  call range(2)->setline(1)
+  call prop_type_add('testprop', {})
+  call prop_add(1, 1, {'type': 'testprop'})
+  call popup_create('popup', {'textprop': 'testprop'})
+  $
+  new
+  wincmd _
+  call feedkeys("\r", 'xt')
+  redraw
+
+  call popup_clear()
+  call prop_type_delete('testprop')
+  close
+  bwipe!
+endfunc
+
+
 " vim: shiftwidth=2 sts=2 expandtab