From 6c78fd1a641bd8e15645f42a97512a0a128377e1 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Sun, 19 Oct 2014 21:15:12 -0700 Subject: version: remove "Running in Vi compatible mode" message #1309 --- src/nvim/version.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src') 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 to exit "), N_("type :help or for on-line help"), - NULL, - "", - N_("Running in Vi compatible mode"), - N_("type :set nocp for Vim defaults"), - N_("type :help cp-default 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; -- cgit