comparison src/testdir/test_display.vim @ 28386:cf41a1f469f6 v8.2.4718

patch 8.2.4718: @@@ in the last line sometimes drawn in the wrong place Commit: https://github.com/vim/vim/commit/cee9c844f27bceaba90362a3fa27a04d4d06c0fd Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 9 12:40:13 2022 +0100 patch 8.2.4718: @@@ in the last line sometimes drawn in the wrong place Problem: @@@ in the last line sometimes drawn in the wrong place. Solution: Make sure the column is valid. (closes https://github.com/vim/vim/issues/10130)
author Bram Moolenaar <Bram@vim.org>
date Sat, 09 Apr 2022 13:45:02 +0200
parents bdd6df4832ba
children 9dce192d1ac2
comparison
equal deleted inserted replaced
28385:602492db9d01 28386:cf41a1f469f6
370 call assert_equal(expected, lines) 370 call assert_equal(expected, lines)
371 %bw! 371 %bw!
372 let &breakat=_breakat 372 let &breakat=_breakat
373 endfunc 373 endfunc
374 374
375 func Test_display_lastline()
376 CheckScreendump
377
378 let lines =<< trim END
379 call setline(1, ['aaa', 'b'->repeat(100)])
380 set display=truncate
381 vsplit
382 100wincmd <
383 END
384 call writefile(lines, 'XdispLastline')
385 let buf = RunVimInTerminal('-S XdispLastline', #{rows: 10})
386 call VerifyScreenDump(buf, 'Test_display_lastline_1', {})
387
388 call term_sendkeys(buf, ":set display=lastline\<CR>")
389 call VerifyScreenDump(buf, 'Test_display_lastline_2', {})
390
391 call term_sendkeys(buf, ":100wincmd >\<CR>")
392 call VerifyScreenDump(buf, 'Test_display_lastline_3', {})
393
394 call term_sendkeys(buf, ":set display=truncate\<CR>")
395 call VerifyScreenDump(buf, 'Test_display_lastline_4', {})
396
397 call StopVimInTerminal(buf)
398 call delete('XdispLastline')
399 endfunc
400
375 401
376 " vim: shiftwidth=2 sts=2 expandtab 402 " vim: shiftwidth=2 sts=2 expandtab