45af5e4
Fix a couple of bugs in remote browser debugging implementation (#40225)
Click to expand commit body
Follow-up to #39248
- Correctly forward ports over SSH, including the port from the debug
scenario's `url`
- Give the companion time to start up, instead of bailing if the first
connection attempt fails
Release Notes:
- Fixed not being able to launch a browser debugging session in an SSH
project.
f348240
Don't probe for local workspaces pointing to WSL filesystem on startup (#40142)
Click to expand commit body
We automatically delete a local workspace if the folders comprising it
no longer exist.
If a local workspace points to folders in the WSL filesystem, checking
whether those folders exist will make us wait for the WSL VM and file
server to boot up. This can block Zed startup for many seconds.
Supported scenarios use remote workspaces, so delete these local
workspaces to ensure that we don't try to access their folders on the
startup path.
Release Notes:
- N/A
Release Notes:
- Fixes bug were typing `9999999999999999999j` (19 9's) would go up
instead of down
- Max Vim count is now isize::MAX - 1
AidanV
created
1bd34e0
zeta2 cli: Export retrieval stats data frame (#40145)
Click to expand commit body
Retrieval stats will now use polars to build a big data frame for
references with the cartesian product of LSP declarations and retrieved
declaration candidates (with all their score components) and rebuilds
the stats summary on top of it.
This data frame is written to a `.parquet` file, which we can load into
advanced analytics tools (such as Metabase), so we can explore our
scoring distributions and find ways to improve retrieval, and then train
the decision tree.
Release Notes:
- N/A
Agus Zubiaga
created
ce696c1
Remove ping/unwrap from crash handler (#39870)
Click to expand commit body
Release Notes:
- N/A
---------
Co-authored-by: Julia Ryan <juliaryan3.14@gmail.com>
Fix issue where Zed would unconditionally override user's custom shell
with system default from passwd entry.
Closes https://github.com/zed-industries/zed/issues/40171
Release Notes:
- Fix issue where Zed would unconditionally override user's custom shell
with system default from passwd entry.
---------
Signed-off-by: Xiaobo Liu <cppcoffee@gmail.com>
8c7fb26
acp tools: Add button to copy all observed messages (#40076)
Click to expand commit body
Added a "Copy All Messages" button to the ACP logs toolbar that copies
all messages in the watched stream to the clipboard as structured JSON.
## Motivation
When troubleshooting ACP protocol implementations, it's helpful to
provide the entire message thread to an LLM for analysis. Previously, I
had to copy individual messages one at a time, which was tedious and
time-consuming. This feature allows copying the entire conversation
history in a single click.
Release Notes:
- Added: Copy All Messages button to ACP logs view
---------
Signed-off-by: Yordis Prieto <yordis.prieto@gmail.com>
Co-authored-by: Agus Zubiaga <agus@zed.dev>
Yordis Prieto
and
Agus Zubiaga
created
867b5df
settings_ui: Only allow to reset a setting to default in the file in which it was customized (#40182)
Click to expand commit body
Plus some other tiny visual adjustments.
Release Notes:
- N/A
Danilo Leal
created
c5bbd55
Add rust-analyzer support for musl linux (#40108)
Click to expand commit body
Release Notes:
- Added rust-analyzer support for musl remotes
localcc
created
4a84b78
collab_ui: Make collaboration panel label responsive on resize (#40157)
fd63d43
Remove obsolete contents tool and add open to write profile (#40131)
Click to expand commit body
`contents` doesn't exist anymore.
`open` was only set for `ask` and not `write`.
Release Notes:
- N/A
Abdelhakim Qbaich
created
ab70555
git_ui: Apply accented color to links in Blame tooltip (#40124)
Click to expand commit body
# Why
Follow up to:
* #39905
# How
Apply accented color to links in message content inside Blame tooltip,
to match appearance in Markdown Preview panel.
Release Notes:
- Improved appearance of links in message content inside Blame tooltip.
# Preview
### Before
<img width="1186" height="798" alt="Screenshot 2025-10-13 at 19 33 37"
src="https://github.com/user-attachments/assets/33ab4fb5-7910-4d28-9152-c692d6ddeaa6"
/>
### After
<img width="1186" height="798" alt="Screenshot 2025-10-13 at 19 33 10"
src="https://github.com/user-attachments/assets/38082c5c-50d6-4fb3-90ca-410accff9aad"
/>
---------
Co-authored-by: Danilo Leal <daniloleal09@gmail.com>
Bartosz Kaszubowski
and
Danilo Leal
created
474eb8d
git_ui: Layout/spacing tweaks for Blame tooltip (#40130)
Click to expand commit body
# Why
Spotted that spacing of different Blame tooltip elements are spaced
uneven, also the fact that message content disappears on scroll before
reaching border felt a bit odd.
# How
Layout/spacing tweaks for Blame tooltip.
Release Notes:
- Improved appearance of Git Blame tooltip.
# Preview
### Before
<img width="1034" height="702" alt="Screenshot 2025-10-13 at 20 01 07"
src="https://github.com/user-attachments/assets/0c2715d5-d8fa-41dc-b891-a320a74d6fb0"
/>
<img width="1006" height="410" alt="Screenshot 2025-10-13 at 20 06 15"
src="https://github.com/user-attachments/assets/8c16f6dc-58e5-46cc-83fb-dd71a63e7557"
/>
### After
<img width="1034" height="672" alt="Screenshot 2025-10-13 at 20 00 33"
src="https://github.com/user-attachments/assets/e22e0e42-676e-411a-8773-2e57cdaaab17"
/>
<img width="1006" height="370" alt="Screenshot 2025-10-13 at 20 06 55"
src="https://github.com/user-attachments/assets/761995a9-153a-4e5d-923b-e7fbd73dc475"
/>
---------
Co-authored-by: Danilo Leal <daniloleal09@gmail.com>
Bartosz Kaszubowski
and
Danilo Leal
created
da5f25d
acp: Hide completion menu when typing slash command argument (#40126)
Click to expand commit body
Release Notes:
- acp: Fix an issue where the completion menu would still be active
after confirming a slash command
This reverts commit f1db1f3a3c933d8b4d35d83f6bbc49fd46749519.
This seems to have affected the vertical positioning of text that
doesn't contain emojis in a way that was unintended.
Release Notes:
- N/A
Cole Miller
created
da583e5
Revert "fs: Replace a bunch of uses of smol::fs with manual impls" (#40170)
Click to expand commit body
Reverts zed-industries/zed#39906
This PR should not have landed prior to Wednesday.
Piotr Osiewicz
created
9ad6196
fs: Replace a bunch of uses of smol::fs with manual impls (#39906)
Click to expand commit body
smol::fs uses a separate threadpool, which is a bit yuck.
Release Notes:
- N/A
Piotr Osiewicz
created
d4cc4f8
editor: Fix highlight and selection overlap causing flicker while selecting (#40168)
Click to expand commit body
Regressed in https://github.com/zed-industries/zed/pull/39857, only on
Nightly.
Release Notes:
- N/A
Smit Barmase
created
c61429e
acp: Pass through experimental capability for terminal output (#40165)
Click to expand commit body
Release Notes:
- N/A
Ben Brandt
created
4c70d55
acp: Don't collapse tool calls by default (#40164)
Click to expand commit body
Previously, if a tool call's output was just text, it would be collapsed
with no way to open it.
Now we track the collapsed cards instead of the expanded ones to allow
all tool calls to be expanded by default, and only collapse the ones
required by settings changes
Release Notes:
- acp: Fix tool call markdown output unintentionally being collapsed by
default
Ben Brandt
created
025938b
remote: Wrap `uname` invocation in `sh` for `nu` shell (#40084)
Click to expand commit body
Closes https://github.com/zed-industries/zed/pull/39994
Release Notes:
- Fixed remoting not working when nushell is set as the default shell on
the remote target
This moves some of the changes made in
https://github.com/zed-industries/zed/pull/39543 to the `publish_gpui`
script.
This PR also updates that script to use `gpui_` instead of `zed-` (where
possible)
Release Notes:
- N/A
Mikayla Maki
created
97f398e
windows: Prefer Git Bash for external agent terminals (#40150)
Click to expand commit body
This applies the same change as #39466 to the terminal codepath for
external agents.
Release Notes:
- N/A
Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com>
Cole Miller
and
Max Brunsfeld
created
6a2bad4
Load env vars from login shell in remote server (#40148)
Click to expand commit body
Fixes a bug mentioned in
https://github.com/zed-industries/zed/issues/38891
Release Notes:
- Fixed a bug where environment variables like `NODE_EXTRA_CA_CERTS`
were not loaded from the user's shell initialization scripts in WSL or
SSH remote projects.
Co-authored-by: Cole Miller <cole@zed.dev>
Max Brunsfeld
and
Cole Miller
created
ad4a53c
agent: Fix review button not working while not focused in the message editor (#40144)
Click to expand commit body
This PR fixes a bug where the review icon button wouldn't properly open
the review tab if you weren't focused in the agent panel's message
editor. The solution was to register the action also at the workspace
level.
Release Notes:
- agent: Fixed a bug where the review icon button wouldn't work to open
the review tab if focus weren't in the panel's message editor.
Danilo Leal
created
160fca0
settings_ui: Move LSP & tool settings from Editor to Language page (#40140)
6a16488
windows: Detect when `python3` is not usable and notify the user (#40070)
Click to expand commit body
Fixes #39998
Debugpy and pylsp are installed in a Zed-global venv with pip. We need a
Python interpreter to create this venv when it doesn't exist and one of
these tools needs to be installed, and sometimes we attempt to use
`python3` from `$PATH`. This can cause issues on Windows, where out of
the box `python3` is a sort of shim that opens the Microsoft Store app.
This PR changes the debugpy installation path to create the Zed-global
venv using the Python interpreter from a venv in the project, and only
use python3 from `$PATH` if that fails. That matches how pylsp
installation already works. It also tightens up how we search for a
global Python installation by doing a basic sanity check (`python3 -c
'print(1 + 2)`) before accepting it, which should catch the Windows
shim.
Release Notes:
- windows: improved the behavior of Zed in situations where no global
Python installation exists.
Cole Miller
created
f0d097c
settings_ui: Implement reset to default button (#40135)
a3bcf6f
windows: Fix shader rotation order for pattern rendering (#39993)
Click to expand commit body
old
<img width="1076" height="1008" alt="image"
src="https://github.com/user-attachments/assets/e1cd8238-e869-4abb-98b4-4790467c59d1"
/>
new
<img width="989" height="1004" alt="image"
src="https://github.com/user-attachments/assets/42b7fd59-0038-4490-82a7-979983da5416"
/>
Release Notes:
- N/A
0x2CA
created
ac8e2f0
Add `.ZedSans` as a possible fallback font (#40129)
Click to expand commit body
Closes https://github.com/zed-industries/zed/issues/40121
Release Notes:
- Fixes a bug where users couldn't return the UI font family to the
default value through the UI.
Danilo Leal
created
5c4649b
workspace: Fix auto-reveal-in-project-panel for Images, Notebooks and.. Terminals? (#40128)
Click to expand commit body
This regressed in #39199
Release Notes:
- Fixed image files not getting auto-revealed in project panel.
Piotr Osiewicz
created
bd13c90
settings_ui: Dynamic languages list (#40123)
997f6c6
settings: Make "auto" and "language_server" valid format steps (#40113)
Click to expand commit body
Follow up for: #39983 and
https://github.com/zed-industries/zed/pull/40040#issuecomment-3393902691
Previously it was possible to have formatting done using prettier or
language server using `"formatter": "auto"` and specify code actions to
apply on format using the `"code_actions_on_format"` setting. However,
post #39983 this is no longer possible due to the removal of the
`"code_actions_on_format"` setting. To rectify this regression, this PR
makes it so that the `"auto"` and `"language_server"` strings that were
previously only allowed as top level values on the `"formatter"` key,
are now allowed as format steps like so:
```json
{
"formatter": ["auto", "language_server"]
}
```
Therefore to replicate the previous behavior using `"auto"` and
`"code_actions_on_format"` you can use the following configuration:
```json
{
"formatter": [{"code_action": ...}, "auto"]
}
```
Release Notes:
- N/A *or* Added/Fixed/Improved ...
Ben Kunkle
created
8dfbafd
Fix inconsistent font size in toolbar code actions (#40120)
677d6ac
Use `DwmFlush` unconditionally for Windows vsync (#39913)
Click to expand commit body
Closes #36934
I'm still experiencing bugs with the
`DCompositionWaitForCompositorClock` API. Let's back out the support for
now until the fixes are identified and widely available.
`DwmFlush` does various things that aren't just waiting for VSync, so
it's not ideal, but it's not bad enough that it's worth a bigger
refactor right now.
Release Notes:
- N/A
John Tur
created
96add6c
remote: Check if remote can --exec, fall back to spawning shell otherwise (#40112)
Click to expand commit body
Bonus: fix passing env vars to the proxy server in WSL setting.
Closes #39710
Supersedes #39893
Release Notes:
- N/A