Terminal shows nothing

Where does the bug appear (feature/product)?

Cursor IDE

Describe the Bug

Terminal isnt showing anything even when I make a new one. Went away when I restarted the app

Steps to Reproduce

Idk, I open a new terminal it shows nothing.

Screenshots / Screen Recordings

Operating System

Linux

Version Information

Version: 3.10.11
VS Code Extension API: 1.125.0
Commit: 4ef9fe3d055f8c4523179a090f14eb835bc3c940
Date: 2026-07-03T04:44:14.398Z
Layout: Agent Window
Build Type: Stable
Release Track: Default
Electron: 40.10.3
Chromium: 144.0.7559.236
Node.js: 24.15.0
V8: 14.4.258.32-electron.0
xterm.js: 6.1.0-beta.256
OS: Linux x64 7.0.9-arch2-1

Does this stop you from using Cursor

No - Cursor works, but with this issue

Hey, thanks for the report. This looks like a GPU rendering hiccup in the terminal, not lost output. The shell was working fine, the text just wasn’t drawing. That’s why a full restart fixed it, it recreates the WebGL context, and a new terminal in the same window inherits the same broken GPU state.

To stop this from happening again, try turning off terminal GPU acceleration. Open Settings (JSON) and add:

"terminal.integrated.gpuAcceleration": "off"

This switches the terminal to the DOM renderer. It’s a bit less performant, but it won’t hit this kind of white screen issue. Updating your GPU drivers can also help.

If it comes back after this, let me know and share a couple details: your GPU model and driver version (Mesa or NVIDIA), and whether it happens consistently or was a one-off. I can dig deeper with that.