diff options
-rw-r--r-- | src/nvim/version.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index e26da2c607..fbb2b081dd 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -887,21 +887,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; |