matiasmorant / SublimeDebugger

Graphical Debugger for Sublime Text
MIT License
60 stars 6 forks source link

SublimeDebugger

This is a graphical debugger for Sublime Text 3.

screenshot

Hire Me

The developer of this project needs a job. I can relocate anywhere in the world or work remotely. I have a degree in Mechanical Engineering. wvlia5@live.com.ar

Features

Languages Supported

How to add support to your favourite Language

You've got to write a backend for the debugger. They are located in the backends folder. Your backend should implement a class with the following members (Which will be called by the frontend):

Additionally, the following methods of the frontend should be called by your backend when relevant (accessed through the parent member of your backend):

Then import the backend from mydebugger.py. Add your language to Main.sublime-menu and to languageCommand in mydebugger.py

The Python3 backend (dbPython3.py) is the simpler one, take a look at that for guidance. Also, contact me if you really mean to implement one, I'll help you so we can include it here afterwards. wvlia5@live.com.ar

TODO