diff options
| author | dundargoc <gocdundar@gmail.com> | 2024-01-07 13:05:03 +0100 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-01-22 22:36:40 +0100 |
| commit | eb5d15e3838f53e2fcd25989c88db87458e9f984 (patch) | |
| tree | de13432021adb8632ed61cd9bbe4270eaec0674c /runtime/autoload/remote | |
| parent | 13d50c3b13fb6f2bba948e50fefee451e0a90487 (diff) | |
| download | rneovim-eb5d15e3838f53e2fcd25989c88db87458e9f984.tar.gz rneovim-eb5d15e3838f53e2fcd25989c88db87458e9f984.tar.bz2 rneovim-eb5d15e3838f53e2fcd25989c88db87458e9f984.zip | |
refactor: rewrite python provider in lua
Diffstat (limited to 'runtime/autoload/remote')
| -rw-r--r-- | runtime/autoload/remote/host.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/runtime/autoload/remote/host.vim b/runtime/autoload/remote/host.vim index 884b478f19..0032a4b71e 100644 --- a/runtime/autoload/remote/host.vim +++ b/runtime/autoload/remote/host.vim @@ -190,11 +190,9 @@ endfunction " Registration of standard hosts -" Python/Python3 -call remote#host#Register('python', '*', - \ function('provider#pythonx#Require')) +" Python3 call remote#host#Register('python3', '*', - \ function('provider#pythonx#Require')) + \ function('provider#python3#Require')) " Ruby call remote#host#Register('ruby', '*.rb', |