Skip to content

Instantly share code, notes, and snippets.

@ilmoralito
Created July 13, 2024 16:34
Show Gist options
  • Save ilmoralito/05c0e5d9ecbffe1aa3dafd1195f12b07 to your computer and use it in GitHub Desktop.
Save ilmoralito/05c0e5d9ecbffe1aa3dafd1195f12b07 to your computer and use it in GitHub Desktop.
Sublimetext - Sublime debugger - debugger actions
[
{
"keys": ["ctrl+alt+shift+d"],
"command": "debugger",
"args": {
"action": "open"
}
},
{
"keys": ["ctrl+alt+shift+b"],
"command": "debugger",
"args": {
"action": "toggle_breakpoint"
}
},
{
"keys": ["f9"],
"command": "debugger",
"args": {
"action": "continue"
},
},
{
"keys": ["f10"],
"command": "debugger",
"args": {
"action": "step_over"
}
},
{
"keys": ["f11"],
"command": "debugger",
"args": {
"action": "step_in"
},
},
{
"keys": ["shift+f11"],
"command": "debugger",
"args": {
"action": "step_out"
},
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment