0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

Window split didn't copy the value of 'conceallevel'.

This commit is contained in:
Bram Moolenaar 2010-07-23 22:27:03 +02:00
parent f5963f719e
commit d497a30cbe
2 changed files with 2 additions and 7 deletions

View File

@ -30,13 +30,7 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs* *known-bugs*
-------------------- Known bugs and current work ----------------------- -------------------- Known bugs and current work -----------------------
a |test| and a |test| and a |test|. Check position in wrapped line with 'concealcursor' set.
Conceal in help files doesn't work nice. How about adding a 'concealcursor'
option:
-> implemented, but column isn't quite right just after concealed character.
- Don't conceal in Insert and Visual mode? Or make 'concealcursor' a string
option with mode characters.
- Check position in wrapped line.
Trick with syntax ID works, but it's not nice. Can we give a sequence nr to Trick with syntax ID works, but it's not nice. Can we give a sequence nr to
syntax item matches? At least the ones with a replacement char. syntax item matches? At least the ones with a replacement char.

View File

@ -9766,6 +9766,7 @@ copy_winopt(from, to)
#endif #endif
#ifdef FEAT_CONCEAL #ifdef FEAT_CONCEAL
to->wo_cocu = vim_strsave(from->wo_cocu); to->wo_cocu = vim_strsave(from->wo_cocu);
to->wo_cole = from->wo_cole;
#endif #endif
#ifdef FEAT_FOLDING #ifdef FEAT_FOLDING
to->wo_fdc = from->wo_fdc; to->wo_fdc = from->wo_fdc;