diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-08-19 13:15:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-19 13:15:12 +0200 |
commit | b3da396804ec0a63f11b86a363bd4c98e23f8ebd (patch) | |
tree | cf437e397f9e06594de73f4ac65f9725c303449f /src/nvim/version.c | |
parent | f465bf0cfa3c20152de2d3ca2ddede9fbcde086e (diff) | |
parent | b13070ec01844977f10cae38fc6f2a0fd9defad8 (diff) | |
download | rneovim-b3da396804ec0a63f11b86a363bd4c98e23f8ebd.tar.gz rneovim-b3da396804ec0a63f11b86a363bd4c98e23f8ebd.tar.bz2 rneovim-b3da396804ec0a63f11b86a363bd4c98e23f8ebd.zip |
Merge #7171 from justinmk/doc
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"), "", |