comparison src/undo.c @ 2378:85b7dc8da5eb vim73

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'.
author Bram Moolenaar <bram@vim.org>
date Fri, 23 Jul 2010 22:10:27 +0200
parents 76b7ba68a098
children a3aca345aafa
comparison
equal deleted inserted replaced
2377:878562053ba3 2378:85b7dc8da5eb
2709 { 2709 {
2710 win_T *wp; 2710 win_T *wp;
2711 2711
2712 FOR_ALL_WINDOWS(wp) 2712 FOR_ALL_WINDOWS(wp)
2713 { 2713 {
2714 if (wp->w_buffer == curbuf && wp->w_p_conc > 0) 2714 if (wp->w_buffer == curbuf && wp->w_p_cole > 0)
2715 redraw_win_later(wp, NOT_VALID); 2715 redraw_win_later(wp, NOT_VALID);
2716 } 2716 }
2717 } 2717 }
2718 #endif 2718 #endif
2719 2719