diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-07-20 16:57:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-20 16:57:38 +0200 |
commit | 598cbcae4a9fdb3fd4cfbe1d1fed400c5eb0fb9c (patch) | |
tree | 0f152a355703138232be0e1d3cd0ad989e86612b /src/nvim/option.c | |
parent | 1a2560c2dcec7ef9bd5fb6d0523f8e80df01a9f5 (diff) | |
parent | 9879fd5d087cc3939f91f4714b0f95f03a78c011 (diff) | |
download | rneovim-598cbcae4a9fdb3fd4cfbe1d1fed400c5eb0fb9c.tar.gz rneovim-598cbcae4a9fdb3fd4cfbe1d1fed400c5eb0fb9c.tar.bz2 rneovim-598cbcae4a9fdb3fd4cfbe1d1fed400c5eb0fb9c.zip |
Merge pull request #19445 from famiu/fix/local_winbar_tabs
fix: local winbar with tabs
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 4dcd676393..6bbea8e2ae 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -3022,7 +3022,7 @@ ambw_end: } // add / remove window bars for 'winbar' if (gvarp == (char_u **)&p_wbr) { - set_winbar(); + set_winbar(true); } } else if (gvarp == &p_cpt) { // check if it is a valid value for 'complete' -- Acevedo @@ -6456,6 +6456,7 @@ void didset_window_options(win_T *wp) set_chars_option(wp, &wp->w_p_lcs, true); parse_winhl_opt(wp); // sets w_hl_needs_update also for w_p_winbl check_blending(wp); + set_winbar_win(wp, false); wp->w_grid_alloc.blending = wp->w_p_winbl > 0; } |