diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-03-12 17:56:48 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-03-12 17:56:48 +0100 |
commit | 24ff9e33a9b87f63547e7bce95d09ade1a04fcfb (patch) | |
tree | ef928f0be84aae9a1a0c579ca8aa0bd6dfe141b4 /src/feature.h | |
parent | 27bed20452ad2f8a9c9d749d2db20660c3d0e45a (diff) | |
download | vim-git-24ff9e33a9b87f63547e7bce95d09ade1a04fcfb.tar.gz |
updated for version 7.4.200v7.4.200
Problem: Too many #ifdefs in the code.
Solution: Enable FEAT_VISUAL always, await any complaints
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/feature.h b/src/feature.h index 24c408977..83ab55dff 100644 --- a/src/feature.h +++ b/src/feature.h @@ -211,18 +211,12 @@ #endif /* - * +visual Visual mode. + * +visual Visual mode - now always included. * +visualextra Extra features for Visual mode (mostly block operators). */ -#ifdef FEAT_SMALL -# define FEAT_VISUAL -# ifdef FEAT_NORMAL -# define FEAT_VISUALEXTRA -# endif -#else -# ifdef FEAT_CLIPBOARD -# undef FEAT_CLIPBOARD /* can't use clipboard without Visual mode */ -# endif +#define FEAT_VISUAL +#ifdef FEAT_NORMAL +# define FEAT_VISUALEXTRA #endif /* |