The Zed Debugger Is Here

193 SupremumLimit 26 6/19/2025, 2:42:15 AM zed.dev ↗

Comments (26)

AbuAssar · 1m ago
I’m thrilled to see Zed evolve into a featured, lightweight IDE.

IMHO Debug Adapter Protocol (DAP) and Language Server Protocol (LSP) are the best things happened to programming tooling in the last decade.

(I wrote this comment in another thread about the same link but didn't hit the frontpage)

candrewlee · 2h ago
Zed is fantastic. I've been making the leap from neovim to zed lately, and it's been an great experience. Everything feels snappy, and I love how well they've integrated Vim bindings. Their agent mode is nice as well. It's clearly an underdog to VSCode, so the extension ecosystem isn't quite there yet... but for a lot of the things I've used it for, it's sufficient. The debugger has been the big missing feature for me and I'm really glad they've built it out now - awesome work.
echelon · 1h ago
How is Zed with auto-completing Rust code?

I love how fast Windsurf and Cursor are with the "tab-tab-tab" code auto-completion, where nearly everything suggested is spot-on and the suggestions keep on rolling, almost automating the entire task of refactoring for you. This form of autocomplete works really well with TypeScript and other scripting languages.

IntelliJ / RustRover never got anywhere close to that level of behavior you can get in Cursor and Windsurf, neither in conjunction with JetBrains own models or with Co-pilot. I chalked it up as an IDE / model / language mismatch thing. That Rust just wasn't amenable to this.

A few questions:

1) Are we to that magical tab-tab-tab and everything autocompletes fluently with Rust yet? (And does this work in Zed?)

2) How does Zed compare to Cursor and Windsurf? How does it compare to RustRover, and in particular, JetBrains' command of the Rust AST?

WD-42 · 1h ago
Zed is written in Rust by a bunch of Rust lovers so it's really got first class support for it.
lionkor · 1h ago
It's fantastic for Rust, it's my main IDE which I've written e.g. voltlane.net in. Fantastic software, and the LLM integration is everything you need IMO (in a good way).
eddythompson80 · 1h ago
Ever since Linux support came out (2 years ago?), I go to check if they, finally, support “non-retina” “LoDPi” (a.k.a: a regular screen) yet, and sadly no :/
marton78 · 1h ago
It's an ugly workaround, but if you install BetterDisplay (it's a free tool) and set your LoDPI screen to HiDPI, text rendering looks good.
girvo · 48m ago
Oh I'll have to try that. Zed looks woeful on my 1440p monitor when I was trying it at work, which is a shame because I quite like it otherwise.

No comments yet

jaoane · 1h ago
They don’t support windows, they don’t support regular screens on Linux… are they a Mac shop basically?
sien · 36m ago
The unofficial builds for Windows are good.

https://github.com/deevus/zed-windows-builds

Installing the 'stable' build with scoop works a treat.

sureglymop · 1h ago
It's a niche feature, but what's keeping me from switching yet is that they zed doesn't support ctrl+scroll to zoom/change font size yet.

Because I am accustomed to a non-US keyboard layout that doesn't make the regular key bindings for changing zoom easy, I got too used to doing it this way.

It's honestly looking to be a great modern IDE with almost everything I'm wishing for.

lordofgibbons · 2h ago
I've gone full-time with Zed for the past month or so and really like it. Love the fast start times. There was a blurry font issue on linux, but that seems to have been fixed for me. Not sure what caused it.
tomjuggler · 1h ago
Not Zed's fault but I'm still stuck with VSCode because Zed doesn't support PLatformIO (or rather PlatformIO doesn't support Zed).

I'm guessing that this extension support problem will continue to be a barrier to uptake for a while.

zamalek · 1h ago
> Not Zed's fault

Zed only supports language extensions, so it is in part responsible. If you're using embedded rust then PlatformIO isn't really needed; probe-rs is extremely capable and straightforward.

tdhz77 · 2h ago
Love zed, wish it would work with Claude max. It’s amazing
rhgraysonii · 2h ago
Is this not doable with its MCP configuration? Today I tried this and wrote it down after it worked well for me if Zed allows similar usage and config https://www.bobbby.online/post/a-clever-hack-claude-code-as-...
sedatk · 1h ago
Still waiting for a Windows build.
xboxnolifes · 58m ago
esperent · 34m ago
Is it usable?
rs_rs_rs_rs_rs · 2h ago
I havent's keep up with Zed, how's the Windows version coming along? Is anyone here using it?
fancy_pantser · 1h ago
I've been using the unofficial builds via scoop for the last two months. It's working great so far. I use it on a Macbook as well and I haven't found any features that are missing or buggier on Win11. Really enjoying the new agent version of the AI assistant, which I use with both Claude API and devstral locally via Ollama.

https://github.com/deevus/zed-windows-builds

sathyabhat · 2h ago
There’s no build available yet but there is a doc on how to build it https://zed.dev/docs/development/windows
que-encrypt · 1h ago
zed remote ssh on windows would push me to it instantly, unfortunately it relies upon this pr being merged (I think, would love more input): https://github.com/zed-industries/zed/pull/29145

It is finally at the review stage, I really hope it can get merged soon!

throwaway290 · 46m ago
> To simplify the setup process, we've introduced locators, a system that translates build configurations into debug configurations. Meaning that you can write a build task once in tasks.json and reference it from debug.json — or, even better, rely on Zed's automatic configuration.

Does that work if my build is Docker based?

rvz · 1h ago
I think competent software engineers should actually read the "Under the hood" section, before they lose the core understanding on how debuggers work and are integrated into editors.

Upon reading the Rust code implementing the Debug Adapter Protocol (DAP) in Zed, some very junior SWEs will quickly point out that they would prefer only "self-documenting code" and would go as far as to removing all comments or even believe that "If it has comments, its probably bad code".

For sophisticated software that implements a defined protocol that is architected to be scalable in any piece of complex software, I prefer these comments that explains why a particular interface is designed the way it is and how it fits into the software (Zed) in this case if it were to be widely re-used like a plugin system.

This blog post is excellent in explaining this debugger integration in the editor and it makes me want to consider using Zed; it just needs an improved extension ecosystem.

[0] https://zed.dev/blog/debugger#under-the-hood

ChrisArchitect · 2h ago