A fork of Zed, the high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
ZedX is maintained by ccbox.app and includes additional features inspired by the ccbox TUI session manager for AI coding agents.
- Version suffix: all builds carry the
ccboxpre-release identifier (e.g.,0.229.0-ccbox+dev) - Rebranded as ZedX with
app.ccbox.ZedX*bundle identifiers and channel-specific app names - macOS dev installs bundle as
ZedX.app - Terminal as first-class center tabs with terminal-attached planning notes (see below)
Upstream Zed opens terminals exclusively in the bottom dock panel. ZedX promotes terminals to first-class editor tabs:
- Terminals open as center tabs --
NewTerminalandNewTerminalInDircreate aTerminalViewdirectly in the active editor pane instead of the dock panel, so terminals sit alongside files as regular tabs. - Welcome screen shortcut -- the "Get Started" section on the welcome page includes a "New Terminal" entry.
- Manual close confirmation only -- closing a terminal tab from the tab
Xshows a "Close this terminal?" confirmation prompt, while shell-driven exits such asCtrl+Dclose automatically without prompting. - The
Itemtrait gains aclose_message()method that any item type can implement to show a custom close confirmation dialog.
Each terminal session can own exactly one attached planning note:
- Attached to the terminal session -- the note is opened from the terminal tab header, shown in a right-hand split, and hidden whenever that terminal tab is no longer the selected terminal.
- Persistent scratch buffer -- the note uses Zed's internal unsaved-editor persistence, so the Markdown buffer survives app restarts without forcing a file save.
- Restored by terminal context -- the note is keyed to the terminal session and working directory, then reattached automatically when the same terminal is restored.
- Markdown editing -- planning notes open as Markdown buffers for planning, checklists, and agent coordination.
make build # cargo build --release
make install # bundle and install the macOS appSee also:
This project tracks zed-industries/zed main branch. Upstream changes are rebased periodically.
ZedX is distributed under the same licenses as Zed:
- GPL-3.0-or-later for the editor (LICENSE-GPL)
- AGPL-3.0-or-later for server components (LICENSE-AGPL)
- Apache-2.0 for client libraries (LICENSE-APACHE)
Original copyright: 2022-2025 Zed Industries, Inc.
License information for third party dependencies must be correctly provided for CI to pass. See upstream CONTRIBUTING.md for details on cargo-about compliance.