mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2026-01-12 05:45:59 +01:00
feat(code-server): set custom step debugger keybinds
This commit is contained in:
parent
0e234fe6df
commit
6cfc929308
1 changed files with 41 additions and 1 deletions
|
|
@ -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'"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
Loading…
Add table
Reference in a new issue