dotfiles/vim/plugins/nvim-yarp/autoload/yarp.vim

18 lines
343 B
VimL
Raw Normal View History

2018-04-05 13:06:54 +02:00
func! yarp#py3(module)
let rp = yarp#core#new()
let rp.type = 'py3'
let rp.module = a:module
let rp.init = function('yarp#pyx#init')
return rp
endfunc
func! yarp#py(module)
let rp = yarp#core#new()
let rp.type = 'py'
let rp.module = a:module
let rp.init = function('yarp#pyx#init')
return rp
endfunc