summaryrefslogtreecommitdiffstats
path: root/src/version.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-06-23 19:23:02 +0200
committerBram Moolenaar <Bram@vim.org>2018-06-23 19:23:02 +0200
commit04958cbaf25eea27eceedaa987adfb354ad5f7fd (patch)
tree9a47e4e99b5b702e12d08c0424a91ae701eabb4d /src/version.c
parent5ec7414a1c0512832f60c17437d6374cbf4b08e9 (diff)
patch 8.1.0105: all tab stops are the samev8.1.0105
Problem: All tab stops are the same. Solution: Add the variable tabstop feature. (Christian Brabandt, closes #2711)
Diffstat (limited to 'src/version.c')
-rw-r--r--src/version.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c
index e2ccc112e7..85b6797108 100644
--- a/src/version.c
+++ b/src/version.c
@@ -677,6 +677,11 @@ static char *(features[]) =
#else
"-user_commands",
#endif
+#ifdef FEAT_VARTABS
+ "+vartabs",
+#else
+ "-vartabs",
+#endif
"+vertsplit",
#ifdef FEAT_VIRTUALEDIT
"+virtualedit",
@@ -779,6 +784,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 105,
+/**/
104,
/**/
103,