aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload/remote
diff options
context:
space:
mode:
authorJacques Germishuys <jacquesg@striata.com>2019-11-04 17:33:07 +0000
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-01-20 19:43:59 -0500
commitc25b5a1576eca912671d5f2fe47043055fbca2b0 (patch)
tree4bdb269f52e9e04be6d4e27572aa113966874cba /runtime/autoload/remote
parent4faf30de3ea72bd188c8894eb10f0c971ff28e90 (diff)
downloadrneovim-c25b5a1576eca912671d5f2fe47043055fbca2b0.tar.gz
rneovim-c25b5a1576eca912671d5f2fe47043055fbca2b0.tar.bz2
rneovim-c25b5a1576eca912671d5f2fe47043055fbca2b0.zip
remote plugins: add support for perl hosts
Diffstat (limited to 'runtime/autoload/remote')
-rw-r--r--runtime/autoload/remote/host.vim4
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/autoload/remote/host.vim b/runtime/autoload/remote/host.vim
index 1cf328e08d..c34ff4bee7 100644
--- a/runtime/autoload/remote/host.vim
+++ b/runtime/autoload/remote/host.vim
@@ -203,3 +203,7 @@ call remote#host#Register('ruby', '*.rb',
" nodejs
call remote#host#Register('node', '*',
\ function('provider#node#Require'))
+
+" perl
+call remote#host#Register('perl', '*',
+ \ function('provider#perl#Require'))