diff options
author | ckelsel <ckelsel@hotmail.com> | 2017-08-21 09:19:08 +0800 |
---|---|---|
committer | ckelsel <ckelsel@hotmail.com> | 2017-08-21 09:19:08 +0800 |
commit | 0b6fa3a553da3b83419c48fcbb6fb3ec413598e0 (patch) | |
tree | 63cda34cb93df36f64be4beea934ee34d850104c /src/nvim/version.c | |
parent | 673fc748237345914e0ad584bc4cba997c96a37e (diff) | |
parent | 8d1ccb606d3806dcf9c4bcfdb0446d8139c0e765 (diff) | |
download | rneovim-0b6fa3a553da3b83419c48fcbb6fb3ec413598e0.tar.gz rneovim-0b6fa3a553da3b83419c48fcbb6fb3ec413598e0.tar.bz2 rneovim-0b6fa3a553da3b83419c48fcbb6fb3ec413598e0.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r-- | src/nvim/version.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index f5b45caefc..2a3fdbd70d 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -1089,13 +1089,7 @@ static void list_features(void) msg_putchar('\n'); } } else { - while (msg_col % width) { - int old_msg_col = msg_col; - msg_putchar(' '); - if (old_msg_col == msg_col) { - break; // XXX: Avoid infinite loop. - } - } + msg_putchar(' '); } } else { if (msg_col > 0) { @@ -1103,7 +1097,7 @@ static void list_features(void) } } } - MSG_PUTS("For differences from Vim, see :help vim-differences\n\n"); + MSG_PUTS("See \":help feature-compile\"\n\n"); } void list_version(void) @@ -1144,7 +1138,7 @@ void list_version(void) } #endif // ifdef HAVE_PATHDEF - version_msg(_("\n\nOptional features included (+) or not (-): ")); + version_msg(_("\n\nFeatures: ")); list_features(); @@ -1216,7 +1210,6 @@ void intro_message(int colon) static char *(lines[]) = { N_(NVIM_VERSION_LONG), "", - N_("by al."), N_("Nvim is open source and freely distributable"), N_("https://neovim.io/community"), "", |