diff options
author | Pavel Platto <hinidu@gmail.com> | 2014-06-05 10:59:58 +0300 |
---|---|---|
committer | Pavel Platto <hinidu@gmail.com> | 2014-08-02 09:13:06 +0300 |
commit | 215d747e2247ab8d4cbe55ef26d9d12e5e26eca4 (patch) | |
tree | d14db6a645f182aa3c8fa997c9271ddc3ce2663e | |
parent | 6ff5759ed24d71ca626dcd41b69f3fc4d40d5fa4 (diff) | |
download | rneovim-215d747e2247ab8d4cbe55ef26d9d12e5e26eca4.tar.gz rneovim-215d747e2247ab8d4cbe55ef26d9d12e5e26eca4.tar.bz2 rneovim-215d747e2247ab8d4cbe55ef26d9d12e5e26eca4.zip |
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).
-rw-r--r-- | src/nvim/version.c | 4 |
1 files changed, 0 insertions, 4 deletions
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", |