56 lines
1.3 KiB
Python
56 lines
1.3 KiB
Python
from neovim import attach, setup_logging
|
|
import sys
|
|
import importlib
|
|
|
|
serveraddr = sys.argv[1]
|
|
yarpid = int(sys.argv[2])
|
|
module = sys.argv[3]
|
|
module_obj = None
|
|
|
|
setup_logging(module)
|
|
|
|
# create another connection to avoid synchronization issue?
|
|
if len(serveraddr.split(':')) == 2:
|
|
serveraddr, port = serveraddr.split(':')
|
|
port = int(port)
|
|
nvim = attach('tcp', address=serveraddr, port=port)
|
|
else:
|
|
nvim = attach('socket', path=serveraddr)
|
|
|
|
sys.modules['vim'] = nvim
|
|
sys.modules['nvim'] = nvim
|
|
|
|
paths = nvim.eval(r'globpath(&rtp,"pythonx",1) . "\n" .'
|
|
r' globpath(&rtp,"rplugin/python3",1)')
|
|
for path in paths.split("\n"):
|
|
if not path:
|
|
continue
|
|
if path not in sys.path:
|
|
sys.path.append(path)
|
|
|
|
nvim.call('yarp#core#channel_started', yarpid, nvim.channel_id)
|
|
|
|
module_obj = importlib.import_module(module)
|
|
|
|
|
|
def on_request(method, args):
|
|
if hasattr(module_obj, method):
|
|
return getattr(module_obj, method)(*args)
|
|
else:
|
|
raise Exception('method %s not found' % method)
|
|
|
|
|
|
def on_notification(method, args):
|
|
if hasattr(module_obj, method):
|
|
getattr(module_obj, method)(*args)
|
|
else:
|
|
raise Exception('method %s not found' % method)
|
|
pass
|
|
|
|
|
|
def on_setup():
|
|
pass
|
|
|
|
|
|
nvim.run_loop(on_request, on_notification, on_setup)
|