diff options
author | shadmansaleh <13149513+shadmansaleh@users.noreply.github.com> | 2022-10-22 13:54:29 +0600 |
---|---|---|
committer | shadmansaleh <13149513+shadmansaleh@users.noreply.github.com> | 2022-10-24 21:14:41 +0600 |
commit | a53998ae78902309c225b323e0b8d9f1f75fe147 (patch) | |
tree | 4c019f10ec043613512d9623fa7c68ecd2f28043 /src/nvim/option_defs.h | |
parent | 837190720310deca0231fc42aa3023957ff79a3a (diff) | |
download | rneovim-a53998ae78902309c225b323e0b8d9f1f75fe147.tar.gz rneovim-a53998ae78902309c225b323e0b8d9f1f75fe147.tar.bz2 rneovim-a53998ae78902309c225b323e0b8d9f1f75fe147.zip |
fix: setting tabline option not redrawing tabline
With #20374 tabline option is marked with 'statuslines' redraw flag.
But 'statuslines' doesn't redraw tabline. As a result, tabline doesn't
get redrawn when tabline option is set and statuslines get unnecessarily redrawn.
This patch fixes the issue by adding a new redraw flag P_RTABL to redraw
tabline.
Diffstat (limited to 'src/nvim/option_defs.h')
-rw-r--r-- | src/nvim/option_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/option_defs.h b/src/nvim/option_defs.h index c4333a6f61..19e4780e0a 100644 --- a/src/nvim/option_defs.h +++ b/src/nvim/option_defs.h @@ -24,6 +24,7 @@ #define P_NO_MKRC 0x200U ///< don't include in :mkvimrc output // when option changed, what to display: +#define P_RTABL 0x800U ///< redraw tabline #define P_RSTAT 0x1000U ///< redraw status lines #define P_RWIN 0x2000U ///< redraw current window and recompute text #define P_RBUF 0x4000U ///< redraw current buffer and recompute text |