Graphical Debugger for Sublime Text using the debug adapter protocol
Graphical Debugger for sublime text for debuggers that support the debug adapter protocol.

Using package control run Package Control: Install Package and select Debugger.
or clone into your sublime Packages directory (If you are on Sublime Text 3 use the st3 branch)
This project attempts to match Visual Studio Code’s Debugger fairly closely so their documentation can be pretty helpful. See https://code.visualstudio.com/docs/editor/debugging
This project comes with some pre-configured debuggers (They can be installed using Debugger: Install adapter)
Open the debug panel
Debugger: OpenInstall a debug adapter by running: Debugger: Install adapter from the command palette.
Add a configuration Debugger: Add Configuration from the command palette (or add one manually, see below).
debugger_configurations to your sublime-projec and use the same configuration format as Visual Studio CodeYour configuration will look something like the following but with some debugger specific fields.
"debugger_configurations" : [
{
"name" : "Name of your configuration",
"request" : "launch"|"attach",
"type" : "debugger name",
...
}
]
Debugger: Start (if no configuration is selected it will ask you to select or create one)Tasks are based on sublime build_systems with more integration so they can be used more seamlessly while debugging. When errors occur while running a task they are reported in the debugger ui (problem detection is the same as sublime, you must add file_regex to your task)
see https://www.sublimetext.com/docs/3/build_systems.html
Tasks are basically the same as sublime builds but there are a few additional paramters.
name which will show up in the debugger ui and the be the name of the panel
"debugger_tasks" : [
{
"name" : "Name of your configuration",
"request" : "launch"|"attach",
"type" : "debugger name",
...
}
]
Debugger: Run Taskspre_debug_task or post_debug_task to your configuration specifiying the name of the task to run.Settings can either be set at the project level or globally.
Project settings can be changed by appending debug. to the setting name.
Within a .sublime_settings file
open_at_startup true Open the debugger automatically when a project that is set up for debugging has been openedui_scale 12 scales the entire debugger UIWithin a .sublime_project file settings object
debug.open_at_startupdebug.ui_scalefor a full list of settings see debugger.sublime-settings