06b5ec4
ep: Diagnostics as `retrieval_chunks` for sweep ep (#47441)
Click to expand commit body
Release Notes: - N/A
versecafe created
06b5ec4
ep: Diagnostics as `retrieval_chunks` for sweep ep (#47441)
Release Notes: - N/A
versecafe created
cedfc7e
zeta2: Split out last edit in history (#47812)
Closes #ISSUE Release Notes: - N/A *or* Added/Fixed/Improved ...
Ben Kunkle created
9079f97
ep_cli: Ignore common subsequences for more intuitive reversal metric values (#47818)
Closes #ISSUE Release Notes: - N/A *or* Added/Fixed/Improved ... --------- Co-authored-by: Zed Zippy <234243425+zed-zippy[bot]@users.noreply.github.com>
Ben Kunkle and Zed Zippy created
64df7f2
ci: Enable namespace caching for clippy on Mac (#47819)
Release Notes: - N/A
Piotr Osiewicz created
b9c5665
Disable opening dev container from within a remote project (#47816)
Closes #46320 Release Notes: - Improves error messaging to guide user away from opening a dev container from within a remote project
KyleBarton created
344ee9f
zeta2: Improve format prompt budgeting (#47808)
Closes #ISSUE Release Notes: - N/A *or* Added/Fixed/Improved ... --------- Co-authored-by: Max <max@zed.dev>
Ben Kunkle and Max created
4ea2c09
Use suggested name for `"use_system_path_prompts": false` dialogue when creating new files (#47802)
<img width="1419" height="266" alt="image" src="https://github.com/user-attachments/assets/059ee9e2-e102-4fc6-acba-d66ae0292203" /> Release Notes: - N/A
Kirill Bulatov created
87d41c1
Revert "fs: Replace MacWatcher with notify::FsEventWatcher" (#47799)
Reverts zed-industries/zed#47322. I'm going to remerge this tomorrow after releases so we get a full week in nightly to catch any bugs
Anthony Eid created
b1f9ca9
fs: Replace MacWatcher with notify::FsEventWatcher (#47322)
Closes #47064 Closes #20806 The previous implementation used Zed's custom fsevent crate, which spawned a dedicated thread for each watched path. On large projects, this could result in 100+ threads just for filesystem watching. This PR removes the `fsevent` crate and switches to using `notify's` FsEventWatcher directly. The notify implementation maintains a single FSEvents stream that watches all paths on one thread. When paths are added or removed, the stream is stopped, the path list is updated, and the stream is restarted. Ref: https://github.com/notify-rs/notify/blob/main/notify/src/fsevent.rs As a result, Zed now uses one thread for filesystem watching regardless of how many paths are watched. Release Notes: - On macOS, Zed now uses significantly fewer resources when watching filesystem changes --------- Signed-off-by: Marco Mihai Condrache <52580954+marcocondrache@users.noreply.github.com> Co-authored-by: Anthony Eid <anthony@zed.dev>
Marco Mihai Condrache and Anthony Eid created
4ffe748
agent_ui: Fix inline assistant line height (#47772)
This makes the inline assistant editor use the line height value configured in the settings, and fixes cut-off button creases: | Before | After | |--------|--------| | <img width="656" height="276" alt="Screenshot 2026-01-27 at 11 55@2x" src="https://github.com/user-attachments/assets/fbb19e54-6663-4f7e-b706-b012fbfa2c99" /> | <img width="656" height="274" alt="Screenshot 2026-01-27 at 11 54@2x" src="https://github.com/user-attachments/assets/4577b752-3e18-45c7-9657-02919047f8ba" /> | Release Notes: - Agent: Fixed cut-off mention creases in the inline assistant.
Danilo Leal created
37b8f66
agent_ui: Add a menu for inserting context (#47768)
This PR swaps the @ icon button in the message editor for a + one, which opens a dropdown that displays context options you can add to the agent. Aside from removing one step if you're wanting to add context first with the mouse (in comparison to just inserting @ in the message editor), this menu will also house skills you've created, whenever we get to support to that. It also works to surface images and selections in a bit more visible way as context options. So, effectivelly, this is a bit of foundation work for further features to come. Here's what it looks like: <img width="500" height="586" alt="Screenshot 2026-01-27 at 11 38@2x" src="https://github.com/user-attachments/assets/551686ba-4629-4317-9177-1e942512a23c" /> Note that all the options you see in the menu should also be available through simply typing @ in the message editor. Release Notes: - Agent: Added a menu for inserting context more easily with the mouse in the agent panel.
Danilo Leal created
40468ed
gpui: Add `min_size` and `max_size` style methods (#47775)
The same way you can use `size` when width and height have the same value, it should also be possible to write `min_size` and `max_size`. This PR adds these two methods, which are also supported in Tailwind (but not documented in v4, surprisingly!). Release Notes: - N/A
Danilo Leal created
681fee2
agent_ui: Improve image preview on mention hover (#47781)
This PR improves the hover tooltip container for displaying a preview of the mentioned image in the agent panel. <img width="600" height="414" alt="Screenshot 2026-01-27 at 1 03 2@2x" src="https://github.com/user-attachments/assets/f5a6f160-6abf-4c3c-8375-4613f4948360" /> Release Notes: - N/A
Danilo Leal created
69d408b
acp: Improve the ACP registry UI (#47788)
This PR adds some UI improvements to the ACP registry UI, already including the URL for the soon-to-be-released blog post. I'm also renaming the action to open the page from `zed: agent registry` to `zed: acp registry`. Release Notes: - N/A
Danilo Leal created
797ad8c
Fix language injections sticking after language comment removed (#46134)
Closes #46104
Release Notes:
- Fixed language injections sticking after language comment removed
---
This is working well for the Python SQL comments

```python
from pyspark.sql import SparkSession
spark = SparkSession.builder.getOrCreate()
# sql
cmd = "SELECT col1, col2 FROM tbl"
df = spark.sql( # sql
"""
WITH cte AS (
SELECT col1, col2, COUNT(*) AS n
FROM tbl
GROUP BY ALL
)
SELECT * FROM cte
"""
)
```
And go comments

```go
package main
func test() {
var _ = /* sql */ `SELECT id, name FROM products`
var _ = /* sql */ "SELECT id, name FROM products"
var _ = /* sql */ `SELECT id, name FROM products`
var _ = /* sql*/ "SELECT id, name FROM products"
}
```
Note: `f04b252dd9` was a simpler implementation that worked for
non-inline comments in Python, but produced the following Go behavior

---------
Co-authored-by: Joseph T. Lyons <JosephTLyons@gmail.com>
Jeff Brennan and Joseph T. Lyons created
a9fdd07
cloud_api_types: Rework `Plan` type (#47784)
This PR reworks the `Plan` type, now that we don't need to be concerned about the legacy plan versions. We've also made the deserialization layer more robust, which should make it easier to add new plan variants in the future without needing to go through this same song and dance. Release Notes: - N/A
Marshall Bowers created
07e675d
zeta2: Remove `experimental_edit_prediction_context_retrieval` setting (#47783)
Closes #ISSUE Release Notes: - N/A *or* Added/Fixed/Improved ...
Ben Kunkle created
41ce23f
vim: Add `gdefault` setting to set `/g` as a default substitution flag (#47664)
Add support for Vim's `gdefault` option which makes the `:substitute` command replace all matches in a line by default, instead of just the first match. When enabled, the `/g` flag inverts this behavior. - Add `vim.gdefault` setting - Add `:set gdefault`, `:set nogdefault` (and short forms `:set gd`, `:set nogd`) - Fix handling of multiple `/g` flags so that each one inverts the one before Closes #36209 Release Notes: - vim: Add `vim.gdefault` setting to make `/g` (replace all matches in a line) the default for substitutions, along with `:set gdefault` and `:set nogdefault` commands (short forms: `gd`, `nogd`) --------- Co-authored-by: dino <dinojoaocosta@gmail.com>
Ran Benita and dino created
e77c528
Update notify dependency version to include the flag watch root fix (#47782)
This is in preparation of merging https://github.com/zed-industries/zed/pull/47322, because our MacWatcher implementation was able to watch root directories, and I wanted to maintain that behavior to decrease the chance of any bugs occurring from a merge Note: Release candidate 9 for Notify was created two days ago which means that a new version is coming out soon. We should update to v9 once it's released to include bug fixes from upstream. Release Notes: - N/A
Anthony Eid created
cc1d3af
Use faster brotli compression for sweep requests (#47776)
Closes #ISSUE Release Notes: - N/A *or* Added/Fixed/Improved ...
Ben Kunkle created
26381fe
More permissions to GitHub duplicates bot (#47780)
The claude code action insists on needing `id-token: write` despite us using `github_token`, so maybe I misread the [FAQ](https://github.com/anthropics/claude-code-action/blob/main/docs/faq.md#why-am-i-getting-oidc-authentication-errors) earlier. Pinning the sha of the currently-used version of the action for safety's sake. Release Notes: - N/A
Lena created
4723dbe
cloud_llm_client: Move `Plan` type into `cloud_api_types` (#47778)
This PR moves the `Plan` type out of `cloud_llm_client` and into `cloud_api_types`. Release Notes: - N/A
Marshall Bowers created
73bb119
Use semibold (#47725)
New on the left, old on the right: <img width="1612" height="1047" alt="Screenshot 2026-01-26 at 20 31 04" src="https://github.com/user-attachments/assets/3e0d01b6-05e9-4c9c-8c15-6c525ce9fa9f" /> <img width="1604" height="915" alt="Screenshot 2026-01-26 at 20 30 49" src="https://github.com/user-attachments/assets/77d0f9e0-778b-45df-a8e1-ade63ee9e798" /> Release Notes: - Bold UI text will now render using Plex SemiBold instead of Bold.
Conrad Irwin created
8a89042
Fix getting token in a GitHub bot (#47777)
Release Notes: - N/A
Lena created
39b34f8
cloud_llm_client: Remove unused code (#47774)
This PR removes some unused code around the plan types from the `cloud_llm_client`. Release Notes: - N/A
Marshall Bowers created
f324c3e
Add a test version of 'find duplicates' bot (#47773)
Release Notes: - N/A
Lena created
01409a2
extensions_ui: Fix duplicated button element IDs preventing uninstall (#47745)
Closes #47656 Release Notes: - Fixed extension uninstall button not working when an upgrade is available. --------- Co-authored-by: Marshall Bowers <git@maxdeviant.com>
Dream and Marshall Bowers created
a07b08f
Show QA metrics in the `ep eval` report (#47766)
Release Notes: - N/A
Oleksiy Syvokon created
be314db
Tidy up signature help delays (#47762)
Follow-up of https://github.com/zed-industries/zed/pull/46745 Release Notes: - N/A
Kirill Bulatov created
9ecafe1
vim: Ensure paragraph motions use empty and not blank lines (#47734)
The `}` and `{` paragraph motions now correctly treat only truly empty
lines (zero characters) as paragraph boundaries, matching vim's
documented behavior. Whitespace-only lines are no longer treated as
boundaries.
Changed `start_of_paragraph()` and `end_of_paragraph()` in
`editor/src/movement.rs` to check `line_len() == 0` instead of
`is_line_blank()`.
Note: This change does NOT affect the `ap`/`ip` text objects. Per vim's
`:help ap`, those DO treat whitespace-only lines as boundaries, which is
the existing (correct) behavior in `vim/src/object.rs`.
Closes #36171
Release Notes:
- Fixed vim mode paragraph motions (`}` and `{`) to correctly ignore
whitespace-only lines
---------
Co-authored-by: dino <dinojoaocosta@gmail.com>
lex00 and dino created
757ee05
ep: Use rejected_output for DPO training + OpenAI support (#47697)
Release Notes: - N/A --------- Co-authored-by: Zed Zippy <234243425+zed-zippy[bot]@users.noreply.github.com>
Oleksiy Syvokon and Zed Zippy created
4866861
xtask: Remove transitive GPUI dependency (#47748)
Release Notes: - N/A
Finn Evers created
8fb7108
askpass: Fix ssh auth not updating entered password on windows (#47755)
Release Notes: - Fixed mistyping the ssh password in the askpass prompt on windows locking you out of retyping the correct one
Lukas Wirth created
aa6afca
terminal_view: Fix new flaky terminal tests (#47753)
Release Notes: - N/A *or* Added/Fixed/Improved ...
Lukas Wirth created
7e8ced2
Remove cron schedule for unit evals (#47743)
Release Notes: - N/A
Ben Brandt created
e4dff26
extension_ci: Use different target for nextest (#47738)
Release Notes: - N/A
Finn Evers created
969fb8f
Fix native agent thread history notify refresh (#47733)
Release Notes: - N/A
Joseph T. Lyons created
58a4a84
terminal_view: Add ability to rename terminal tabs (#45800)
Closes [#ISSUE](https://github.com/zed-industries/zed/issues/11023) Release Notes: - Added ability to rename terminal tabs by right-click context menu and double-click Recording: https://github.com/user-attachments/assets/be81a95b-1f64-4ebd-94e4-7cfe6a1e9ddb
Rocky Shi created
b6ff556
go: Add support for running sub-tests in table tests without explicit variables for test cases (#46645)
This PR extends support to run Go table-test subtests (#35657), handling tests without explicitly declaring variables for test scenarios. <img width="611" height="318" alt="go-table-tests" src="https://github.com/user-attachments/assets/e001b661-b512-4183-b6df-6c25f3af4f27" /> Release Notes: - Improved support to run Go table-test subtests, handling tests without explicitly declaring variables for test scenarios. Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
Lev Zakharov and Conrad Irwin created
e64985e
Add optional relative line jumps to go-to-line action (#46932)
Implements relative line jumping, a common feature i missed from
Vim/Neovim where you can jump to lines relative to your current cursor
position.
- New `{"relative": true}` flag for `go_to_line::Toggle` action
- Supports both `-5` (5 lines up) and `b5` (backward 5 lines) syntax
- Full lines only (no column support in relative mode, wasnt sure if
that would be necessary)
- Unbound by default - users can add e.g. `"ctrl-j":
["go_to_line::Toggle", {"relative": true}]` to their keymap
Example usage:
- `5` → jump 5 lines down
- `-3` or `b3` → jump 3 lines up
- `0` → stay on current line
[Screencast_20260115_191312.webm](https://github.com/user-attachments/assets/395c0e7b-8ac1-48c8-a39e-5ade4f9206ec)
Release Notes:
- Added relative line jump support to go-to-line action via
`+/-/f/b/F/B`
Kalaay created
8e291ec
encoding: Add "reopen with encoding" (#46553)
# Add "Reopen with Encoding" feature (Local/Single user)
## Summary
This PR adds a "Reopen with Encoding" feature to allow users to manually
specify an encoding and reload the active buffer.
This feature allows users to explicitly specify the encoding and reload
the file to resolve garbled text caused by incorrect detection.
## Changes
1. Added encoding picker logic to `encoding_selector`
- Implemented a modal UI accessible via the command palette, shortcuts,
or by clicking the encoding status in the status bar.
- Allows users to select from a list of supported encodings (Shift JIS,
EUC-JP, UTF-16LE, etc.).
2. Updated Buffer logic (crates/language)
- Added a `force_encoding_on_next_reload` flag to the Buffer struct.
- Updated the `reload` method to check this flag and apply the following
logic:
- **Non-Unicode (e.g., Shift JIS):** Bypasses heuristics (like BOM
checks) to force the specified encoding.
- **Unicode (e.g., UTF-8):** Performs standard BOM detection. This
ensures that the BOM is correctly handled/consumed when switching back
to UTF-8.
3. UI / Keymap
- Made the encoding status in the status bar (ActiveBufferEncoding)
clickable.
- Added default keybindings:
- macOS: cmd-k n
- Linux/Windows: ctrl-k n
- Windows: ctrl-k n
## Limitations & Scope
To ensure stability and keep the PR focused, the following scenarios are
intentionally out of scope:
1. **Collaboration and Remote Connections**
- Encoding changes are disabled when collaboration (is_shared) or SSH
remote connections (is_via_remote_server) are active.
- **Reason:** Synchronizing encoding state changes between host/guest or
handling remote reloads involves complex synchronization logic. This PR
focuses on local files only.
`Remote Connection (SSH/WSL)`
|Via status bar|Via shortcut/command|
|:---:|:---:|
|<img width="767" height="136" alt="remote_tooltip"
src="https://github.com/user-attachments/assets/6c7cb293-2486-4f6d-a3ff-2086d939398e"
width="400" />|<img width="742" height="219" alt="remote_shortcut"
src="https://github.com/user-attachments/assets/5448f199-2066-4baf-b349-a983ab2fa77a"
width="400" />|
`Collaboration Session `
|Via status bar|Via shortcut/command|
|:---:|:---:|
|<img width="734" height="86" alt="collab_tooltip"
src="https://github.com/user-attachments/assets/37de99a9-dd33-4c78-98bf-20654d41fdd0"
/>|<img width="720" height="182" alt="collab_pop"
src="https://github.com/user-attachments/assets/91d03ea7-f029-442a-8236-55234576f7ed"
/>|
2. Dirty State
- The feature is disabled if the buffer has unsaved changes to prevent
data loss during reload.
|Via status bar|Via shortcut/command|
|:---:|:---:|
|<img width="545" height="103" alt="local_dirty_tooltip"
src="https://github.com/user-attachments/assets/d9ae658e-52b3-4ecd-9873-d0ec8bd51b5d"
/>|<img width="707" height="178" alt="local_dirty_pop"
src="https://github.com/user-attachments/assets/d170ea1e-9fcb-42e7-aa3e-0555b4a19d86"
/>|
3. Files detected as Binary
Files that worktree detects as "binary" (e.g., UTF-16 files without BOM
containing non-ASCII characters) are not opened in the editor, so this
feature cannot be triggered.
**Future Work**: Fixing this would require modifying crates/worktree
heuristics or exposing a "Force Open as Text" action for InvalidItemView
to trigger. Given the scope and impact, this is deferred to a future PR.
## Test Plan
I verified the feature and BOM handling using the following scenarios:
### Preparation
Used the following test files:
-
[**test_utf8.txt**](https://github.com/user-attachments/files/24548803/test_utf8.txt):
English-only text file. No BOM.
-
[**test_utf8_bom.txt**](https://github.com/user-attachments/files/24548822/test_utf8_bom.txt):
English-only text file. With BOM.
-
[**test_utf8_jp_bom.txt**](https://github.com/user-attachments/files/24548825/test_utf8_jp_bom.txt):
UTF-8 with BOM file containing Japanese characters.
-
[**test_shiftjis_jp.txt**](https://github.com/user-attachments/files/24548827/test_shiftjis_jp.txt):
Shift-JIS file containing Japanese characters (content designed to
trigger misdetection, e.g., using only half-width katakana).
Used an external editor (VS Code or Notepad) for verification.
### Case 1: English-only file behavior
1. Open an English-only UTF-8 file (test_utf8.txt).
2. Reopen as Shift JIS.
3. **Result:**
- Text appearance remains unchanged (since ASCII is compatible).
- Status bar updates to "Shift JIS".
### Case 2: Fixing Mojibake
1. Open a Shift-JIS file (test_shiftjis_jp.txt) that causes detection
failure.
※Confirm it opens with mojibake
2. Select Shift JIS from the status bar selector.
3. **Result:**
- Mojibake is resolved, and Japanese text is displayed correctly.
- Status bar updates to "Shift JIS".
### Case 3: Unicode file with BOM behavior
1. Open an English-only UTF-8 with BOM file (test_utf8_bom.txt).
2. Reopen as `Shift JIS`.
3. **Result:**
- The BOM bytes are displayed as mojibake at the beginning of the file.
- The rest of the English text is displayed normally (ASCII
compatibility).
- Status bar updates to "Shift JIS".
### Case 4: Non-Unicode file with BOM behavior
1. Open a UTF-8 with BOM file containing Japanese
(test_utf8_jp_bom.txt).
2. Reopen as Shift JIS.
3. **Result:**
- The BOM bytes at the start are displayed as mojibake.
- The Japanese text body is displayed as mojibake (UTF-8 bytes
interpreted as Shift JIS).
- Status bar updates to "Shift JIS" (no BOM indicator).
### Case 5: Revert to Unicode
1. From the state in Case 4 (Shift JIS with mojibake), reopen as UTF-8.
2. **Result:**
- The BOM mojibake at the start disappears (consumed).
- The text returns to normal.
- Status bar updates to "UTF-8 (BOM)".
### Case 6: External BOM removal (State sync)
1. Open a UTF-8 with BOM file in Zed (test_utf8_bom.txt).
2. Open the same file in an external editor and save it as UTF-8 (No
BOM).
3. Refocus Zed.
4. **Result:**
- Text appearance remains unchanged.
- The (BOM) indicator disappears from the status bar.
- Saving in Zed and checking externally confirms the BOM is gone.
### Case 7: External BOM addition
1. From the state in Case 6 (UTF-8 No BOM), save as UTF-8 with BOM in
the external editor.
2. Refocus Zed.
3. **Result:**
- The (BOM) indicator appears in the status bar.
- Saving in Zed and checking externally confirms the BOM is present.
### Case 8: External Encoding Change (Auto-detect sync)
1. Open an English-only UTF-8 file in Zed (`test_utf8.txt`).
* *Status bar shows: "UTF-8".*
2. Open the same file in an external editor and save it as **UTF-16LE
with BOM**.
3. Refocus Zed.
4. **Result:**
* The text remains readable (no mojibake).
* **Status bar automatically updates to "UTF-16LE (BOM)".** (Verifies
that `buffer.encoding` is correctly updated during reload).
Release Notes:
- Added "Reopen with Encoding" feature (currently supported for local
files).
---------
Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
Ichimura Tomoo and Conrad Irwin created
e868446
Reapply "Try namespace mac runners (#47675)" (#47721) (#47727)
This reverts commit c50120199f4211d6bcbd3fb191b710166e34d9c7. Closes #ISSUE Release Notes: - N/A
Conrad Irwin created
d0c3b33
git: Don't rebuild the project diff when the active repository changes (#47718)
Release Notes: - N/A
Cole Miller created
786b17d
git: Retain "since" diffs in the `GitStore` (#47619)
This PR makes it so that `open_diff_since`, as used by the branch diff, is able to return a stable diff entity instead of creating a new one every time this is called. In particular, the base text buffer for this diff is now stable across branch diff refreshes, making it usable with the side-by-side view. The strategy for keeping the diff entities alive is the same one that we use for the uncommitted and unstaged diffs--the `GitStore` only holds a weak pointer to each "since" diff, so when these diffs are no longer in use by the branch diff multibuffer they can be cleaned up. Release Notes: - N/A --------- Co-authored-by: Zed Zippy <234243425+zed-zippy[bot]@users.noreply.github.com>
Cole Miller and Zed Zippy created
00ba24a
git: Avoid unwrapping active repository in panel rendering (#47700)
Closes ZED-43V Closes ZED-3VK Release Notes: - N/A
Cole Miller created
c93773c
Make `workspace::SendKeystrokes` not use layout key equivalents (#47061)
Closes #46509 Release Notes: - Fixed: `workspace::SendKeystrokes` would not allow remapping keys in different keyboard layouts --------- Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
everdrone and Conrad Irwin created
c501201
Revert "Try namespace mac runners (#47675)" (#47721)
This broke the libgit2 bundling silently Release Notes: - N/A
Conrad Irwin created
d27fa3b
extension_ci: Ensure specified target is installed (#47717)
Follow up to #47714 because it is still broken for the extension workflows post #47699 cache introduction. Keeping the cache around though in the hopes that it will now finally work. Release Notes: - N/A
Finn Evers created
e7e8f0b
extension_ci: Set default toolchain for all jobs (#47714)
Follow-up to #47712 .. Release Notes: - N/A
Finn Evers created
bdb8481
Send some traffic to zeta2 for testing (#47710)
Release Notes: - N/A
Max Brunsfeld created