1
0
forked from aniani/vim

updated for version 7.0150

This commit is contained in:
Bram Moolenaar
2005-09-25 22:16:38 +00:00
parent bfd8fc0529
commit 1e01546026
38 changed files with 1826 additions and 1496 deletions

View File

@@ -201,13 +201,6 @@
# define VIM_BACKTICK /* internal backtick expansion */
#endif
/*
* +textobjects Text objects: "vaw", "das", etc.
*/
#ifdef FEAT_NORMAL
# define FEAT_TEXTOBJ
#endif
/*
* +visual Visual mode.
* +visualextra Extra features for Visual mode (mostly block operators).
@@ -383,11 +376,19 @@
* +profile Profiling for functions and scripts.
*/
#if defined(FEAT_HUGE) \
&& defined(FEAT_EVAL) \
&& ((defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)) \
|| defined(WIN3264))
# define FEAT_PROFILE
#endif
/*
* +textobjects Text objects: "vaw", "das", etc.
*/
#if defined(FEAT_NORMAL) && defined(FEAT_EVAL)
# define FEAT_TEXTOBJ
#endif
/*
* Insert mode completion with 'completefunc'.
*/