From 215d747e2247ab8d4cbe55ef26d9d12e5e26eca4 Mon Sep 17 00:00:00 2001 From: Pavel Platto Date: Thu, 5 Jun 2014 10:59:58 +0300 Subject: Show +cursorshape in :version All code which was inside #ifdef CURSOR_SHAPE is being used now, except one in version.c (that occurence is fixed by this commit). --- src/nvim/version.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index 8214cb60b4..4d0e58e2c3 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -61,11 +61,7 @@ static char *(features[]) = { "+conceal", "+cscope", "+cursorbind", -#ifdef CURSOR_SHAPE "+cursorshape", -#else // ifdef CURSOR_SHAPE - "-cursorshape", -#endif // ifdef CURSOR_SHAPE "+dialog_con", "+diff", "+digraphs", -- cgit From 5881842007c8ca95e74311844d05b0ae9372be1d Mon Sep 17 00:00:00 2001 From: Pavel Platto Date: Fri, 6 Jun 2014 14:15:40 +0300 Subject: Remove FEAT_TAG_ANYWHITE This feature allow to use any white space characters instead of one in tag files. It is disabled in vanilla Vim's default build configuration. Exuberant ctags use format with exactly one TAB. --- src/nvim/version.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index 4d0e58e2c3..c59642ba8c 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -141,11 +141,7 @@ static char *(features[]) = { "+syntax", "+tag_binary", "+tag_old_static", -#ifdef FEAT_TAG_ANYWHITE - "+tag_any_white", -#else // ifdef FEAT_TAG_ANYWHITE "-tag_any_white", -#endif // ifdef FEAT_TAG_ANYWHITE #if defined(UNIX) // only Unix can have terminfo instead of termcap -- cgit