Switching from GPT-5.5 to GPT-5.6 Made Me Less Productive
I pay for three Codex subscriptions at $200 each, and for the past week they have mostly bought me waiting. Since I…
If you run Claude Code or Codex CLI inside the VS Code integrated terminal, image paste often doesn’t work because VS Code grabs Ctrl+V to paste text into the terminal. These tools need to receive Ctrl+V themselves so they can interpret it as “paste image from clipboard”.
Open VS Code → Keyboard Shortcuts (Ctrl+K Ctrl+S) → click the {} icon to edit keybindings.json and add these entries (strict JSON, no comments):
[
{
"key": "ctrl+v",
"command": "-workbench.action.terminal.paste",
"when": "terminalFocus && terminalProcessSupported"
},
{
"key": "ctrl+shift+v",
"command": "workbench.action.terminal.paste",
"when": "terminalFocus && terminalProcessSupported"
}
]
What this does:
In the VS Code terminal run:
cat
Press Ctrl+V. If you see ^V, VS Code is no longer intercepting it (good). Press Ctrl+C to exit.
Give Vroni a GitHub issue, bug report, spec, or rough idea. It reads the repo, plans the change, writes code, runs checks, and works toward a review-ready pull request.
Take a look at vroni.com