Cleanup for stow ---STOW
[dotfiles/.git] / .local / lib / python2.7 / site-packages / pynvim / plugin / __init__.py
diff --git a/.local/lib/python2.7/site-packages/pynvim/plugin/__init__.py b/.local/lib/python2.7/site-packages/pynvim/plugin/__init__.py
new file mode 100644 (file)
index 0000000..9365438
--- /dev/null
@@ -0,0 +1,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
+
+
+__all__ = ('Host', 'plugin', 'rpc_export', 'command', 'autocmd',
+           'function', 'encoding', 'decode', 'shutdown_hook')