File: __init__.py

package info (click to toggle)
python-pynvim 0.5.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 432 kB
  • sloc: python: 3,040; makefile: 4
file content (9 lines) | stat: -rw-r--r-- 388 bytes parent folder | download
1
2
3
4
5
6
7
8
9
"""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')