Created
July 13, 2024 16:34
-
-
Save ilmoralito/05c0e5d9ecbffe1aa3dafd1195f12b07 to your computer and use it in GitHub Desktop.
Sublimetext - Sublime debugger - debugger actions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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