Merge pull request #18562 from famiu/feat/ui/winbar

feat(ui): add `'winbar'`
This commit is contained in:
bfredl
2022-05-18 13:08:07 +02:00
committed by GitHub
26 changed files with 538 additions and 169 deletions

View File

@@ -8830,7 +8830,7 @@ static void ex_redraw(exarg_T *eap)
ui_flush();
}
/// ":redrawstatus": force redraw of status line(s)
/// ":redrawstatus": force redraw of status line(s) and window bar(s)
static void ex_redrawstatus(exarg_T *eap)
{
if (State & MODE_CMDPREVIEW) {
@@ -8846,8 +8846,7 @@ static void ex_redrawstatus(exarg_T *eap)
} else {
status_redraw_curbuf();
}
update_screen(VIsual_active ? INVERTED :
0);
update_screen(VIsual_active ? INVERTED : 0);
RedrawingDisabled = r;
p_lz = p;
ui_flush();