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

Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/128
This commit is contained in:
Victor Westerlund 2026-03-22 06:13:12 +01:00
parent 8082236e62
commit d65c3b5121

View file

@ -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"
}
]