fix(code-server): rebind terminal suggestions kb shortcut

This commit is contained in:
Victor Westerlund 2026-03-22 06:12:10 +01:00
parent 8082236e62
commit 01b97be9c3
Signed by: vlw
GPG key ID: 5DAF14C317AA7719

View file

@ -105,5 +105,20 @@
"key": "f5", "key": "f5",
"command": "-workbench.action.debug.continue", "command": "-workbench.action.debug.continue",
"when": "debugState == 'stopped'" "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"
} }
] ]