Pynvim

Latest version: v0.5.2

Safety actively analyzes 710445 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 6

0.2.4

Temporarily disable asyncio on windows again, as stdio is not functional with asyncio yet.

The new `nvim.loop` attribute is for the moment only available on POSIX systems.

0.2.3

Replacing 0.2.2, which had a merge error.

In this release support of python3.3 is dropped. Henceforth we want python3
rplugins to be able to assume the usage of asyncio, so they can use the asyncio
event loop and libraries that build on it.

Furthermore, a close() method is added on nvim session objects. When used as
a library for externally connecting to a nvim instance (i e not rplugins),
it is recommended to call the close() method on the session object when it is
not needed anymore. Alternatively, sessions can be used as a context manager:

with neovim.attach('socket', path=thepath) as nvim:
do stuff with nvim session in this block:
print(nvim.funcs.getpid())
print(nvim.current.line)

This will close the session automatically.

0.2.2

In this release support of python3.3 is dropped. Henceforth we want python3
rplugins to be able to assume the usage of asyncio, so they can use the asyncio
event loop and libraries that build on it.

Furthermore, a close() method is added on nvim session objects. When used as
a library for externally connecting to a nvim instance (i e not rplugins),
it is recommended to call the close() method on the session object when it is
not needed anymore. Alternatively, sessions can be used as a context manager:

with neovim.attach('socket', path=thepath) as nvim:
do stuff with nvim session in this block:
print(nvim.funcs.getpid())
print(nvim.current.line)

This will close the session automatically.

0.2.1

Adds compability with msgpack 0.5.2.

0.2.0

Brings the client up-to-date with Nvim 0.2.1.

0.1.13

This release makes python 3.6 officially supported.

Page 3 of 6

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.