diff --git a/.local/share/code-server/User/keybindings.json b/.local/share/code-server/User/keybindings.json index aafc971..5175736 100644 --- a/.local/share/code-server/User/keybindings.json +++ b/.local/share/code-server/User/keybindings.json @@ -105,5 +105,20 @@ "key": "f5", "command": "-workbench.action.debug.continue", "when": "debugState == 'stopped'" + }, + { + "key": "ctrl+alt+space", + "command": "workbench.action.terminal.triggerSuggest", + "when": "config.terminal.integrated.suggest.enabled && terminalFocus && terminalProcessSupported && !terminalSuggestWidgetVisible" + }, + { + "key": "ctrl+space", + "command": "-workbench.action.terminal.triggerSuggest", + "when": "config.terminal.integrated.suggest.enabled && terminalFocus && terminalProcessSupported && !terminalSuggestWidgetVisible" + }, + { + "key": "ctrl+alt+space", + "command": "-workbench.action.terminal.suggestToggleDetailsFocus", + "when": "!textInputFocus" } ]