OpenAI Codex Is Retiring the Last Model that Behaves Like an Assistant
I opened Codex CLI today and it showed me this notice: "GPT-5.5 retires on October 14, 2026. Switch to GPT-5.6 Sol to…
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