aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-11-20 08:46:23 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-11-20 08:46:23 -0300
commit58ba2241e9db836c96cb75f1848c31c71c7b9fac (patch)
treea418073631ebcc2e34a153651b3ff93d3c81c1d4
parent32ec851270ff93d3453450cba54162841f519283 (diff)
downloadrneovim-58ba2241e9db836c96cb75f1848c31c71c7b9fac.tar.gz
rneovim-58ba2241e9db836c96cb75f1848c31c71c7b9fac.tar.bz2
rneovim-58ba2241e9db836c96cb75f1848c31c71c7b9fac.zip
runtime: Change external plugin directory to "external-plugin"
-rw-r--r--runtime/autoload/rpc/host.vim2
1 files changed, 1 insertions, 1 deletions
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