Earlier quoted context omitted.
I would love a vim plugin for this. Many LLM vim plugins started off beautifully minimal, but became too agentic in their chase of Cursor.
Maybe once all of this is a bit more mature we can just get down to the minimal subset of features that are really important. I’d love a nvim plugin that is more or less just a split chat window that makes it easy to paste code I’ve yanked (like yank to chat) add my commentary and maybe easily attach other files for context. That’s it really.
Zed: High-performance AI Code Editor
121–130 of 447 posts
Re: Zed: High-performance AI Code Editor
#122> ... 3. Baked into a closed-source fork of an open-source fork of a web browser
I laughed out loud at this one.
Re: Zed: High-performance AI Code Editor
#123I might be missing the obvious, and I get no standard exists, but why aren't AI coding assistants just plugins?
Re: Zed: High-performance AI Code Editor
#124Zed is exactly how software should be made. Granted, I don't agree with all of their UX decisions (i think the AI panel is really bad compared to Cursor's), but good lord is the thing fast. These guys are the real deal. They built a rendering system (GPUI) in Rust before building Zed on top of it, and so it is one of the fastest (if not the fastest) pieces of software that resides on my computer. I can't wait until G…
Is it only fast on MacOS? I tried it on Linux and it was unusably slow. Seconds per frame instead of frames per second.
Re: Zed: High-performance AI Code Editor
#125Earlier quoted context omitted.
> because the other Rust GUI libraries/frameworks aren't great. Iced, being used by System76's COSMIC EPOCH, is not great in what regards? Serious question.
there's basically zero documentation for Iced as it stands. They even wrote that if you're not a great Rust dev, you're going to have a bad time and that all docs are basically "read the code" until their book is written. I'm glad System76 is able to build using Iced, but you need a great manual for a tool to be considered mature and useful. IMO Slint is milestones ahead and better. They've even built out solid exten…
Re: Zed: High-performance AI Code Editor
#126Earlier quoted context omitted.
> because the other Rust GUI libraries/frameworks aren't great. Iced, being used by System76's COSMIC EPOCH, is not great in what regards? Serious question.
there's basically zero documentation for Iced as it stands. They even wrote that if you're not a great Rust dev, you're going to have a bad time and that all docs are basically "read the code" until their book is written. I'm glad System76 is able to build using Iced, but you need a great manual for a tool to be considered mature and useful. IMO Slint is milestones ahead and better. They've even built out solid exten…
Calling iced not useful reads like an uninformed take
Re: Zed: High-performance AI Code Editor
#127Tried Zed and Cursor, but they always felt too magical to me. I ended up building a minimal agent framework that only uses seven tools (even for code edits): read, write, diff, browse, command, ask, and think. These simple, composable tools can be utilized well enough by increasingly powerful LLM(s), especially Gemini 2.5 pro to achieve most tasks in a consistent, understandable way. More importantly - I can just swi…
How do you run it in VSC using MCP?
Then, connect it using this line: `client = MCPClient(server_url=server_url)` (https://github.com/aperoc/toolkami/blob/e49d3797e6122fb54ddd...)
Happy to help further if you run into issues.
Re: Zed: High-performance AI Code Editor
#128Slightly OT: Why aren't AI coding assistants implemented as plugins (like through an LSP), rather than being a standalone AI-first editor (like Cursor)? I might be missing the obvious, and I get no standard exists, but why aren't AI coding assistants just plugins?
Re: Zed: High-performance AI Code Editor
#129Zed is exactly how software should be made. Granted, I don't agree with all of their UX decisions (i think the AI panel is really bad compared to Cursor's), but good lord is the thing fast. These guys are the real deal. They built a rendering system (GPUI) in Rust before building Zed on top of it, and so it is one of the fastest (if not the fastest) pieces of software that resides on my computer. I can't wait until G…
Man, so true. I tried this out a while back and it was pretty miserable to find docs, apis, etc.
IIRC they even practice a lot of bulk reexports and glob imports and so it was super difficult to find where the hell things come from, and thus find docs/source to understand how to use something or achieve something.
Super frustrating because the UI of Zed was so damn good. I wanted to replicate hah.