We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9aed96 commit eeebcb2Copy full SHA for eeebcb2
neovim/plugin/script_host.py
@@ -48,10 +48,10 @@ def __init__(self, nvim):
48
# Handle DirChanged. #296
49
nvim.command(
50
'autocmd DirChanged * call rpcrequest({}, "python_chdir", v:event)'
51
- .format(nvim.channel_id), async=True)
+ .format(nvim.channel_id), async_=True)
52
# XXX: Avoid race condition.
53
# https://github.com/neovim/python-client/pull/296#issuecomment-358970531
54
- os.chdir(nvim.eval('getcwd()', async=False))
+ os.chdir(nvim.eval('getcwd()', async_=False))
55
56
def setup(self, nvim):
57
"""Setup import hooks and global streams.
0 commit comments