Documents are loading on cursor

Where does the bug appear (feature/product)?

Cursor IDE

Describe the Bug

When I try to open any file in cursor it stays loading. This happened since accepting the last update I believe.

Steps to Reproduce

Open any file using cursor. Also on cursor startup, open files do not finish loading.

Expected Behavior

Files are loaded and I can work with them.

Screenshots / Screen Recordings

Operating System

Windows 10/11

Version Information

Version 3.0.9 (user setup)

Does this stop you from using Cursor

Yes - Cursor is unusable

Hey, thanks for the report. I can see in the screenshot that the .ipynb file opens, but the content is blank. This is a known issue on Windows after updates, try these in order:

  1. GPU rendering, often helps on Windows:
    Open or create %AppData%\Cursor\User\argv.json and add:
{
    "use-angle": "gl"
}

Restart Cursor.

  1. Start without extensions:
    Close Cursor, then run this in Command Prompt:
"C:\Program Files\Cursor\Cursor.exe" --disable-extensions

If the files load, one of the extensions is causing it, especially Jupyter-related extensions.

  1. Clear workspace cache:
  • Close Cursor
  • Go to %AppData%\Cursor\User\workspaceStorage
  • Delete the folder for this project, back it up first
  • Reopen Cursor
  1. Full reinstall:
    If nothing helped, download the latest installer from https://cursor.com and reinstall.

Also, please share logs from the Developer Console: Help > Toggle Developer Tools > Console tab. If you see red errors there, it’ll help narrow down the cause.

Let me know what worked.

1 Like

creating the argv.json worked.

thank you!

1 Like