forked from aniani/vim
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 #5496)
This commit is contained in:
@@ -1273,13 +1273,11 @@ win_split_ins(
|
||||
if (flags & (WSP_TOP | WSP_BOT))
|
||||
(void)win_comp_pos();
|
||||
|
||||
/*
|
||||
* Both windows need redrawing
|
||||
*/
|
||||
// Both windows need redrawing. Update all status lines, in case they
|
||||
// show something related to the window count or position.
|
||||
redraw_win_later(wp, NOT_VALID);
|
||||
wp->w_redr_status = TRUE;
|
||||
redraw_win_later(oldwin, NOT_VALID);
|
||||
oldwin->w_redr_status = TRUE;
|
||||
status_redraw_all();
|
||||
|
||||
if (need_status)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user