summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-23 22:27:03 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-23 22:27:03 +0200
commitd497a30cbe89e25e065c29cec7fd1988900b86e9 (patch)
treef00b73adf4674e054dd991241c3fc7c2f6b784b6 /src
parentf5963f719eb85e8aa71aeb5c23c4edf4949adef1 (diff)
Window split didn't copy the value of 'conceallevel'.
Diffstat (limited to 'src')
-rw-r--r--src/option.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/option.c b/src/option.c
index 8d7f09a54d..8a3f6b59b6 100644
--- a/src/option.c
+++ b/src/option.c
@@ -9766,6 +9766,7 @@ copy_winopt(from, to)
#endif
#ifdef FEAT_CONCEAL
to->wo_cocu = vim_strsave(from->wo_cocu);
+ to->wo_cole = from->wo_cole;
#endif
#ifdef FEAT_FOLDING
to->wo_fdc = from->wo_fdc;