-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
Hey there,
Very useful extension.
It would be nice if you included the key bindings for debugging related commands. Let me know if you are interested into implementing them or should I do it in my own fork.
Here is a draft snippet generated with chatgpt that includes the bindings I am referring to. (I havent tested anything yet the code, i just include it to list the keybindings).
{
"command": "workbench.action.debug.stepOver",
"key": "F8",
"when": "inDebugMode && editorFocus"
},
{
"command": "workbench.action.debug.stepInto",
"key": "F7",
"when": "inDebugMode && editorFocus"
},
{
"command": "workbench.action.debug.stepOut",
"key": "shift+F7",
"when": "inDebugMode && editorFocus"
},
{
"command": "workbench.action.debug.continue",
"key": "F9",
"when": "inDebugMode && editorFocus"
},
{
"command": "workbench.action.debug.restart",
"key": "ctrl+shift+F5",
"when": "inDebugMode && editorFocus"
},
{
"command": "workbench.action.debug.stop",
"key": "shift+F5",
"when": "inDebugMode && editorFocus"
},
{
"command": "workbench.action.debug.toggleBreakpoint",
"key": "F9",
"when": "editorFocus"
},
{
"command": "workbench.action.debug.toggleColumnBreakpoint",
"key": "ctrl+F8",
"when": "editorFocus"
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels