diff --git a/.local/share/code-server/User/keybindings.json b/.local/share/code-server/User/keybindings.json index 073fcbe..711616a 100644 --- a/.local/share/code-server/User/keybindings.json +++ b/.local/share/code-server/User/keybindings.json @@ -65,5 +65,45 @@ { "key": "alt+q", "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'" } -] \ No newline at end of file +]