diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-08-17 17:30:17 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-08-17 17:43:26 -0400 |
commit | 4b0b391f9f4ecac903b490cdb0834a2f4ab0e310 (patch) | |
tree | 744786bd703d35c794c2c03b7183bdf6125bf88a /runtime/doc | |
parent | 966f1abd8bc07915c30b4530627e272bf7a1c1c6 (diff) | |
download | rneovim-4b0b391f9f4ecac903b490cdb0834a2f4ab0e310.tar.gz rneovim-4b0b391f9f4ecac903b490cdb0834a2f4ab0e310.tar.bz2 rneovim-4b0b391f9f4ecac903b490cdb0834a2f4ab0e310.zip |
host.vim: s:GetManifestPath(): Remove for-loop.
Without the for-loop it is easier to follow, more explicit, and fewer
lines.
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/remote_plugin.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/remote_plugin.txt b/runtime/doc/remote_plugin.txt index 25fd638b10..dddc021d68 100644 --- a/runtime/doc/remote_plugin.txt +++ b/runtime/doc/remote_plugin.txt @@ -130,9 +130,9 @@ like this: It's a way to provide IDE capabilities in Nvim while still keeping it fast and lightweight for general use. It's also analogous to the |:helptags| command. -Unless a path is set in the `$NVIM_RPLUGIN_MANIFEST` environment variable, the -manifest will be written to a file named `rplugin.vim` in one of the following -directories: + *$NVIM_RPLUGIN_MANIFEST* +Unless $NVIM_RPLUGIN_MANIFEST is set the manifest will be written to a file +named `rplugin.vim` at: Unix ~ $XDG_DATA_HOME/nvim/ or ~/.local/share/nvim/ |