aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-03-15 04:59:18 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-03-15 04:59:18 +0100
commit0093c25dd3795972b953f9914cc33fc38c5d9dbc (patch)
treea9bd78d3c7e184f160d035ebe6f82cc9f3a4e46d
parent338664e96c9b0fd00cfe2c1312fa40219301379d (diff)
downloadrneovim-0093c25dd3795972b953f9914cc33fc38c5d9dbc.tar.gz
rneovim-0093c25dd3795972b953f9914cc33fc38c5d9dbc.tar.bz2
rneovim-0093c25dd3795972b953f9914cc33fc38c5d9dbc.zip
doc: nodejs
-rw-r--r--runtime/doc/provider.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/doc/provider.txt b/runtime/doc/provider.txt
index d44cc2558e..4a76f1399e 100644
--- a/runtime/doc/provider.txt
+++ b/runtime/doc/provider.txt
@@ -132,9 +132,10 @@ To disable Node support: >
*g:node_host_prog*
Command to start the Node host. Setting this makes startup faster.
-By default, Nvim searches for `neovim-node-host` using "npm root -g". This is
-rather slow, you can set g:node_host_prog to avoid it.
-
+By default, Nvim searches for `neovim-node-host` using "npm root -g", which
+can be slow. To avoid this, set g:node_host_prog to an absolute path: >
+ let g:node_host_prog = '/usr/local/bin/neovim-node-host'
+<
==============================================================================
Clipboard integration *provider-clipboard* *clipboard*