commit | f5963f719eb85e8aa71aeb5c23c4edf4949adef1 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Jul 23 22:10:27 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Jul 23 22:10:27 2010 +0200 |
tree | 9c3ab6deeb29ff964cbd77d01e885b3237f6c59a | |
parent | c88ebf7fa81833b401423214c62d0ecfaaa68b78 [diff] [blame] |
Add the 'concealcursor' option to decide when the cursor line is to be concealed or not. Rename 'conc' to 'cole' as the short name for 'conceallevel'.
diff --git a/src/undo.c b/src/undo.c index 77f57bc..58b55ba 100644 --- a/src/undo.c +++ b/src/undo.c
@@ -2711,7 +2711,7 @@ FOR_ALL_WINDOWS(wp) { - if (wp->w_buffer == curbuf && wp->w_p_conc > 0) + if (wp->w_buffer == curbuf && wp->w_p_cole > 0) redraw_win_later(wp, NOT_VALID); } }