9677921
Pin clechasseur/rs-cargo action to 8435b10 (#25679)
Click to expand commit body
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
|
[clechasseur/rs-cargo](https://redirect.github.com/clechasseur/rs-cargo)
| action | pinDigest | -> `8435b10` |
---
### Configuration
π **Schedule**: Branch creation - "after 3pm on Wednesday" in timezone
America/New_York, Automerge - At any time (no schedule defined).
π¦ **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
β» **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
π **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
Release Notes:
- N/A
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuMiIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate[bot]
and
renovate[bot]
created
be1ac78
Unfold buffers in multibuffers when editing them (#25677)
Click to expand commit body
Release Notes:
- Multibuffers: Unfold excerpts when editing their contents.
Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com>
Closes https://github.com/zed-industries/zed/issues/22912
Reworks the task context infrastructure so that it's possible to have
multiple contexts at the same time, and stores all possible worktree
context there.
Task UI code is now falling back to the "active" worktree context, if
active item's context did not produce a resolved task.
Current code does not produce meaningful results for projects with
multiple worktrees to avoid ambiguity and design changes: instead of
resolving tasks per worktree context available, extra worktree context
is only used when resolving tasks from the same worktree.
Release Notes:
- Improved Zed tasks' `ZED_WORKTREE_ROOT` fallbacks
Kirill Bulatov
created
d2b49de
Dismiss active diagnostics on invalidation (#25646)
Click to expand commit body
When migrating to gpui2,
https://github.com/zed-industries/zed/commit/588976d27a22bb36a5aac7e762b21e180a66a2f9#diff-a3da3181e4ab4f73aa1697d7b6dc0caa0c17b2a187fb83b076dfc0234ec91f54R21
removed the diagnostic style for "active but invalid" case: presumably,
it served as some sort of a cursor to show where to move on after the
diagnostics update, on the next `GoTo[Prev]Diagnostic` action call.
As this change went unchanged for some time, another approach is tested
now, to be more integrated with inline diagnostics: now, the active
state is cleared
Same as before this change, another `GoTo[Prev]Diagnostic` action call
will be needed to re-expand a new diagnostics, but this change makes
this expansion to happen after the cursor β before the change, Zed would
continue from the stale diagnostics.
Release Notes:
- Fixed active diagnostics becoming stale
7a34dd9
Save buffers after restoring hunks in the project diff (#25620)
Click to expand commit body
This PR fixes a bug where using the project diff editor to restore hunks
from a file that's not open in its own buffer would cause those reverts
to be lost once the project diff drops its excerpts for that file.
The fix is to save the buffers after restoring them but before the
excerpts are (potentially) dropped. This is done for the project diff
editor only. If we fail to save the affected files, we add their buffers
to the active workspace, so that the reverted contents are preserved and
the user can try again to save them.
- [x] Get it working
- [x] Test
- [ ] ~~Clean up boolean soup~~
Co-authored-by: Max <max@zed.dev>
Release Notes:
- N/A
Cole Miller
created
add7ae8
Try to reveal selection changing issues in undo/redo via logging (#25676)
Click to expand commit body
This will hopefully help debug #22692. I tried this for a while locally
and saw neither these logs nor the issue.
Release Notes:
- N/A
Michael Sloan
created
c53020c
vim: Combine match arms in `Mode::is_visual` (#25675)
Click to expand commit body
This PR refactors the `Mode::is_visual` implementation to combine some
of the `match` arms.
Release Notes:
- N/A
Marshall Bowers
created
eeac1a9
Style filenames and paths in project diff buffer headers according to git status (#25653)
Click to expand commit body
This substitutes for the icons that we previously kept in these headers.
cc @iamnbutler
Release Notes:
- N/A
Cole Miller
created
e83ebd1
vim: Add more tests for replace with register (#25316)
089ea5d
vim: Fix back quotes not recognized as object (#24999)
Click to expand commit body
Currently back quotes ``` `` ``` not recognized as an object in vim
mode, so ```c i ` ```, ```d i ` ``` not working.
It seems to be a typo introduced in #22632 : The`DoubleQuotes` line was
doubled while the `BackQuotes` line was missing.
Release Notes:
- vim: Fixed back quotes ``` `` ``` not recognized as object.
Co-authored-by: Marshall Bowers <git@maxdeviant.com>
In file search submit action, handle unwrap when there are no prior
selection.
Fix is for recently made commits, hence no release notes.
Release Notes:
- N/A
---------
Co-authored-by: Anthony Eid <anthony@zed.dev>
smit
and
Anthony Eid
created
6267ab0
vim: Add ability to change default mode (#25067)
Click to expand commit body
Closes #13881, and technically resolves #14927.
Release Notes:
- Added the ability to set the default Vim mode.
---------
Co-authored-by: Marshall Bowers <git@maxdeviant.com>
This was originally a part of another PR, but I wanted to get the
refactoring in and shift focus to working on bugs.
This causes all git commands via the `Repository` entity to be
serialized, and allows us to return values other than `Result<()>`
Release Notes:
- N/A
Mikayla Maki
created
78da39e
assistant2: Add ability to delete past prompt editors (#25667)
Click to expand commit body
This PR adds the ability to delete past prompt editors in Assistant 2,
the same way you can with threads.
Release Notes:
- N/A
Marshall Bowers
created
d82a132
language_model: Use `LanguageModelToolUseId` instead of a `String` (#25666)
Click to expand commit body
This PR updates the `LanguageModelToolResult` type to use a
`LanguageModelToolUseId` for the tool use ID instead of a `String`.
Release Notes:
- N/A
Marshall Bowers
created
f11357d
context_server: Abstract server transport (#24528)
Click to expand commit body
This PR abstracts the communication layer for context servers, laying
the groundwork for supporting multiple transport mechanisms and taking
one step towards enabling remote servers.
Key changes centre around creating a new `Transport` trait with methods
for sending and receiving messages. I've implemented this trait for the
existing stdio-based communication, which is now encapsulated in a
`StdioTransport` struct. The `Client` struct has been refactored to use
this new `Transport` trait instead of directly managing stdin and
stdout.
The next steps will involve implementing an SSE + HTTP transport and
defining alternative context server settings for remote servers.
Release Notes:
- N/A
---------
Co-authored-by: Marshall Bowers <git@maxdeviant.com>
Federico Dionisi
and
Marshall Bowers
created
6d17546
Fix panic in file finder path elision (#25658)
- Fixes cursor style in the commit modal
- Use commit button instead of kb hint
- Update layout to scale better for large commit messages
No message:

Long Message:


Release Notes:
- N/A
Nate Butler
created
bab6501
edit prediction: Refine the stealth mode (#25599)
Click to expand commit body
Release Notes:
- N/A
---------
Co-authored-by: Agus Zubiaga <agus@zed.dev>
Danilo Leal
and
Agus Zubiaga
created
c0b6d86
go: Do not fill out root_uri in initialization params to prevent stale notifications (#25644)
Click to expand commit body
Closes #25381
Release Notes:
- N/A
Piotr Osiewicz
created
39728cf
Add docs on keybindings to trigger runnables (#25582)
ebccef1
Fix staging and unstaging of added and deleted files (#25631)
Click to expand commit body
* When staging in a buffer whose file has been deleted, do not save the
file
* Fix logic for writing to index when file is deleted
Release Notes:
- N/A
08539b3
Fix some syncing issues with git statuses (#25535)
Click to expand commit body
Like the real app, this one infinite loops if you have a diff in an
UnsharedFile.
Release Notes:
- N/A *or* Added/Fixed/Improved ...
---------
Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com>
This PR fixes the "Open Prompt Library" button after the GPUI 3 changes.
Release Notes:
- N/A
Marshall Bowers
created
3db18ff
lsp: Add support for dynamic registration of rename capability (#25610)
Click to expand commit body
While looking at Biome LSP implementation I've noticed that they
register their rename capability dynamically, which we don't handle.
Release Notes:
- N/A
Piotr Osiewicz
created
198f56c
Fix gutter highlights not matching diff hunks near excerpt boundaries (#25600)
Click to expand commit body
Release Notes:
- Fixed gutter highlights not matching diff hunks in multibuffers in
some cases
---------
Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com>
Cole Miller
and
Max Brunsfeld
created
d68d858
Fix crash in BlockMap::sync when there are inlay hints w/ newlines ri⦠(#25598)
Click to expand commit body
Closes https://github.com/zed-industries/zed/issues/25377
Release Notes:
- Fixed a crash that could happen when typing in the assistant panel
with edit predictions enabled.
---------
Co-authored-by: Cole Miller <m@cole-miller.net>
Max Brunsfeld
and
Cole Miller
created
7f16629
collab: Adjust maximum spending limit check (#25596)
Click to expand commit body
This is a follow-up to https://github.com/zed-industries/zed/pull/25573.
We were still using the spend for a particular model when determining if
the user was over their maximum monthly spend instead of looking at the
usage across all models.
Release Notes:
- N/A
Marshall Bowers
created
0066071
lsp: Query first capable language server for requests using primary LS (#25591)
Click to expand commit body
Release Notes:
- Improved Zed's handling of the following requests when the first
language server in language server settings for a given language is not
capable of handling them:
- Perform Rename
- Prepare Rename
- Document Highlights
- Find all references
- Go to implementation
- Go to definition
- Go to declaration
- Go to type definition
Piotr Osiewicz
created
e5b6194
zeta: Fix update required notification not showing (#25588)
Click to expand commit body
This PR fixes an issue introduced in #25530 that broke the notifications
that inform the user that a Zed update is required to continue using
edit prediction.
The issue is that the `Workspace` stored on the `Editor` is set _after_
the point we initialize Zeta, so capturing the `Workspace` at
construction time leads to it being `None`.
@ConradIrwin suggested that we could obtain the `Workspace` from the
`Window`, which does indeed do the trick.
I tested it both with and without this change by mocking the error
response, like so:
```rs
let response: Result<PredictEditsResponse, anyhow::Error> =
Err(anyhow!(ZedUpdateRequiredError {
minimum_version: SemanticVersion::new(0, 1, 0),
}));
```
Release Notes:
- N/A
Marshall Bowers
created
23f61d5
Add myself (Ben Kunkle) and Smit to the mailmap (#25590)
0559e1f
editor: Fix panic when `editor::SelectLargerSyntaxNode` overflows excerpt in multi buffer (#25585)
Click to expand commit body
Closes #25513
This PR handles case when `editor::SelectLargerSyntaxNode` expands
across excerpt boundaries and eventually crashes in multi buffer.
Release Notes:
- Fixed panic caused when `editor::SelectLargerSyntaxNode` is called
repetedly in multi buffer.
Co-authored-by: Ben Kunkle <ben.kunkle@gmail.com>
smit
and
Ben Kunkle
created
014d9df
assistant_context_editor: Try to fix crash when trying to view patch (#25572)
Click to expand commit body
Closes #24571
Attempts to fix crash described in #24571 based on the panic trace
provided by the user. In short, the panic seemed to be caused by
attempting to read an `Entity<ContextEditor>` while it was being
updated. My assumption is that at some point in
`workspace.add_item_to_current_pane` the `ContextEditor` is read.
Therefore, I moved the workspace update outside of the ContextEditor
update, and replaced another `update` call with a `read` call to clean
it up and just in case that was actually the issue.
Release Notes:
- N/A
278620d
Ensure emacs undo (ctrl-_) works by default in terminal on macOS (#25578)
Peter Tripp
created
75dbe18
Give Zed AI users access to Claude 3.7 Sonnet (#25577)
Click to expand commit body
This PR updates the client-side checks to give Zed AI users access to
Claude 3.7 Sonnet.
Requires https://github.com/zed-industries/zed/pull/25576 to be
deployed.
Release Notes:
- Added support for Claude 3.7 Sonnet to Zed AI.
Marshall Bowers
created
3d7ba7c
collab: Give Zed AI users access to Claude 3.7 Sonnet (#25576)
Click to expand commit body
This PR updates the authorization check to give Zed AI users access to
Claude 3.7 Sonnet.
Release Notes:
- N/A