Zed Editor v1.17.2-pre Released: Git Panel Crash Fix Explained

Zed editor v1.17.2-pre fixes a crash in the Git panel's tree view collapsed sections mode.
High-performance open-source code editor Zed has released v1.17.2-pre, fixing a crash triggered when using collapsed sections in the Git panel's tree view mode (Issue #63168). Built by the former Atom core team in Rust with GPU-accelerated rendering, Zed significantly outperforms Electron-based editors and includes built-in real-time collaboration and AI coding assistance. With nearly 90,000 GitHub stars and an active community, Zed is becoming a serious contender in the code editor market.
Zed Editor Keeps Iterating
High-performance code editor Zed has recently released v1.17.2-pre, a new pre-release version that's been drawing developer attention. Built by the former core team behind the Atom editor, Zed is an open-source project written in Rust that delivers exceptional performance and a modern collaborative experience. It has accumulated nearly 90,000 stars and over 10,000 forks on GitHub, making it one of the most talked-about new editors in recent years.

This v1.17.2-pre release is a pre-release version focused on fixing a specific stability issue. While the update is modest in scope, it's particularly significant for developers who rely on Git workflows.
The Core Update: Fixing a Git Panel Crash Bug
What the Crash Looked Like
According to the official release notes, v1.17.2-pre fixes a crash bug in the Git panel. Specifically, the editor would crash when users used the collapsed sections feature in tree view mode. This issue corresponds to GitHub Issue #63168.
While the trigger conditions for this crash are relatively specific, collapsing sections is a common operation for developers who prefer managing Git changes in a tree structure. When a crash occurs, it can interrupt work and potentially cause loss of unsaved content. Zed's team responding quickly with a pre-release fix demonstrates their commitment to user experience and their agile release cadence.
The Role and Significance of Pre-release Versions
It's worth noting that this is a pre-release, not a stable release. Zed follows a fairly aggressive release strategy, using the pre-release channel to let early adopters experience the latest fixes and features ahead of time. This approach accelerates feedback collection while allowing the community to participate more closely in the product refinement process.
Additionally, this release uses an Immutable release mechanism — once the release content is finalized, it cannot be modified; only the release title and description may be adjusted. This mechanism helps ensure version integrity and traceability. The commit also carries a Verified signature from GitHub, confirming the trustworthiness of the release source.
Why Zed Is Worth Paying Attention To
Performance First: Built in Rust with GPU-Accelerated Rendering
Zed's defining characteristic is its relentless focus on performance. It's written entirely in Rust and uses GPU-accelerated rendering, maintaining smooth input response and scrolling even when opening large files or working with complex projects — something that Electron-based editors like VS Code struggle to match under heavy load.
Rust, originally developed at Mozilla Research, is known for memory safety and zero-cost abstractions. Its ownership system eliminates common errors like null pointer dereferences and data races at compile time, without relying on garbage collection — delivering runtime performance close to C/C++. Zed's GPU-accelerated rendering is powered by the team's in-house GPUI framework, which calls low-level graphics APIs like Metal (macOS) and Vulkan (Linux) directly to render the UI, bypassing the layers of abstraction in traditional UI toolkits. By contrast, VS Code is built on Electron — essentially running a web technology stack inside a Chromium browser engine. Every render pass goes through the JavaScript engine, the DOM, and the browser's compositing layer, which can cause noticeable lag with large files or many extensions installed. This architectural difference fundamentally sets the performance ceiling for each class of editor.
Built-in Real-time Collaboration and AI-Assisted Coding
Beyond performance, Zed includes native real-time multiplayer collaboration, allowing multiple developers to edit code simultaneously — much like Google Docs — which is especially valuable for pair programming and remote team collaboration. Zed is also continuously integrating AI-assisted coding capabilities, keeping pace with the current wave of AI programming tools.
Zed's real-time collaboration is built on CRDT (Conflict-free Replicated Data Types), a data structure algorithm that allows multiple nodes to concurrently modify the same document and automatically resolve conflicts during synchronization — the same underlying principle used by Google Docs and Figma. On the AI side, Zed's built-in Assistant panel supports integration with major large language models including Anthropic Claude and OpenAI, offering context-aware code completion and conversational programming. Users can also customize API endpoints to work with locally deployed open-source models. This makes Zed's AI integration vendor-agnostic and highly flexible.
A Thriving Open-Source Community
The community response to this release — even for a minor patch — is telling. Multiple developers showed their support with rocket emoji reactions (🚀). With nearly 90,000 stars and active Issue discussions, Zed has clearly cultivated a healthy and vibrant open-source ecosystem. This kind of sustained community engagement is a critical foundation for any open-source project's long-term success.
Conclusion
While v1.17.2-pre is a relatively small fix — addressing only a crash in the Git panel under specific conditions — it reflects Zed team's development philosophy of rapid response and continuous refinement. For developers evaluating or already using Zed, this kind of frequent and steady release cadence is one of the compelling reasons to invest in this editor long-term.
As Zed continues to improve its performance, collaboration, and AI capabilities, it is poised to claim an increasingly important position in the competitive code editor market. Developers following this project are encouraged to keep an eye out for upcoming stable releases.
Related articles

Reverse Engineering in Practice: How to Decode Undocumented Database Storage Formats
A practical guide to reverse engineering undocumented database storage formats, covering binary analysis, dynamic tracing, differential comparison, tool recommendations, and legal considerations.

The Complete Guide to Agent Skills: A Structured Capability Framework for AI Agents
A deep dive into Agent Skills: from SKILL.md structure to the four core components. Learn how to encapsulate AI agent capabilities for consistent, reusable task execution.

OpenAI Releases ChatGPT Images 2.5: Major Upgrades to Image Editing and Multi-Turn Dialogue
OpenAI launches ChatGPT Images 2.5 with dual Sunburst and Flare models, boosting reference image retention, multi-turn instruction following, and speed. Over 3B images generated.