diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2017-05-05 10:40:32 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2017-05-05 10:55:07 +0200 |
commit | 443399c27d63fea7b837af700a6f3142e96adb22 (patch) | |
tree | 71c679025a98f550c97775455fcc8889179617fa /src/nvim/buffer.c | |
parent | 631d55ada04bfeaedabb5bf43092457c5f78b8a5 (diff) | |
download | rneovim-443399c27d63fea7b837af700a6f3142e96adb22.tar.gz rneovim-443399c27d63fea7b837af700a6f3142e96adb22.tar.bz2 rneovim-443399c27d63fea7b837af700a6f3142e96adb22.zip |
options: consolidate updates for window string options affected by copy_winopt
update note at options.c head about window options
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 7def8c1684..ebe50c6d31 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -2316,7 +2316,7 @@ void get_winopts(buf_T *buf) /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */ if (p_fdls >= 0) curwin->w_p_fdl = p_fdls; - check_colorcolumn(curwin); + didset_window_options(curwin); } /* |