comparison src/testdir/test_statusline.vim @ 22464:b74bdd85bb26 v8.2.1780

patch 8.2.1780: statusline not updated when splitting windows Commit: https://github.com/vim/vim/commit/668008be66326ed9e5b1122abede34ed3d2de2d8 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 1 19:06:35 2020 +0200 patch 8.2.1780: statusline not updated when splitting windows Problem: Statusline not updated when splitting windows. Solution: Call status_redraw_all(). (Jason Franklin, closes https://github.com/vim/vim/issues/5496)
author Bram Moolenaar <Bram@vim.org>
date Thu, 01 Oct 2020 19:15:03 +0200
parents 0650d220f742
children 92a100fc5e17
comparison
equal deleted inserted replaced
22463:05c3310118da 22464:b74bdd85bb26
431 " clean up 431 " clean up
432 call StopVimInTerminal(buf) 432 call StopVimInTerminal(buf)
433 call delete('XTest_statusline') 433 call delete('XTest_statusline')
434 endfunc 434 endfunc
435 435
436 func Test_statusline_after_split_vsplit()
437 only
438
439 " Make the status line of each window show the window number.
440 set ls=2 stl=%{winnr()}
441
442 split | redraw
443 vsplit | redraw
444
445 " The status line of the third window should read '3' here.
446 call assert_equal('3', nr2char(screenchar(&lines - 1, 1)))
447
448 only
449 set ls& stl&
450 endfunc
451
452
436 " vim: shiftwidth=2 sts=2 expandtab 453 " vim: shiftwidth=2 sts=2 expandtab