diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-02-12 06:36:17 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-02-12 06:36:17 +0800 |
commit | 612696bedc8f178cb08645dfb056f01efacf5122 (patch) | |
tree | 09809dd00e555589c47457c7eb9c8b3f2d7fc3e7 /src/nvim/option.c | |
parent | 906182065bd73e4fbedeecc347ea8c8647c3304f (diff) | |
download | rneovim-612696bedc8f178cb08645dfb056f01efacf5122.tar.gz rneovim-612696bedc8f178cb08645dfb056f01efacf5122.tar.bz2 rneovim-612696bedc8f178cb08645dfb056f01efacf5122.zip |
vim-patch:8.1.2073: when editing a buffer 'colorcolumn' may not work
Problem: When editing a buffer 'colorcolumn' may not work.
Solution: Set the buffer before copying option values. Call
check_colorcolumn() after copying window options.
https://github.com/vim/vim/commit/010ee9657acf1a9f799079d718998c94e50ccadc
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index b9fed8b378..dddf926b9a 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -1984,10 +1984,9 @@ static void didset_options(void) (void)did_set_spell_option(true); // set cedit_key (void)check_cedit(); - briopt_check(curwin); // initialize the table for 'breakat'. fill_breakat_flags(); - fill_culopt_flags(NULL, curwin); + didset_window_options(curwin); } // More side effects of setting options. @@ -6174,6 +6173,7 @@ void win_copy_options(win_T *wp_from, win_T *wp_to) { copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt); copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt); + didset_window_options(wp_to); } /// Copy the options from one winopt_T to another. |