"""Nvim plugin/host subpackage.""" from pynvim.plugin.decorators import (autocmd, command, decode, encoding, function, plugin, rpc_export, shutdown_hook) from pynvim.plugin.host import Host # type: ignore[attr-defined] __all__ = ('Host', 'plugin', 'rpc_export', 'command', 'autocmd', 'function', 'encoding', 'decode', 'shutdown_hook')