comparison src/feature.h @ 532:7052f11a3dc9

updated for version 7.0150
author vimboss
date Sun, 25 Sep 2005 22:16:38 +0000
parents 4772a5e3f9fa
children 25a70b1cd2da
comparison
equal deleted inserted replaced
531:da9142bd190a 532:7052f11a3dc9
200 #ifdef FEAT_NORMAL 200 #ifdef FEAT_NORMAL
201 # define VIM_BACKTICK /* internal backtick expansion */ 201 # define VIM_BACKTICK /* internal backtick expansion */
202 #endif 202 #endif
203 203
204 /* 204 /*
205 * +textobjects Text objects: "vaw", "das", etc.
206 */
207 #ifdef FEAT_NORMAL
208 # define FEAT_TEXTOBJ
209 #endif
210
211 /*
212 * +visual Visual mode. 205 * +visual Visual mode.
213 * +visualextra Extra features for Visual mode (mostly block operators). 206 * +visualextra Extra features for Visual mode (mostly block operators).
214 */ 207 */
215 #ifdef FEAT_SMALL 208 #ifdef FEAT_SMALL
216 # define FEAT_VISUAL 209 # define FEAT_VISUAL
381 374
382 /* 375 /*
383 * +profile Profiling for functions and scripts. 376 * +profile Profiling for functions and scripts.
384 */ 377 */
385 #if defined(FEAT_HUGE) \ 378 #if defined(FEAT_HUGE) \
379 && defined(FEAT_EVAL) \
386 && ((defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)) \ 380 && ((defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)) \
387 || defined(WIN3264)) 381 || defined(WIN3264))
388 # define FEAT_PROFILE 382 # define FEAT_PROFILE
383 #endif
384
385 /*
386 * +textobjects Text objects: "vaw", "das", etc.
387 */
388 #if defined(FEAT_NORMAL) && defined(FEAT_EVAL)
389 # define FEAT_TEXTOBJ
389 #endif 390 #endif
390 391
391 /* 392 /*
392 * Insert mode completion with 'completefunc'. 393 * Insert mode completion with 'completefunc'.
393 */ 394 */