From 01b97be9c300586d6a8fe6fa11fab8a13b9b0700 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Sun, 22 Mar 2026 06:12:10 +0100 Subject: [PATCH] fix(code-server): rebind terminal suggestions kb shortcut --- .local/share/code-server/User/keybindings.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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" } ]