comparison src/feature.h @ 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 ea4bf6df1a8a
children f579b934f51d
comparison
equal deleted inserted replaced
2377:878562053ba3 2378:85b7dc8da5eb
1161 # define FEAT_MOUSESHAPE 1161 # define FEAT_MOUSESHAPE
1162 # endif 1162 # endif
1163 #endif 1163 #endif
1164 1164
1165 /* GUI and some consoles can change the shape of the cursor. The code is also 1165 /* GUI and some consoles can change the shape of the cursor. The code is also
1166 * needed for the 'mouseshape' option. */ 1166 * needed for the 'mouseshape' and 'concealcursor' options. */
1167 #if defined(FEAT_GUI) || defined(MCH_CURSOR_SHAPE) || defined(FEAT_MOUSESHAPE) \ 1167 #if defined(FEAT_GUI) \
1168 || defined(MCH_CURSOR_SHAPE) \
1169 || defined(FEAT_MOUSESHAPE) \
1170 || defined(FEAT_CONCEAL) \
1168 || (defined(UNIX) && defined(FEAT_NORMAL)) 1171 || (defined(UNIX) && defined(FEAT_NORMAL))
1169 # define CURSOR_SHAPE 1172 # define CURSOR_SHAPE
1170 #endif 1173 #endif
1171 1174
1172 #if defined(FEAT_MZSCHEME) && (defined(FEAT_GUI_W32) || defined(FEAT_GUI_GTK) \ 1175 #if defined(FEAT_MZSCHEME) && (defined(FEAT_GUI_W32) || defined(FEAT_GUI_GTK) \