Commit log

5b0f936 ui: Refactor dashed divider with path builder (#43879)

Click to expand commit body
Replace the original div implementation with path builder.

| Before | After |
| - | - |
| <img width="1182" height="887" alt="before1"
src="https://github.com/user-attachments/assets/3d9fb3ce-35c8-46fb-925c-e24974dedc4b"
/><img width="1182" height="887" alt="before2"
src="https://github.com/user-attachments/assets/137fd952-7db0-49fe-b502-971b22ae3c2a"
/> | <img width="1182" height="887" alt="after1"
src="https://github.com/user-attachments/assets/8e2b6070-4bd4-4b1a-86cf-64516e165e5b"
/><img width="1182" height="887" alt="after2"
src="https://github.com/user-attachments/assets/cf67701c-2359-4ff1-9a7c-76fcf11f2781"
/> |

Release Notes:

- N/A

Floyd Wang created

b3478e8 agent_ui: JSON encode command path along with other elements in MCPcontext modal (#42693)

Click to expand commit body
Closes #42692

Release Notes:

- Fixed command path not being correctly encoded in context server
config modal

Adam Huganir created

de6855f gpui(windows): Fix apps not quitting if they overwhelm the foreground thread with tasks (#43896)

Click to expand commit body
Release Notes:

- N/A *or* Added/Fixed/Improved ...

Lukas Wirth created

776c853 Rename issue templates (#43893)

Click to expand commit body
Closes #43892.

Release Notes:

- N/A

Kunall Banerjee created

95f512a Add `zeta score` command (#43894)

Click to expand commit body
A small CLI helper to test the metric

Release Notes:

- N/A

Oleksiy Syvokon created

9af6e82 language: Only block the foreground on buffer reparsing when necessary (#43888)

Click to expand commit body
Gist is we only need to block the foreground thread for reparsing if
immediate language changes are useful to the user. That is usually only
the case when they edit the buffer

Release Notes:

- Improved performance of large project searches and project diffs

Co-authored by: David Kleingeld <david@zed.dev>

Lukas Wirth created

3969109 Add file icon for the Odin programming language (#43855)

Click to expand commit body
Release Notes:

- Added file icon for the [Odin programming
language](https://odin-lang.org/).

<img width="617" height="288" alt="CleanShot 2025-11-30 at 22 37 00"
src="https://github.com/user-attachments/assets/2389b90a-2fec-43bf-838f-1441f08b724a"
/>

José Olórtegui created

05c2028 Add file history view (#42441)

Click to expand commit body
Closes #16827

Release Notes:

- Added: File history view accessible via right-click context menu on
files in the editor or project panel. Shows commit history for the
selected file with author, timestamp, and commit message. Clicking a
commit opens a diff view filtered to show only changes for that specific
file.

<img width="1293" height="834" alt="Screenshot 2025-11-11 at 16 31 32"
src="https://github.com/user-attachments/assets/3780d21b-a719-40b3-955c-d928c45a47cc"
/>
<img width="1283" height="836" alt="Screenshot 2025-11-11 at 16 31 24"
src="https://github.com/user-attachments/assets/1dc4e56b-b225-4ffa-a2af-c5dcfb2efaa0"
/>

---------

Co-authored-by: cameron <cameron.studdstreet@gmail.com>

ozzy and cameron created

747dc23 util: Move `PathMatcher` over to `RelPath` (#43881)

Click to expand commit body
Closes https://github.com/zed-industries/zed/issues/40688 Closes
https://github.com/zed-industries/zed/issues/41242

Release Notes:

- Fixed project search not working correctly on remotes where the host
and remote path styles differ

Lukas Wirth created

aa0e19f gpui(windows): Reset foreground time budget when hitting the timeout limit (#43886)

Click to expand commit body
Release Notes:

- N/A *or* Added/Fixed/Improved ...

Lukas Wirth created

bb859a8 gpui(windows): Only poll PAINT messages twice in foreground task timeout (#43883)

Click to expand commit body
Release Notes:

- N/A *or* Added/Fixed/Improved ...

Lukas Wirth created

b9c5900 terminal_view: Fix selection columns not being clamped correctly for rendering (#43876)

Click to expand commit body
Before:


https://github.com/user-attachments/assets/3be4d451-81a6-430b-bc36-d91f4cd44c9b

After:


https://github.com/user-attachments/assets/6d64bf0c-5bd1-45be-b9d8-20118e5a25e6



Release Notes:

- Fixed rendered selections in the terminal view not being clamped to
the line start/ends correctly

Lukas Wirth created

4e3aa0b zed: Fix session ID mismatching for workspace and telemetry (#43659)

Click to expand commit body
I don't think this caused any problems for us but you never know ...

Release Notes:

- N/A *or* Added/Fixed/Improved ...

Lukas Wirth created

05764e8 http_client: Add integrity checks for GitHub binaries using digest checks (#43737)

Click to expand commit body
Generalizes the digest verification logic from `rust-analyzer` and
`clangd` into a reusable helper function in
`http_client::github_download`.

This removes ~100 lines of duplicated code across the two language
adapters and makes it easier for other language servers to adopt digest
verification in the future.

Closes #35201

Release Notes:

- N/A

Tom Planche created

db86feb direnv: Allow disabling env integration entirely (#43764)

Click to expand commit body
Relates to #35759, but maybe doesn't entirely fix it? I think it will
improve the situation, at least.
Also provides a workaround for the issue described in
https://github.com/zed-industries/zed/issues/40094#issuecomment-3559808526
for users of WSL + `nix-direnv`.

Rationale: there are cases where automatic direnv integration is not
always desirable, but Zed currently has no way of opting out of this
integration besides `direnv revoke` (which is often not desirable).

This PR provides such an opt-out for users who run into problems with
the existing direnv integration methods. Some reasons why disabling
might be useful:
- Security concerns about auto-loading `.envrc` (arguably, `direnv
revoke` should cover this most of the time)
- As in #35759, for users who use different shells/envs for
interactive/non-interactive cases and want to manually control the
environment Zed uses
- As in #40094, to workaround OS limits on environment variable /
command-line parameter size


Release Notes:

- Added the ability to disable direnv integration entirely

Ian Chamberlain created

d1d419b gpui: Further fix extraction of font runs from text runs (#43856)

Click to expand commit body
After #39928, if a font's weight changes between text runs without other
decoration changing, the earlier weight continues to be used for the
subsequent run(s).

PR #40840 fixes this in shape_text, but similar code exists also in
layout_text. The latter is used for text in the editor view itself, so
the issue continues to appear when using a highlighting theme with
varied font weights.

Fix the issue by applying the same fix in layout_text.

Closes #42297

Release Notes:

- Fixed incorrect font weights in editor view when using a highlighting
theme with varying font weights

Mikko Perttunen created

2e00f40 Basic side-by-side diff implementation (#43586)

Click to expand commit body
Release Notes:

- N/A

---------

Co-authored-by: cameron <cameron.studdstreet@gmail.com>
Co-authored-by: Cameron <cameron@zed.dev>

Cole Miller , cameron , and Cameron created

ca6e64d docs: Fix bug on table of contents (#43840)

Click to expand commit body
We were previously always highlighting the last header in the table of
contents as active even if you were at the top of the page. This is now
fixed, where upon loading the page, no header is highlighted, and as you
scroll, we highlight the top-most heading one by one.

Release Notes:

- N/A

Danilo Leal created

0079044 Add @yeskunall to `REVIEWERS.conl` (#43823)

Click to expand commit body
Release Notes:

- N/A

Kunall Banerjee created

450cd3d Respect vertical placement offset for glyphs (#43812)

Click to expand commit body
Before:
<img width="41" height="45" alt="image"
src="https://github.com/user-attachments/assets/0f8b1d0e-b0cf-483c-aa2d-77aadd90503c"
/>

After:
<img width="34" height="50" alt="image"
src="https://github.com/user-attachments/assets/fa3eb842-2d1b-49b1-9c37-ebe6e11b37eb"
/>



Release Notes:

- N/A

John Tur created

dd9cc90 docs: Add more design polish (#43802)

Click to expand commit body
Fixing the theme toggle popover, search results design, and
sidebar/table of contents responsiveness.

Release Notes:

- N/A

Danilo Leal created

8abf1d3 agent_ui: Fix delete icon event in history panel (#43796)

Click to expand commit body
Summary

Fixed the thread deletion issue by:

1. Click handler conflict between the trash icon and the main ListItem
2. Added `cx.stop_propagation()` to prevent the click event from
bubbling up to the parent ListItem's click handler
3. Followed the established `cx.stop_propagation()` pattern used
throughout the codebase

Now when you click the trash icon to delete a thread:
- ✅ The thread deletion happens immediately on the first click
- ✅ No race condition between deletion and activation
- ✅ No double-clicking required

The fix is minimal, follows established patterns, and addresses the
exact root cause of the issue.

- Stop event propagation in thread removal handler

Release Notes:

- agent: Improved delete thread action in the history view by preventing
it from also triggering the thread activation.

Aero created

e75e137 Fix the misalignment issue with Inline Assist (#43768)

Click to expand commit body
Easy path to fix the issue #38755

<img width="787" height="157" alt="Screenshot 2025-11-28 at 9 39 55 PM"
src="https://github.com/user-attachments/assets/4943f668-c2d7-4c35-8fa7-a6fea839a99f"
/>

Release Notes:

- agent: Fixed the UI misalignment between old and new lines from the
inline assist.

Xipeng Jin created

9c593f3 proto: Bump to v0.2.3 (#43791)

Click to expand commit body
Release Notes:

- N/A

---------

Co-authored-by: Finn Evers <finn@zed.dev>

Kirill Bulatov and Finn Evers created

e5ce7cb extensions: Pass protobuf-language-server settings and initialization_options to the LSP (#43787)

Click to expand commit body
pass protobuf-language-server settings and initialization_options to the
protobuf-language-server

Closes #43786

Release Notes:

- N/A

Dario created

f326854 buffer_diff: Fix git gutter incorrectly showing for ignored files (#43776)

Click to expand commit body
Closes #43734
Closes #43698

Release Notes:

- Fixed git gutter incorrectly showing up for ignored files.

Jakub Konka created

200a4a5 docs: Improve table of content responsiveness (#43766)

Click to expand commit body
Release Notes:

- N/A

Danilo Leal created

be8605b agent_ui: Make thread loading state clearer (#43765)

Click to expand commit body
Closes https://github.com/zed-industries/zed/issues/43721

This PR makes the loading state clearer by disabling the message editor
while the agent is loading as well as pulsating the icon.

Release Notes:

- agent: Made the thread loading state clearer in the agent panel.

Danilo Leal created

63eb3ea docs: Customize view transition and other layout shift improvements (#43763)

Click to expand commit body
Follow up to https://github.com/zed-industries/zed/pull/43762.

Yet another shot at making the navigation between pages flicker less.

Release Notes:

- N/A

Danilo Leal created

34b453c docs: Reduce load flicker (#43762)

Click to expand commit body
Follow up to https://github.com/zed-industries/zed/pull/43758.

This PR uses view transition animations to reduce the page flickering
when navigating between one and the other. Pretty cool CSS-only
solution.

Release Notes:

- N/A

Danilo Leal created

b11f22b Fix button in multibuffer header overflowing (#43761)

Click to expand commit body
Closes https://github.com/zed-industries/zed/issues/43726

Note that the truncation strategy on the file path is not yet perfect.
I'm just applying the regular method from the label component, but we
should wrap path text from the start rather than from the end. Some time
in the future!

<img width="500" height="712" alt="Screenshot 2025-11-28 at 7  17@2x"
src="https://github.com/user-attachments/assets/6ebc618a-4b4a-42fd-b5b7-39fec3ae5335"
/>

Release Notes:

- Fixed a bug where the "Open File" button would overflow in the
multibuffer header if the file path was too long.

Danilo Leal created

6040c0c agent_ui: Fix activity bar when plan and edited files list is long (#43759)

Click to expand commit body
Closes https://github.com/zed-industries/zed/issues/43728

Release Notes:

- agent: Fixed a bug where the plan and edit files list would consume
the whole space of the thread if they were too long. They're now capped
by a max-height and scrollable.

Danilo Leal created

e8a3368 docs: Reduce layout shift when navigating between pages (#43758)

Click to expand commit body
This is still not perfect, but it reduces the shift that happens when
navigating between pages that have and don't have the table of contents.
It also tries to reduce the theme flicker that happens by moving its
loading to an earlier moment.

Release Notes:

- N/A

Danilo Leal created

d4c0b87 agent: Clarify `include_pattern` parameter usage for grep tool (#41225)

Click to expand commit body
Adds clarifying examples and information about the `include_pattern`
parameter for the grep tool, analogous to the `path` parameter of the
read and list tools and others.

The lack of clarity led to unexpected agent behavior described in
#41189. This change is confirmed to improve the precision of Claude
Sonnet 4.5 when searching for code in an empty conversation (without it,
it leaves out the root directory in the query).

Closes #41189.

```
Release Notes:

- Clarify grep tool description to improve agent precision when using it with the `include_pattern` parameter
```

procr1337 created

6404939 google_ai: Update Gemini models (#43117)

Click to expand commit body
Closes #43040

Release Notes:

- Remove the end-of-support Gemini 1.5 model from the options.
- Remove the older Gemini 2.0 model from the options.
- Please let me know if you think it's better to keep it, as it is still
a usable model.
- Update the incorrect amounts for some input/output tokens.
- Update the default model to Gemini 2.5 Flash-Lite.
- Rename variant `Gemini3ProPreview` to `Gemini3Pro`

When this PR is merged, users will be able to select the following
Gemini models.

- 2.5 Flash
- 2.5 Flash-Lite
- 2.5 Pro
- 3 Pro

Junseong Park created

557d393 docs: Add sidebar title collapse functionality and design facelift (#43754)

Click to expand commit body
This PR adds the ability to collapse section in the docs sidebar (which
are persistent until you close the tab), and some design facelift to the
docs, which makes its design close to the site as well as polishing up
many elements and interactions (like moving the search to a modal and
making the table of content visible in smaller breakpoints).

<img width="600" height="2270" alt="Screenshot 2025-11-28 at 5  26@2x"
src="https://github.com/user-attachments/assets/3a8606c6-f74f-4bd2-84c8-d7a67ff97564"
/>

Release Notes:

- N/A

Danilo Leal created

1cc3a4c settings ui: Add tab_bar.show_tab_bar_buttons to settings UI (#43746)

Click to expand commit body
Release Notes:

- Added "Show Tab Bar Buttons" setting to Settings UI to control
visibility of New, Split Pane, and Zoom buttons in the tab bar.


<img width="899" height="750" alt="Screenshot 2025-11-28 at 12 37 08 PM"
src="https://github.com/user-attachments/assets/9894da7b-9702-4b37-9adb-ae0e43c87edf"
/>

David Baldwin created

f6ab730 Allow opening settings.json file from Settings UI with keybinding (#43747)

Click to expand commit body
Release Notes:

- Added a keybinding to open the `settings.json` file when the Settings
UI is in focus: `cmd-,` (macOS) / `ctrl-,` (Windows / Linux).
- A tooltip was added to the `Edit in settings.json` button to show this
keybinding.

Joseph T. Lyons created

6c98003 Tweak the issue template for bugs (#43719)

Click to expand commit body
- shorten some phrases to (hopefully) retain attention better
- move the required field up to not bore people with scrolling
- call it a bug and not an issue to further emphasize we want feature
requests in Discussions where the product managers are
- remove the default from the WSL question since not everyone does
WSL or even Windows

Release Notes:

- N/A

---------

Co-authored-by: Miguel Raz Guzmán Macedo <miguel@zed.dev>
Co-authored-by: Kunall Banerjee <hey@kimchiii.space>

Lena , Miguel Raz Guzmán Macedo , and Kunall Banerjee created

7b4e050 Use test db for command palette under vim tests (#43731)

Agus Zubiaga created

7c967b8 language: Allow support for ESLint working directories (#43677)

Click to expand commit body
Closes #9648 #9755

Release Notes:

- Added way to configure ESLint's working directories in settings. For
example:
`{"lsp":{"eslint":{"settings":{"workingDirectories":["./client","./server"]}}}}`

---------

Co-authored-by: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com>

Smit Barmase and Piotr Osiewicz created

478bcea docs: Add configuration explanation in git section (#43637)

Click to expand commit body
Closes https://github.com/zed-industries/zed/issues/33441

Release Notes:

- Added configuration documentation for git-commit settings including preferred-line-length in the git panel

---------

Co-authored-by: Jakub Konka <kubkon@jakubkonka.com>

Matthew Chisolm and Jakub Konka created

c18481e git: Add UI for deleting branches (#42703)

Click to expand commit body
Closes #42641

Release Notes:

- Added UI for deleting Git branches

---------

Co-authored-by: Jakub Konka <kubkon@jakubkonka.com>

Mayank Verma and Jakub Konka created

87e3d6e git: Check push config before falling back to branch remote (#41700)

Click to expand commit body
Closes #26649

Release Notes:

- Improved git support for remotes handling. Git will now check pushRemote and pushDefault configurations before
falling back to branch remote.

---------

Co-authored-by: Jakub Konka <kubkon@jakubkonka.com>

Mayank Verma and Jakub Konka created

d877e56 Add a script to label untriaged GH issues (#43711)

Click to expand commit body
Release Notes:

- N/A

Lena created

b89bcbe editor: Speed up `colorize_brackets` slightly in large multibuffers (#43713)

Click to expand commit body
There is still room for improvement here as `anchor(s)_in_excerpt` is
generally a bad API here due to it reseeking the entire excerpt tree
from the start on every call which we don't really need. But this at
least cuts the seeks down by a factor of 4 for now.

Release Notes:

- Improved performance of bracket colorization in large multibuffers

Lukas Wirth created

8f8a92c editor: Reduce amount of sumtree traversals in `header_and_footer_blocks` (#43709)

Click to expand commit body
Introduces new "mapping point cursors" for the different display map
layers allowing one to map multiple points in increasing order more
efficiently than using the one shot operations.

This is used in the `BlockMap::sync` for `header_and_footer_blocks`
which spends a significant time in sumtree traversal due to repeatedly
transforming points between the different layers. This effectively turns
the complexity of those operations from quadratic in the number of
excerpts to linear, as we only go through the respective sumtrees once
instead of restarting from the start over and over again.

Release Notes:

- Improved performance for editors of large multibuffers with many
different files

Lukas Wirth created

fc213f1 git_ui: Introduce explicit yield points for project diff (#43706)

Click to expand commit body
These are long running foreground tasks that tend to not have pending
await points, meaning once we start executing them they will never
reschedule themselves, starving the foreground thread.

Release Notes:

- Improved git project diff responsiveness

Lukas Wirth created

f856a3c askpass: Use double quotes for script name in helper command (#43689)

Click to expand commit body
Replace single quotes with double quotes when referencing the askpass
script name in the helper command. The Windows command processor
(cmd.exe) requires double quotes for proper string handling, as single
quotes are treated as literal characters.

Error I get when trying to open remote project:
<img width="396" height="390" alt="image"
src="https://github.com/user-attachments/assets/1538ee10-8efc-4f80-a867-b367908091b6"
/>

```
Zed Nightly 0.216.0 
c2281779af56bd52c829ccd31aae4eb82b682ebc
0.216.0+nightly.1965.c2281779af56bd52c829ccd31aae4eb82b682ebc
```

Release Notes:

- N/A

Maokaman1 created

65e224c agent panel: Improve keybindings on Windows (#43692)

Click to expand commit body
Closes https://github.com/zed-industries/zed/issues/43439

Release Notes:

- agent: Fixed keybinding for allowing a command to run in the agent
panel on Windows.

Danilo Leal created