├── .gitignore ├── Decompile_TEMPLATE.txt ├── LICENSE ├── README.md ├── __init__.py ├── decompiler.py ├── highlighter.py ├── img └── demo.gif └── plugin.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /Decompile_TEMPLATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martyx00/ghinja/HEAD/Decompile_TEMPLATE.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martyx00/ghinja/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martyx00/ghinja/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martyx00/ghinja/HEAD/__init__.py -------------------------------------------------------------------------------- /decompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martyx00/ghinja/HEAD/decompiler.py -------------------------------------------------------------------------------- /highlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martyx00/ghinja/HEAD/highlighter.py -------------------------------------------------------------------------------- /img/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martyx00/ghinja/HEAD/img/demo.gif -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martyx00/ghinja/HEAD/plugin.json --------------------------------------------------------------------------------