aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/version.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r--src/nvim/version.c52
1 files changed, 36 insertions, 16 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c
index e26da2c607..dea307925b 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -175,6 +175,36 @@ static char *(features[]) = {
};
static int included_patches[] = {
+ //488,
+ //487,
+ //486,
+ //485,
+ //484,
+ //483,
+ //482,
+ //481,
+ //480,
+ //479,
+ //478,
+ //477,
+ //476,
+ //475,
+ //474,
+ //473,
+ //472,
+ //471,
+ //470,
+ //469,
+ //468,
+ //467,
+ //465,
+ //464,
+ //463,
+ //462,
+ //461,
+ //460,
+ //459,
+ //458,
//457,
//456,
//455,
@@ -199,10 +229,10 @@ static int included_patches[] = {
436,
//435,
//434,
- //433,
+ 433,
//432 NA
//431 NA
- //430,
+ //430 NA
//429 NA
//428 NA
//427,
@@ -226,7 +256,7 @@ static int included_patches[] = {
//409 NA
408,
407,
- //406,
+ 406,
405,
//404 NA
//403 NA
@@ -234,12 +264,12 @@ static int included_patches[] = {
//401 NA
//400 NA
//399 NA
- //398,
+ //398 NA
397,
//396,
//395,
- //394,
- //393,
+ //394 NA
+ //393 NA
392,
391,
//390,
@@ -887,21 +917,11 @@ void intro_message(int colon)
"",
N_("type :q<Enter> to exit "),
N_("type :help<Enter> or <F1> for on-line help"),
- NULL,
- "",
- N_("Running in Vi compatible mode"),
- N_("type :set nocp<Enter> for Vim defaults"),
- N_("type :help cp-default<Enter> for info on this"),
};
// blanklines = screen height - # message lines
blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1);
- if (!p_cp) {
- // add 4 for not showing "Vi compatible" message
- blanklines += 4;
- }
-
// Don't overwrite a statusline. Depends on 'cmdheight'.
if (p_ls > 1) {
blanklines -= Rows - topframe->fr_height;