commit | f70e3d6c7e4139c8d655101a850c03f522cc98b7 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Jul 24 13:15:07 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Jul 24 13:15:07 2010 +0200 |
tree | 8e7eddaf6e5daf5f636c4dc5d2829b124558b434 | |
parent | d497a30cbe89e25e065c29cec7fd1988900b86e9 [diff] |
Don't conceal text in lines inside the Visual area.
diff --git a/src/screen.c b/src/screen.c index f9183e1..b7f4f40 100644 --- a/src/screen.c +++ b/src/screen.c
@@ -4424,7 +4424,8 @@ if ( wp->w_p_cole > 0 && (wp != curwin || lnum != wp->w_cursor.lnum || conceal_cursor_line(wp)) - && (syntax_flags & HL_CONCEAL) != 0) + && (syntax_flags & HL_CONCEAL) != 0 + && !lnum_in_visual_area) { char_attr = conceal_attr; if (prev_syntax_id != syntax_id