diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2014-10-19 21:15:12 -0700 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-10-20 13:29:18 -0400 |
commit | 6c78fd1a641bd8e15645f42a97512a0a128377e1 (patch) | |
tree | b00b9ff7a42cee9493d614cea62144d983c60ed0 /src | |
parent | 1eb3dae04a8fd703dcbc6257a3cf22a460e0d967 (diff) | |
download | rneovim-6c78fd1a641bd8e15645f42a97512a0a128377e1.tar.gz rneovim-6c78fd1a641bd8e15645f42a97512a0a128377e1.tar.bz2 rneovim-6c78fd1a641bd8e15645f42a97512a0a128377e1.zip |
version: remove "Running in Vi compatible mode" message #1309
Diffstat (limited to 'src')
-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; |