mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-17 04:02:21 +00:00
fix(coding-agent): use alt+v for image pasting on Windows (#1682)
This commit is contained in:
parent
edca5dd769
commit
cec8c7888b
2 changed files with 2 additions and 2 deletions
|
|
@ -136,7 +136,7 @@ The editor can be temporarily replaced by other UI, like built-in `/settings` or
|
||||||
| File reference | Type `@` to fuzzy-search project files |
|
| File reference | Type `@` to fuzzy-search project files |
|
||||||
| Path completion | Tab to complete paths |
|
| Path completion | Tab to complete paths |
|
||||||
| Multi-line | Shift+Enter (or Ctrl+Enter on Windows Terminal) |
|
| Multi-line | Shift+Enter (or Ctrl+Enter on Windows Terminal) |
|
||||||
| Images | Ctrl+V to paste, or drag onto terminal |
|
| Images | Ctrl+V to paste (Alt+V on Windows), or drag onto terminal |
|
||||||
| Bash commands | `!command` runs and sends output to LLM, `!!command` runs without sending |
|
| Bash commands | `!command` runs and sends output to LLM, `!!command` runs without sending |
|
||||||
|
|
||||||
Standard editing keybindings for delete word, undo, etc. See [docs/keybindings.md](docs/keybindings.md).
|
Standard editing keybindings for delete word, undo, etc. See [docs/keybindings.md](docs/keybindings.md).
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@ export const DEFAULT_APP_KEYBINDINGS: Record<AppAction, KeyId | KeyId[]> = {
|
||||||
externalEditor: "ctrl+g",
|
externalEditor: "ctrl+g",
|
||||||
followUp: "alt+enter",
|
followUp: "alt+enter",
|
||||||
dequeue: "alt+up",
|
dequeue: "alt+up",
|
||||||
pasteImage: "ctrl+v",
|
pasteImage: process.platform === "win32" ? "alt+v" : "ctrl+v",
|
||||||
newSession: [],
|
newSession: [],
|
||||||
tree: [],
|
tree: [],
|
||||||
fork: [],
|
fork: [],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue