aboutsummaryrefslogtreecommitdiff
path: root/runtime/plugin
diff options
context:
space:
mode:
authorShougo Matsushita <Shougo.Matsu@gmail.com>2016-02-14 08:24:49 +0900
committerShougo Matsushita <Shougo.Matsu@gmail.com>2016-02-14 08:24:49 +0900
commit41794f6b580abd416749733b76559d97611292f4 (patch)
treeda1b0e58d4e64ec3ef79941d811950df3c18f4dc /runtime/plugin
parentf03ab69a35b4ecf27ad4e44643b5e63b29e0b7b6 (diff)
downloadrneovim-41794f6b580abd416749733b76559d97611292f4.tar.gz
rneovim-41794f6b580abd416749733b76559d97611292f4.tar.bz2
rneovim-41794f6b580abd416749733b76559d97611292f4.zip
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()