diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-26 08:25:36 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-08-26 10:14:59 +0800 |
commit | fa1c761d62667c28e4d3a81f379abeddb878f3cd (patch) | |
tree | 49b4a1025bed19a5948b7afefe300a4aabd0842e /src/nvim/buffer_defs.h | |
parent | 1ba3d5c712dcc2e2ee35c6bc27d9965f671f967a (diff) | |
download | rneovim-fa1c761d62667c28e4d3a81f379abeddb878f3cd.tar.gz rneovim-fa1c761d62667c28e4d3a81f379abeddb878f3cd.tar.bz2 rneovim-fa1c761d62667c28e4d3a81f379abeddb878f3cd.zip |
vim-patch:9.0.0036: 'fillchars' cannot have window-local values
Problem: 'fillchars' cannot have window-local values.
Solution: Make 'fillchars' global-local. (closes vim/vim#5206)
https://github.com/vim/vim/commit/96ba25ac01279f73c0ecb5d4aa4ff37aa359e5eb
Cherry-pick g:run_nr from patch 8.2.0454.
N/A patches for version.c:
vim-patch:9.0.0037: build error
Problem: Build error.
Solution: Add missing change.
https://github.com/vim/vim/commit/510f03738dfcadfe2099c5b6a58cb75f64dbaa82
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index d7d680b0fd..c0d7f8d066 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -257,10 +257,10 @@ typedef struct { #define w_p_scl w_onebuf_opt.wo_scl // 'signcolumn' char *wo_winhl; #define w_p_winhl w_onebuf_opt.wo_winhl // 'winhighlight' - char *wo_fcs; -#define w_p_fcs w_onebuf_opt.wo_fcs // 'fillchars' char *wo_lcs; #define w_p_lcs w_onebuf_opt.wo_lcs // 'listchars' + char *wo_fcs; +#define w_p_fcs w_onebuf_opt.wo_fcs // 'fillchars' long wo_winbl; #define w_p_winbl w_onebuf_opt.wo_winbl // 'winblend' |