docs(coding-agent): document vscode shift+enter for multi-line input (#740)

Co-authored-by: Jian Zhang <jzhang@yanhuangdata.com>
This commit is contained in:
Jian Zhang 2026-01-15 20:14:54 +08:00 committed by GitHub
parent 5f8d21daf7
commit 12c61b5879
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -138,6 +138,17 @@ config.enable_kitty_keyboard = true
return config
```
**VS Code (Integrated Terminal):** Add to `keybindings.json` to enable `Shift+Enter` for multi-line input:
```json
{
"key": "shift+enter",
"command": "workbench.action.terminal.sendSequence",
"args": { "text": "\u001b[13;2u" },
"when": "terminalFocus"
}
```
**Windows Terminal:** Does not support the Kitty keyboard protocol. Shift+Enter cannot be distinguished from Enter. Use Ctrl+Enter for multi-line input instead. All other keybindings work correctly.
### API Keys & OAuth