mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-17 10:02:23 +00:00
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:
parent
5f8d21daf7
commit
12c61b5879
1 changed files with 11 additions and 0 deletions
|
|
@ -138,6 +138,17 @@ config.enable_kitty_keyboard = true
|
||||||
return config
|
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.
|
**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
|
### API Keys & OAuth
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue