diff options
| author | Billy Vong <billyvg@gmail.com> | 2017-10-29 11:10:33 -0700 |
|---|---|---|
| committer | Billy Vong <billyvg@gmail.com> | 2017-10-29 11:10:33 -0700 |
| commit | 7890157931a3fdfddb647a06e27346071c55564c (patch) | |
| tree | 4eafc8720bfe367056c7cb4a8a1114b6302d9eb3 /runtime/autoload/remote | |
| parent | 8b199cb2fe5f9c2380937bfd5ea0654bdaef2918 (diff) | |
| download | rneovim-7890157931a3fdfddb647a06e27346071c55564c.tar.gz rneovim-7890157931a3fdfddb647a06e27346071c55564c.tar.bz2 rneovim-7890157931a3fdfddb647a06e27346071c55564c.zip | |
remote: add node.js as a remote plugin provider
Diffstat (limited to 'runtime/autoload/remote')
| -rw-r--r-- | runtime/autoload/remote/host.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/autoload/remote/host.vim b/runtime/autoload/remote/host.vim index e695fb7df7..dfaab7d246 100644 --- a/runtime/autoload/remote/host.vim +++ b/runtime/autoload/remote/host.vim @@ -199,3 +199,7 @@ call remote#host#Register('python3', '*', " Ruby call remote#host#Register('ruby', '*.rb', \ function('provider#ruby#Require')) + +" nodejs +call remote#host#Register('node', '*', + \ function('provider#node#Require')) |