惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
J
Java Code Geeks
博客园 - 聂微东
量子位
C
Check Point Blog
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
B
Blog
罗磊的独立博客
腾讯CDC
GbyAI
GbyAI
博客园 - 【当耐特】
A
About on SuperTechFans
M
MIT News - Artificial intelligence
U
Unit 42
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

The Register

Grafana offers AI assistant for free, warns users not to go mad Right to repair champ Framework punts modular 13in laptop with Core Ultra Series 3 Scotland Yard can keep using live facial recognition on Londoners, say judges UK tribunal sends £2B claim accusing Microsoft of overcharging for licensing to trial Nation-states want to cause harm, not just steal cash - stop handing your cyber defenses to the cheapest contractor Murder, she wrote: Ex-FBI chief wants some ransomware crims charged with homicide Phone-to-satellite use goes into orbit, growing 25% in 8 months macOS ClickFix attacks deliver AppleScript stealers to snarf credentials, wallets Anthropic bakes memory fixes into Bun 1.1.13 as developers complain of leaks The spaghettified DBMS chart that shows Oracle's crown is slowly slipping Yet another ex-ransomware negotiator admits turning rogue after payoff from crimelords FAA grounds Blue Origin's New Glenn as it probes missed satellite delivery 'mishap' AMD's Ryzen 9 9950X3D2 Dual Edition tested: Gratuitous overkill with a price to match AI-assisted intruders pwned Vercel via OAuth abuse and a pilfered employee account Crook claims to leak 'video surveillance footage' of companies Met police trials snoop tech platform in push to cuff more London shoplifters England's school phone ban gets teeth, just in time to bite no one Adaptavist Group breach spawns imposter emails as ransomware crew claims mega-haul Panasonic creates device-locked QR codes to speed facial biometric capture Iran claims US used backdoors to knock out networking equipment during war NASA Inspector fears new spacesuits won’t be ready for Moon landing Vibe coding upstart Lovable denies data leak, cites 'intentional behavior,' then throws HackerOne under the bus Trump-branded datacenter project fails to make itself great, again World's blandest man steps down from CEO job to spend more time in tastefully appointed home Chase got a spiff of $77 million to create one job with New York datacenter Scot becomes second Scattered Spider-linked crook to plead guilty in US You too can build a nuclear battery from junk you have lying around the house Schmoozebots: study finds flattery will get AI everywhere One of Europe's sovereign cloud picks may not be so-sovereign after all New Android development tool designed for robots, not humans
Zed team releases version 1.0 of Rust-built editor: Tradi...
Tim Anderson · 2026-05-01 · via The Register

The Rust-built Zed editor has reached version 1.0, released yesterday, with development led by former members of the Atom team at GitHub.

Zed version 1.0 has been released

Zed version 1.0 has been released (click to enlarge)

Nathan Sobo, CEO and co-founder of Zed Industries, said that Zed is neither done nor perfect, but has "reached a tipping point where most developers can feel quickly at home."

Sobo worked on Atom and Electron - the Chromium-based framework used by both Atom and Microsoft's Visual Studio Code (VS Code) - during nine years at GitHub from December 2011. He now says that web technology offered "an easy path to shipping" but also limited performance and capabilities.

The version 1.0 release is mainly bug-fixes but also has new features including bookmarks, which enable quick navigation to bookmarked text, and a "view commit" command palette action for Git.

Zed 1.0 is available for macOS, Windows and Linux. Syntax highlighting and code completions are available for a wide range of languages, based on language server extensions, and with optional AI edit predictions from Zed's Zeta LLM (large language model) or external providers. LSPs for several languages, including C, C++, CSS, JavaScript, TypeScript, Markdown and Python, are built-in, with others available as language server extensions.

Extension availability may be a problem for VS Code switchers. Zed has only 1,000 extensions at the time of writing, whereas the VS Code marketplace has over 100,000.

Zed is developed using Rust, chosen for its combination of low-level control and expressiveness, and uses a custom GPU-accelerated UI (user interface) framework called GPUI, which like the rest of the code is open source on GitHub under the Apache 2 license.

Zed was first previewed in March 2023, for Mac only. There was no mention of AI in the introductory post; rather the focus was on performance and collaboration. Nevertheless, GitHub Copilot support was added a month later; and in August 2024 the team announced Zed AI, a collaboration with Anthropic. Next up was AI agents, with the team working with Google and JetBrains on the Agent Client Protocol (ACP), an attempt to standardize how agents communicate with editors.

In January this year, the team stated that it was "working with AI agents as part of our daily workflow," and earlier this month added a parallel agents feature to the editor, enabling multiple agents to work concurrently. Despite the move towards AI, the team won praise for adding a "disable all AI features" setting, for developers who want the code editor to be only a code editor.

Developers generally like Zed for its design and performance, although it is not really lightweight despite use of native code. "Zed is everything I wanted Sublime to be. Honestly, I wanted VS Code but fully native, and I feel like that's what I'm getting from Zed," said one on the HackerNews forum. Sublime is another popular editor, though it is not open source. Immaturity of some of the extensions and language support is a common complaint. There is also concern about Zed downloading and running packages including Node.js without specific user consent.

Zed will no doubt improve, though competing with the huge VS Code ecosystem is a challenge. Another key question is how much focus the team puts on AI features. Many of Zed's characteristics are appealing to developers looking for a traditional code editor, despite the team's efforts to present Zed as an AI tool. At JetBrains, head of AI on IDE Denis Shiryaev blogged this week about the problem, stating that developers now have two ways to create code, meaning that IDEs have to morph between being a tool focused on code writing, and a tool for delegating tasks to AI. It is hard to do both well in one product.

Others argue that traditional IDEs are becoming obsolete. Test-driven development pioneer Kent Beck said that IDEs should now be optimized for code review, not code creation; while AI advocate Steve Yegge said recently, in answer to a question about IDEs, that "code is a liquid. You spray it through hoses. You don't freaking look at it." Fortunately for Zed, Yegge's view is not one that many developers share. ®