aboutsummaryrefslogtreecommitdiff
path: root/runtime/plugin
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-02-15 00:27:43 -0500
committerJustin M. Keyes <justinkz@gmail.com>2016-02-15 00:27:43 -0500
commit02612a3fc943ec85757586925e31856165d12ba8 (patch)
tree1efcf108b18172a154874d7df03f8340dfe85629 /runtime/plugin
parente3bf1385e69911e39c3f3a753d4c7db936328d7c (diff)
parent41794f6b580abd416749733b76559d97611292f4 (diff)
downloadrneovim-02612a3fc943ec85757586925e31856165d12ba8.tar.gz
rneovim-02612a3fc943ec85757586925e31856165d12ba8.tar.bz2
rneovim-02612a3fc943ec85757586925e31856165d12ba8.zip
Merge pull request #4254 from Shougo/remote
Improve remote plugin scripts
Diffstat (limited to 'runtime/plugin')
-rw-r--r--runtime/plugin/rplugin.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/plugin/rplugin.vim b/runtime/plugin/rplugin.vim
index 2b2d333738..879775ff0e 100644
--- a/runtime/plugin/rplugin.vim
+++ b/runtime/plugin/rplugin.vim
@@ -1,5 +1,5 @@
-if exists('loaded_remote_plugins') || &cp
+if exists('g:loaded_remote_plugins') || &cp
finish
endif
-let loaded_remote_plugins = 1
+let g:loaded_remote_plugins = 1
call remote#host#LoadRemotePlugins()