SublimeAnarchyDebug
LLDB Integration for Sublime Text 3 (Breakpoints, LLDB console, Backtrace view)
Labels debugger
Details
Installs
- Total 803
- Win 1
- Mac 505
- Linux 297
Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime Text 3 plugin for LLDB integration
Features
- Setting breakpoints
- Running with connected stdin/out/err in output panel
- LLDB debug prompt
- Local variable display
- Backtraces
Roadmap
- Stabilize killing of debug server
- Work out bugs in lldb console show/hide
- Remote debugging
Setup
Use the default Sublime method of overriding configuration from the menu. Available configuration options:
lldb_python_path
path to lldb python package directory to use for the debuggerauto_show_lldb_console
boolean, automatically show the lldb console and backtrace windows when starting the debugger
How to use
To use the debugger you have to configure a debug target and its settings. To keep it with the project we save the settings to the sublime project file.
Example content of Project.sublime-project
:
{
"folders": [
{
"path": ".",
}
]
"settings": {
"SublimeAnarchyDebug": {
"debug": {
"executable": "${project_path}/bin/executable",
"params": [
],
"path": [
],
"environment": [
],
"working_dir": "${project_path}"
}
}
}
}
Put that into your project root and use the menu entry Project->Open Project...
to open the project (or double-click in your filesystem browser or even open with subl <ProjectFile>
from the command line.)
If the project is open just use the Command Palette to execute some Debug commands (all prefixed with AnarchyDebug:
).