1
0
forked from aniani/vim

Fix: concealed regions didn't get redrawn correctly when moving the cursor

through them.
This commit is contained in:
Bram Moolenaar
2010-07-28 18:14:45 +02:00
parent e0021c79a5
commit 6e202e52b7
2 changed files with 20 additions and 8 deletions

View File

@@ -808,6 +808,10 @@ typedef struct buf_state
{
int bs_idx; /* index of pattern */
int bs_flags; /* flags for pattern */
#ifdef FEAT_CONCEAL
int bs_seqnr; /* stores si_seqnr */
int bs_cchar; /* stores si_cchar */
#endif
reg_extmatch_T *bs_extmatch; /* external matches from start pattern */
} bufstate_T;