Extension Host Freezes

Where does the bug appear (feature/product)?

Cursor IDE

Describe the Bug

When i start for example live server extension and my html css extension is freezes directly and i have to restart extension host and then it freezes again

Steps to Reproduce

///

Screenshots / Screen Recordings

Operating System

Windows 10/11

Version Information

Version: 3.14.7 (user setup)
VS Code Extension API: 1.128.0
Commit: a758f2241ca99fecf380180b6cbdbbce0f1f42c0
Date: 2026-07-30T06:41:34.009Z
Layout: IDE
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.291
OS: Windows_NT x64 10.0.26200

Does this stop you from using Cursor

Yes - Cursor is unusable

Hey, thanks for the report. I see the screenshot with Extension host became UNRESPONSIVE in the console. It looks like the extension host is freezing, not Cursor itself. From the symptoms, it’s usually a third-party extension doing heavy synchronous work and blocking the host. Live Server and some HTML/CSS extensions are known for this.

Let’s try to find the culprit:

  1. Disable Live Server and your HTML/CSS extension, reload the window with Developer: Reload Window, and check if the freeze happens again.
  2. If you want to automate it, run Help: Start Extension Bisect. It’ll use a split test to find the problematic extension.
  3. When it freezes, open Developer: Show Running Extensions. The extension marked as unresponsive is the cause.

As a replacement for Live Server, I’d suggest trying Microsoft Live Preview ms-vscode.live-server. It’s maintained and usually more stable.

Let me know what bisect finds, then we’ll know if we should dig into an extension issue or a Cursor issue.

Thanks for the quick answer bisect said it was from live server

Great, so we found the culprit. Live Server ritwickdey.LiveServer does heavy synchronous work and blocks the extension host. The same would happen in regular VS Code too, so it’s not something specific to Cursor.

As an alternative, try Microsoft Live Preview ms-vscode.live-server instead. It’s maintained and usually more stable. If you really need Live Server, keep it disabled when you’re not using it so it doesn’t freeze the host.

Let me know if Live Preview works fine or if anything else comes up.