├── .gitignore ├── LICENSE ├── README.md ├── setup.py └── xontrib └── z.py /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /dist 3 | .idea 4 | __pycache__/ 5 | *.egg-info 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraLuma/xontrib-z/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraLuma/xontrib-z/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraLuma/xontrib-z/HEAD/setup.py -------------------------------------------------------------------------------- /xontrib/z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraLuma/xontrib-z/HEAD/xontrib/z.py --------------------------------------------------------------------------------