From d65c3b5121f1ad720db9037a376cc9ae45fd13f8 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Sun, 22 Mar 2026 06:13:12 +0100 Subject: [PATCH] fix(code-server): rebind terminal suggestions kb shortcut (#128) Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/128 --- .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" } ]