feat(code-server): set custom step debugger keybinds

This commit is contained in:
Victor Westerlund 2025-12-25 09:28:08 +01:00
parent 0e234fe6df
commit 6cfc929308
Signed by: vlw
GPG key ID: D0AD730E1057DFC6

View file

@ -65,5 +65,45 @@
{ {
"key": "alt+q", "key": "alt+q",
"command": "workbench.action.toggleMaximizedPanel" "command": "workbench.action.toggleMaximizedPanel"
},
{
"key": "alt+z",
"command": "workbench.action.debug.restart",
"when": "inDebugMode"
},
{
"key": "ctrl+shift+f5",
"command": "-workbench.action.debug.restart",
"when": "inDebugMode"
},
{
"key": "alt+z",
"command": "workbench.action.debug.start",
"when": "debuggersAvailable && debugState == 'inactive'"
},
{
"key": "f5",
"command": "-workbench.action.debug.start",
"when": "debuggersAvailable && debugState == 'inactive'"
},
{
"key": "alt+x",
"command": "workbench.action.debug.stop",
"when": "inDebugMode && !focusedSessionIsAttach"
},
{
"key": "shift+f5",
"command": "-workbench.action.debug.stop",
"when": "inDebugMode && !focusedSessionIsAttach"
},
{
"key": "alt+c",
"command": "workbench.action.debug.continue",
"when": "debugState == 'stopped'"
},
{
"key": "f5",
"command": "-workbench.action.debug.continue",
"when": "debugState == 'stopped'"
} }
] ]