efficient vim config
[dotfiles/.git] / .local / lib / python3.9 / site-packages / pynvim / plugin / __init__.py
1 """Nvim plugin/host subpackage."""
2
3 from pynvim.plugin.decorators import (autocmd, command, decode, encoding, function,
4                                       plugin, rpc_export, shutdown_hook)
5 from pynvim.plugin.host import Host
6
7
8 __all__ = ('Host', 'plugin', 'rpc_export', 'command', 'autocmd',
9            'function', 'encoding', 'decode', 'shutdown_hook')