~ubuntu-branches/debian/sid/neovim/sid

« back to all changes in this revision

Viewing changes to runtime/autoload/provider/python3.vim

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2016-04-18 21:42:19 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20160418214219-1e6d4o1fwqarzk46
Tags: 0.1.3-1
* New upstream release.  (Closes: #820562)
* debian/control:
  + Remove unnecessary luarocks Build-Depends
  + Add libkvm-dev Build-Depends for kfreebsd-*
  + Add python(3)-neovim to Recommends.  (Closes: #812737)
  + Declare compiance with policy 3.9.8, no changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
  finish
25
25
endif
26
26
 
27
 
let s:plugin_path = expand('<sfile>:p:h').'/script_host.py'
28
 
 
29
27
" The Python3 provider plugin will run in a separate instance of the Python3
30
28
" host.
31
29
call remote#host#RegisterClone('legacy-python3-provider', 'python3')
32
 
call remote#host#RegisterPlugin('legacy-python3-provider', s:plugin_path, [])
 
30
call remote#host#RegisterPlugin('legacy-python3-provider', 'script_host.py', [])
33
31
 
34
32
function! provider#python3#Call(method, args)
35
33
  if s:err != ''