HomeAI EditorsZed Editor v1.15.0-pre リリース
Zed Editor Releases v1.15.0-pre

Zed Editor v1.15.0-pre リリースZed Editor Releases v1.15.0-pre

AI2 点サマリSummary highlight
  • 新しい `git.diff_base` 設定により、ガターやファイル状態の色をHEAD比またはデフォルトブランチのマージベース比で表示するか選択可能になった。
  • プロジェクトパネルからのファイルドラッグ対応も追加されている。

Zed v1.15.0-pre introduces a new git.diff_base setting letting developers choose whether gutter indicators and file-status colors reflect uncommitted changes against HEAD or against the default branch's merge base, along with file drag support from the project panel.

要約と収集メタデータをもとに生成した AI 解説本文です。元記事全文の転載・翻訳ではありません。This AI explainer is generated from the summaries and collected metadata, not from a reproduction or translation of the full source article.

高速動作を掲げるコードエディタ「Zed」の先行リリース版 v1.15.0-pre が公開された。今回の目玉は、Git の差分表示の基準を選べる新設定「git.diff_base」で、ブランチ単位での変更確認をより柔軟に行えるようになった点だ。

Zed は Atom の開発陣が中心となって手掛ける Rust 製のエディタで、描画やファイル操作の高速さ、リアルタイムの共同編集機能を特徴とする。プレリリース版は安定版に先立って新機能を試せる位置づけで、今回のアップデートも正式版に向けた検証段階のものと見られる。

新しい git.diff_base 設定では、エディタ左端のガター表示、ファイルの状態を示す色分け、そして git: diff が参照する比較対象を切り替えられる。従来のように未コミットの変更を HEAD と比較する方式に加え、現在のブランチにおける変更全体を、デフォルトブランチのマージベースと突き合わせて表示する方式を選べるようになった。

マージベースとの比較は、フィーチャーブランチ上で行った一連の作業をまとめて俯瞰したい場面で役立つ。ブランチ全体でどのファイルがどう変わったのかを、コミット済みか否かにかかわらず把握しやすくなる。ガターの色やファイル状態の表示が同じ基準で連動するため、変更の全体像を掴みやすい設計といえる。

新しい `git.diff_base` 設定により、ガターやファイル状態の色をHEAD比またはデフォルトブランチのマージベース比で表示するか選択可能になった。
🖱️ AI Editors · 本記事のポイント

あわせて、プロジェクトパネルからファイルをドラッグする操作にも対応した。ファイル管理まわりの使い勝手を高める改善で、エディタ内でのワークフローをより滑らかにする狙いがあると考えられる。

Git のガター表示自体は VS Code をはじめ多くのエディタが備える定番機能だが、比較の基準そのものをユーザーが選択できる点は、ブランチ運用を重視する開発者にとって実用的な選択肢となりそうだ。Zed は活発に開発が続いており、こうした作業効率の改善が継続的に積み重ねられている。

Zed, the high-performance code editor built in Rust by the team behind the Atom editor and the Tree-sitter parsing library, has published its v1.15.0-pre release. This release">pre-release build centers on how the editor visualizes version-control changes, introducing a configurable diff base that gives developers more control over what counts as a "change" while they work. For teams that rely on Zed's Git integration, the update refines a workflow detail that directly affects code review and everyday editing.

The headline addition is a new git.diff_base setting. It lets developers choose the reference point that Zed uses to compute differences across several parts of the interface. Specifically, the setting governs the editor gutters, the file-status colors, and the output of the git: diff command. Previously these indicators compared the working tree against a single baseline; the new option makes that baseline explicit and switchable.

Two modes are available. In the first, Zed shows uncommitted changes against HEAD, meaning the indicators reflect only edits that have not yet been committed on the current branch. This is the conventional behavior most editors default to, useful for seeing what you have modified since your last commit. In the second mode, Zed shows all current-branch changes against the default branch's merge base. Here the comparison spans everything that differs between the point where your branch diverged and its present state, effectively surfacing the full scope of a feature branch rather than just the latest uncommitted work.

Understanding the distinction requires a note on what a merge base is. In Git, the merge base of two branches is the most recent common ancestor commit they share. When you compare your working branch against that merge base, you see the cumulative set of changes your branch has introduced, including edits that are already committed but not yet merged. That view aligns closely with what a reviewer sees in a pull request, since platforms such as GitHub and GitLab typically compute diffs against a comparable ancestor. By exposing this choice inside the editor's gutters and file colors, Zed appears to be narrowing the gap between local editing and the way changes are ultimately reviewed.

The practical effect is context-dependent. Developers focused on incremental commits may prefer the HEAD baseline, which keeps the gutter noise limited to work in progress. Those building out a larger feature across many commits may find the merge-base view more informative, because it highlights every line the branch touches relative to the mainline. Because it is a setting rather than a hard-coded behavior, the two audiences can each configure Zed to match their preference without a compromise.

Alongside the diff work, the release adds support for dragging files from the project panel. The project panel is Zed's file tree sidebar, and drag support of this kind generally makes it easier to move files, open them in specific split locations, or hand them off to other targets through direct manipulation rather than menu commands. The source excerpt describes the capability in terms of dragging files from the panel, and the exact set of drop destinations is likely detailed in the full release notes.

A few points of context are worth keeping in mind. This is a release">pre-release build, denoted by the -pre suffix on v1.15.0, which means it is intended for early testing ahead of a stable version and may still see adjustments before general availability. Zed ships on a rapid cadence, and the excerpt frames these items as part of "this week's release," consistent with the project's frequent iteration. Users on the stable channel will typically receive such features once they graduate out of the preview track.

More broadly, Git tooling has become a competitive area among modern editors. Established tools like Visual Studio Code, along with editor extensions such as GitLens, have long offered gutter indicators and inline diff views, and dedicated clients continue to refine branch-comparison workflows. Zed's move to make the diff base a first-class, user-selectable setting fits that trend of giving developers finer control over how repository state is represented. For anyone already using Zed's Git features, updating to try the git.diff_base option and the new project-panel dragging is the most direct way to evaluate whether these refinements suit an individual or team workflow.

  • 出典SourceZed Editor Releases公式Official
  • 直近30件の平均重要度Avg importance, last 301=Info · 2=Medium · 3=High
  • 配信形式FormatリリースRelease
  • 重要度Importance重要度 MediumMedium priority(AI Editors 200件中、同等以上 196件)(196 of 200 AI Editors entries are equal or higher)
  • 情報の寿命Half-life⏱️ 短命 (ニュース)Short-lived (news)
  • 原文言語Source languageEN
  • 収集日時Collected2026/08/17 21:17

本ページの本文と要約は AI による自動生成です。日本語版と英語版は言語ごとに独立して生成されるため、表現や詳しさが異なる場合があります。正確性は元記事 (github.com) をご確認ください。The body and summaries are AI-generated independently for each language, so wording and detail may differ. Verify accuracy at the original source (github.com).

🖱️AI Editors の他の記事More from AI Editorsもっと見る →View more →