fix(coding-agent): use alt+v for image pasting on Windows (#1682)

This commit is contained in:
Duncan Ogilvie 2026-02-27 22:51:16 +01:00 committed by GitHub
parent edca5dd769
commit cec8c7888b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -65,7 +65,7 @@ export const DEFAULT_APP_KEYBINDINGS: Record<AppAction, KeyId | KeyId[]> = {
externalEditor: "ctrl+g",
followUp: "alt+enter",
dequeue: "alt+up",
pasteImage: "ctrl+v",
pasteImage: process.platform === "win32" ? "alt+v" : "ctrl+v",
newSession: [],
tree: [],
fork: [],