From 41794f6b580abd416749733b76559d97611292f4 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Sun, 14 Feb 2016 08:24:49 +0900 Subject: Improve remote plugin scripts --- runtime/plugin/rplugin.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/plugin') 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() -- cgit