diff src/testdir/test_textprop.vim @ 30304:f1fe59179180 v9.0.0488

patch 9.0.0488: cursor wrong with virtual text "above" and 'showbreak' Commit: https://github.com/vim/vim/commit/4c7fd4d68f69b4e420a5448f144f4d57eda22f8c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 17 17:15:33 2022 +0100 patch 9.0.0488: cursor wrong with virtual text "above" and 'showbreak' Problem: Cursor in wrong position with virtual text "above" and 'showbreak'. Solution: Take the first character column into account. (closes #11149)
author Bram Moolenaar <Bram@vim.org>
date Sat, 17 Sep 2022 18:30:04 +0200
parents 914b3c64ab92
children 43d942ff32ce
line wrap: on
line diff
--- a/src/testdir/test_textprop.vim
+++ b/src/testdir/test_textprop.vim
@@ -2874,6 +2874,11 @@ func Test_props_with_text_above()
   call term_sendkeys(buf, "g0")
   call VerifyScreenDump(buf, 'Test_prop_with_text_above_1b', {})
 
+  call term_sendkeys(buf, ":set showbreak=>>\<CR>")
+  call term_sendkeys(buf, "ggll")
+  call VerifyScreenDump(buf, 'Test_prop_with_text_above_1c', {})
+  call term_sendkeys(buf, ":set showbreak=\<CR>")
+
   call term_sendkeys(buf, "ggI")
   call VerifyScreenDump(buf, 'Test_prop_with_text_above_2', {})
   call term_sendkeys(buf, "inserted \<Esc>")