diff options
author | Florian Walch <florian@fwalch.com> | 2014-11-06 11:55:19 +0100 |
---|---|---|
committer | Florian Walch <florian@fwalch.com> | 2014-11-06 13:37:15 +0100 |
commit | 724a53306f21e6acfb22d28829ec9c6857e9cf8f (patch) | |
tree | 3867cdfc60e3747ee92fb6ee32e4aab87a8ccb91 | |
parent | 4cc26fba249361cccd791a76fc35c46d851096a5 (diff) | |
download | rneovim-724a53306f21e6acfb22d28829ec9c6857e9cf8f.tar.gz rneovim-724a53306f21e6acfb22d28829ec9c6857e9cf8f.tar.bz2 rneovim-724a53306f21e6acfb22d28829ec9c6857e9cf8f.zip |
version: Refer to nvim help on startup screen.
-rw-r--r-- | runtime/doc/nvim_intro.txt | 2 | ||||
-rw-r--r-- | src/nvim/version.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/runtime/doc/nvim_intro.txt b/runtime/doc/nvim_intro.txt index d3aa459ba2..7b115b1912 100644 --- a/runtime/doc/nvim_intro.txt +++ b/runtime/doc/nvim_intro.txt @@ -4,7 +4,7 @@ NVIM REFERENCE MANUAL by Thiago de Arruda -Introduction to Nvim *nvim-intro* +Introduction to Nvim *nvim* *nvim-intro* This is an introduction to Vim users that are just getting started with Nvim. It is not meant for Vim beginners. For a basic introduction to Vim, diff --git a/src/nvim/version.c b/src/nvim/version.c index 0cdf4d9f16..836a324e2e 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -917,6 +917,7 @@ void intro_message(int colon) "", N_("type :q<Enter> to exit "), N_("type :help<Enter> or <F1> for on-line help"), + N_("type :help nvim<Enter> for Neovim help "), }; // blanklines = screen height - # message lines |