diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-11-06 09:45:30 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-11-06 09:45:30 -0500 |
commit | 7c7874d11b07167e3ed2b5a2fc21484ff1c6be34 (patch) | |
tree | 6e665ff98f9a747465f160233f9ea8f7fab19631 | |
parent | 37d608b8c179dd7a68bdf6edf985e4df453231cc (diff) | |
parent | 724a53306f21e6acfb22d28829ec9c6857e9cf8f (diff) | |
download | rneovim-7c7874d11b07167e3ed2b5a2fc21484ff1c6be34.tar.gz rneovim-7c7874d11b07167e3ed2b5a2fc21484ff1c6be34.tar.bz2 rneovim-7c7874d11b07167e3ed2b5a2fc21484ff1c6be34.zip |
Merge pull request #1412 from fwalch/startup-help
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 b009ac20a7..4d81cc86bf 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -918,6 +918,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 |