60acc3e
zed 0.185.1
Joseph T. Lyons created
60acc3e
zed 0.185.1
Joseph T. Lyons created
ec4dc95
Re-enable `open` tool (#29707)
Release Notes: - Added `open` tool for opening files or URLs.
Richard Feldman created
6030ecb
agent: Allow adding/removing context when editing existing messages (#29698)
Release Notes: - agent: Support adding/removing context when editing existing message --------- Co-authored-by: Cole Miller <m@cole-miller.net> Co-authored-by: Cole Miller <cole@zed.dev>
Bennet Bo Fenner , Cole Miller , and Cole Miller created
a1f0dfc
Fix potential subtraction overflow (#29697)
I saw this come up in an eval, where the LLM provided a start line of 0. Release Notes: - N/A
Richard Feldman created
ad11646
Fix parsing of author name in git show output (#29704)
Closes #ISSUE Release Notes: - Fixed a bug causing incorrect formatting of git commit tooltips
Cole Miller created
87d1beb
Use outline (#29687)
## Before  ## After  Release Notes: - Context picker and `@`-mentions now work with very large files.
Richard Feldman created
cdcf035
v0.185.x preview
Joseph T. Lyons created
e4e455a
Fix duplicate thread entries in agent navigation menu (#29672)
Closes #ISSUE Release Notes: - N/A
Cole Miller created
ff4900c
Mitigate panic in merge conflict resolution (#29678)
We have a report of a panic when indexing into `BufferConflicts.block_ids` using the `old_range` from the `ConflictsUpdated` event, indicating that the `block_ids` array can get out of sync with the underlying `ConflictSet`. This PR adds a mitigation so that we won't panic in this situation, as a stopgap until the bug can be reproduced in a test and fixed at the root. Release Notes: - N/A
Cole Miller created
632f08d
project: Check path extension first, then worktree's (#29671)
This fixes a bug with opening images on worktrees that contain "extension" in the dir name, like `zed.dev` Release Notes: - N/A
Oleksiy Syvokon created
5589e78
python: Do not look up venv path from source file path (#29676)
Closes #ISSUE Release Notes: - N/A
Piotr Osiewicz created
128b7d2
agent: Improve edit file tool card (#29448)
⚠️ Work in progress until all of the to-dos are knocked out: - [x] Disable soft-wrapping - [x] Make it foldable only after a certain number of lines - [x] Display tool status errors - [x] Fix horizontal scroll now that we've disabled soft-wrap - [ ] Don't render unnecessary extra lines (will be added later, on a follow-up PR) Release Notes: - N/A --------- Co-authored-by: Agus Zubiaga <hi@aguz.me> Co-authored-by: Michael Sloan <mgsloan@gmail.com>
Danilo Leal , Agus Zubiaga , and Michael Sloan created
fbb0fe4
agent: Add small design tweaks (#29674)
Mostly spacing and whatnot; tiny stuff here. Release Notes: - N/A
Danilo Leal created
7587340
Fix a bug that interfered with sorting of conflicted paths in the git panel (#29534)
This PR updates the git store to not register a change in a repository's merge heads until conflicted paths are seen. We currently use the repository's merge heads only to decide when the list of conflicted paths should be refreshed. Previously, the logic looked like this: - Whenever we see a change in the merge heads, set the list of conflicted paths by filtering the output of `git status`. It turns out that when a conflicting merge takes a while, we can see this sequence of events: 1. We get an event in .git and reload statuses and merge heads. Previously there were no merge heads, and now we have some, but git hasn't finished figuring out which paths have conflicts, so we set the list of conflicted paths to `[]`. 2. Git finishes computing the list of conflicted paths, and we run another scan that picks these up from `git status`, but then we throw them away because the merge heads are the same as in (1). By not updating our stored merge heads until we see some conflicts in `git status`, we delay this step until (2), and so the conflicted paths show up in the git panel as intended. This means that our merge heads state no longer matches what's on disk (in particular, during a clean merge we'll never update them at all), but that's okay because we only keep this state for the purpose of organizing conflicts. Release Notes: - Fixed a bug that could cause conflicted paths to not appear in their own section in the git panel.
Cole Miller created
5073cba
agent: Add keybindings to open the panel's extra menu (#29663)
Maybe "extra" isn't the best word, but I'm referring to the ellipsis menu on the far right of the panel that holds "extra" or "additional options". There is a known issue with context menus, at least if implemented this way, that makes hitting enter to select an option not work. Will leave this fix to a later PR. Release Notes: - N/A
Danilo Leal created
0a02869
agent: Add new "Manual" profile (#29636)
This new default profile is one that doesn't use any tools; it's completely "naked" and it shouldn't lean into trying to read things from the current project at hand. Better suited for general topic chats with the LLM. PS: Still expecting some wordsmithing here before merging. Release Notes: - agent: Added a new default profile called "Manual" that doesn't include any tools, for general topic chats with the LLM.
Danilo Leal created
854c554
agent: Update panel navigation dropdown keybindings (#29660)
Release Notes: - N/A
Danilo Leal created
59708ef
Revert "python: Enable subroot detection for pylsp and pyright (#27364)" (#29658)
This reverts commit e661a0afd64e3e6e1e51c981cb7bda4e0af724fd. Closes #ISSUE Release Notes: - Reverted changes to Python subroot detection which could have caused multiple python processes to be spawned when working in projects with multiple `pyproject.toml` files.
Piotr Osiewicz created
152ea04
chore: Move Windows dependencies to windows section (#29649)
Release Notes: - N/A Avoid install on macOS: <img width="752" alt="image" src="https://github.com/user-attachments/assets/9b13d1c5-1734-49b7-b1f0-cffbc49a3820" />
Jason Lee created
074b696
gpui: Refactor `PlatformKeyboardLayout` (#29653)
Release Notes: - N/A
张小白 created
edda386
windows: Remove `allow(deadcode)` (#29651)
Release Notes: - N/A
张小白 created
9767033
debugger: Extract running state from DebugSession mode and remove mode field (#29646)
DebugSession.mode is no longer needed because project::debugger::Session manages its own state now (booting, running, terminated), and removing mode simplifies a lot of the code that uses running state. I used Zed AI to do a good chunk of the refactor, but I doubled-checked everything it did and changed a good amount of its updates. Release Notes: - N/A Co-authored-by: Zed AI <ai@zed.dev>
Anthony Eid and Zed AI created
edf78e7
Fix token counting requests in Gemini (#29643)
Release Notes: - N/A
Michael Sloan created
8d77efa
extensions_ui: Fix scroll to top only on refetch (#29640)
Closes #29604 Release Notes: - Fixes case where extension page scrolls up to the top when installing an extension.
Smit Barmase created
747a029
Split diagnostics markdown style out (#29637)
Closes #29572 Release Notes: - Fixed paragraph spacing in git commit messages
Conrad Irwin created
c8685dc
Fix eval judging missing final response (#29638)
Fixed issue where eval thread judges were not considering the last response in the thread. The problem was that they were getting the full list of messages from `last_request`, which (being a request!) did not have the response yet. Release Notes: - N/A
Richard Feldman created
d566864
Make code block eval resilient to indentation (#29633)
This reduces spurious failures in the eval. Release Notes: - N/A
Richard Feldman created
75a9ed1
vim: Fix incorrect escaping parenthesis of replacement string (#29555)
Closes #29356  Release Notes: - vim: Fixed a bug when escaping `(` and `)` in command-palette find and replace
Hilda24 created
e364e48
Tidy up diagnostics more (#29629)
- Stop merging same row diagnostics - (for Rust) show code fragments surrounded by `'s in monospace Co-authored-by: Serge Radinovich <sergeradinovich@gmail.com> Closes #29362 Release Notes: - diagnostics: Diagnostics are no longer merged when they're on the same line - rust: Diagnostics now show code snippets in monospace font: <img width="551" alt="Screenshot 2025-04-29 at 16 13 45" src="https://github.com/user-attachments/assets/d289be31-717d-404f-a76a-a0cda3e96fbe" /> Co-authored-by: Serge Radinovich <sergeradinovich@gmail.com>
Conrad Irwin and Serge Radinovich created
b473223
Skip serializing `None` fields in Gemini API (#29632)
Release Notes: - N/A
Michael Sloan created
b1395c5
agent: Add new panel navigation dropdown (#29539)
- [x] Ensure what appears in the dropdown is really what is accurate - [x] Ensure keyboard navigation works: - [x] Switching tabs with `enter` - [x] Closing items from the menu item - [x] Opening the dropdown - [x] Focus assistant panel on dismiss - [x] Add ability to close items from the dropdown menu - [x] Persistence - [x] Correct behavior when opening a text thread Release Notes: - agent: Added a navigation menu that shows the recently opened threads. The button to see the full history view has been changed inside this menu. --------- Co-authored-by: Bennet Bo Fenner <bennetbo@gmx.de> Co-authored-by: Cole Miller <m@cole-miller.net> Co-authored-by: Bennet Bo Fenner <bennet@zed.dev> Co-authored-by: Cole Miller <cole@zed.dev>
Danilo Leal , Bennet Bo Fenner , Cole Miller , Bennet Bo Fenner , and Cole Miller created
1a4d724
agent: Make token indicator not flash if last count tokens request failed (#29628)
Release Notes: - N/A
Michael Sloan created
d700403
Code block evals (#29619)
Add a targeted eval for code block formatting, and revise the system prompt accordingly. ### Eval before, n=8 <img width="728" alt="eval before" src="https://github.com/user-attachments/assets/552b6146-3d26-4eaa-86f9-9fc36c0cadf2" /> ### Eval after prompt change, n=8 (excluding the new evals, so just testing the prompt change) <img width="717" alt="eval after" src="https://github.com/user-attachments/assets/c78c7a54-4c65-470c-b135-8691584cd73e" /> Release Notes: - N/A
Richard Feldman created
2508e49
agent: Discourage long-running commands (#29627)
Adds popular examples of long-running commands to system prompt. Unfortunately, I couldn't add an eval example as the new terminal tool no longer works in `eval`. We can look into that tomorrow, but I'm seeing improvements when manually testing this, so I'd like to merge it. <img src="https://github.com/user-attachments/assets/ac24e617-e068-466f-875d-c30e1f2465c4" width=400></img> Release Notes: - agent: Discourage long-running commands
Agus Zubiaga created
a09e5d2
vim: Create anyquotes, anybrackets, miniquotes, and minibrackets text objects (#26748)
## Why?
Some users expressed a preference for the AnyQuotes and AnyBrackets text
objects to align more closely with traditional Vim behavior, rather than
the mini.ai plugin's approach. To address this, I’ve introduced two new
text objects: MiniQuotes and MiniBrackets. These retain the mini.ai
plugin behavior, while the updated AnyQuotes and AnyBrackets now follow
the logic described in [this bug
report](https://github.com/zed-industries/zed/issues/25563) and [this
bug report](https://github.com/zed-industries/zed/issues/25562).
## Behavior Overview:
### AnyQuotes and AnyBrackets:
These now prioritize the innermost range first (e.g., the closest quotes
or brackets). If none are found, they fall back to searching the current
line. This aligns with the behavior requested in the issue.
### MiniQuotes and MiniBrackets:
These maintain the mini.ai plugin behavior, prioritizing the current
line before expanding the search outward.
### Usage Examples:
AnyQuotes: Works like ```ci', ci", ci` , ca', ca", ca` , etc.```
AnyBrackets: Works like ```ci(, ci[, ci{, ci<, ca(, ca[, ca{, ca<,
etc.```
Please give these changes a try and let me know your thoughts!
### Release Notes:
- vim: Add AnyQuotes, AnyBrackets, MiniQuotes and MiniBrackets text
objects
---------
Co-authored-by: Ben Kunkle <ben@zed.dev>
Osvaldo and Ben Kunkle created
33abf1e
agent: Log errors from token counting APIs (#29626)
Release Notes: - N/A
Michael Sloan created
f7a3e00
Disable nix nightly builds (#29624)
Until we land #28128, we're disabling the nightly nix builds so they're not constantly failing. Release Notes: - N/A
Julia Ryan created
24e47de
collab: Add `has_extended_trial` to `LlmTokenClaims` (#29622)
This PR adds the `has_extended_trial` field to the LLM token claims. Release Notes: - N/A
Marshall Bowers created
15a83b5
Stop routing session events via the DAP store (#29588)
This cleans up a bunch of indirection and will make it easier to show the session building state in the debugger terminal Closes #ISSUE Release Notes: - N/A
Conrad Irwin created
fde1cc7
gpui: Relax AssetLogger trait bounds (#29450)
Loosen trait bounds from `std::error::Error` to `std::fmt::Display`, since it's not required for the `log::error!` macro or any other bounds. Specify that `AssetLogger` specifically logs errors in its documentation. Use the `futures::TryFutureExt` trait extension to use `inspect_err` directly on a future. Release Notes: - N/A
tidely created
f2813f6
vim: Fix end of paragraph deletion when there's no blank lines (#29490)
This Pull Request attempts to fix an issue where using `d}` in vim mode would not delete all characters in case there's no blank lines at the end of the buffer. When calculating the end point for this motion, if there's no blank lines at the end of the buffer, Zed was calculating it to be the last character in the last line. However, if there's a newline at the end of the buffer, it calculates the end point to be the point at the right of the last character. Here's an example, for the following buffer contents: ``` Hello! Hello! ``` If the `d}` command is run at `(0, 0)`, the end point will be set to `(1, 5)`. However, fi the same command is run for this buffer instead: ``` Hello! Hello! ``` The end point will be set to `(1, 6)`, there's a 1 unit difference in the column, which leads to all characters actually being deleted. Closes #29393 Release Notes: - Fixed deleting to the end of paragraph when there's no blank lines --------- Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
Dino and Conrad Irwin created
4758173
Use image cache to stop leaking images (#29452)
This PR fixes several possible memory leaks due to loading images in markdown files and the image viewer, using the new image cache APIs TODO: - [x] Ensure this didn't break rendering in any of the affected components. Release Notes: - Fixed several image related memory leaks
Mikayla Maki created
d732a7d
Fix worktree test flakiness (#29613)
Co-Authored-By: Cole <cole@zed.dev> Closes #ISSUE Release Notes: - N/A Co-authored-by: Cole <cole@zed.dev>
Conrad Irwin and Cole created
cf6b051
keymap: Make F10 toggle the menu on Linux (#29607)
Closes: https://github.com/zed-industries/zed/issues/27271 Release Notes: - Added support for F10 toggling menus on Linux
Peter Tripp created
a376038
agent: Add icon for Zed's max mode (#29610)
Release Notes: - N/A
Danilo Leal created
2973bf1
bash: Don't treat `raw_string` as bracket (#29617)
Closes #29222 Release Notes: - Fixed a crash when inputting `ciq` in vim mode inside of a raw string in a bash file Co-authored-by: Conrad <conrad@zed.dev> Co-authored-by: Anthony <anthony@zed.dev>
Ben Kunkle , Conrad , and Anthony created
386970c
collab: Add support for extended Zed Pro trial (#29612)
This PR adds support for an extended Zed Pro trial, applied based on the presence of the `agent-extended-trial` feature flag. Release Notes: - N/A
Marshall Bowers created
f7f44bf
Fix channel notes searching in buffer picker (#29611)
Previously they all used the name "Channels" for searching, now it uses the actual content of the channel name and status. Release Notes: - N/A
Julia Ryan created
fd17f2d
agent: Enrich `grep` tool output with syntax information (#29601)
The `grep` tool used to include 4 lines of context around the match, but
the lines included would often be unhelpful. This PR improves this
behavior by using the range of the parent syntax node that contains the
full line(s) matched.
The match headers will also now include symbol breadcrumbs so that the
model can already gather code structure before/without reading files.
````md
### impl GitRepository for RealGitRepository › fn compare_checkpoints › L1278-1284
```rust
let result = git
.run(&[
"diff-tree",
"--quiet",
&left.commit_sha.to_string(),
&right.commit_sha.to_string(),
])
```
````
This positively impacts the `add_arg_to_trait_method` eval example with
better diff output, fewer tool failures, and reduced total turns.
Note: We have some plans to use a an "elision" approach where we would
combine all matches for a given file, skipping lines between them while
keeping symbol declaration lines. The theory is that this would be map
more closely to the expected input for edits. For now, this PR is a
significant improvement.
Release Notes:
- Agent: Enrich `grep` tool output with syntax information
Agus Zubiaga created
5507958
debugger: Transition to path! macro to create paths in debugger tests (#29605)
This should prevent some cases where a test passes on one platform and not another Release Notes: - N/A Co-authored-by: Zed AI <ai@zed.dev>
Anthony Eid and Zed AI created