From 58ba2241e9db836c96cb75f1848c31c71c7b9fac Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Thu, 20 Nov 2014 08:46:23 -0300 Subject: runtime: Change external plugin directory to "external-plugin" --- runtime/autoload/rpc/host.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime') diff --git a/runtime/autoload/rpc/host.vim b/runtime/autoload/rpc/host.vim index 177d816df0..0b5069af20 100644 --- a/runtime/autoload/rpc/host.vim +++ b/runtime/autoload/rpc/host.vim @@ -119,7 +119,7 @@ function! s:RegistrationCommands(host) let host_id = a:host.'-registration-clone' call rpc#host#RegisterClone(host_id, a:host) let pattern = s:plugin_patterns[a:host] - let paths = globpath(&rtp, 'plugin/external/'.a:host.'/'.pattern, 0, 1) + let paths = globpath(&rtp, 'external-plugin/'.a:host.'/'.pattern, 0, 1) for path in paths call rpc#host#RegisterPlugin(host_id, path, []) endfor -- cgit