cfd8d18
Bump to 0.135.2 for @ConradIrwin
Zed Bot created
cfd8d18
Bump to 0.135.2 for @ConradIrwin
Zed Bot created
ad5683b
Create release archive in the target dir
Conrad Irwin created
a565c3a
Remove a stray eprintln (#11635)
Release Notes: - N/A
Kirill Bulatov created
3f17540
Properly calculate expanded git diff hunk highlight ranges (#11632)
Closes https://github.com/zed-industries/zed/issues/11576 Release Notes: - Fixed expanded diff hunks highlighting an extra row as added ([11576](https://github.com/zed-industries/zed/issues/11576))
Kirill Bulatov created
647c31e
Bump to 0.135.1 for @ConradIrwin
Zed Bot created
6d927a4
Don't panic on failure to allocate an AtlasTile (cherry-pick #11579) (#11583)
Cherry-picked Don't panic on failure to allocate an AtlasTile (#11579) Release Notes: - Fixed a panic in graphics allocation Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
gcp-cherry-pick-bot[bot] and Conrad Irwin created
3a84d5e
Pass hover position as an anchor (cherry-pick #11578) (#11581)
Cherry-picked Pass hover position as an anchor (#11578) It's too easily to accidentally pass a point from one snapshot into another Release Notes: - Fixed a panic in show hover Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
gcp-cherry-pick-bot[bot] and Conrad Irwin created
3ad3a36
v0.135.x preview
Joseph T. Lyons created
ffa2d90
Return prettier entry back to LSP logs (#11563)
Fixes prettier entries disappeared after https://github.com/zed-industries/zed/pull/10788 Release Notes: - N/A
Kirill Bulatov created
5c2ec17
docs: Fix default value for `formatter` setting (#11560)
This PR fixes the default value for the `formatter` setting listed in the docs. The default value is `"auto"`: https://github.com/zed-industries/zed/blob/194c43b84b4c2b0f2e78d8ef533bb99b6916f38c/assets/settings/default.json#L367 Resolves #11468. Release Notes: - N/A
Marshall Bowers created
2671b9c
Fix alignment of code actions menu with narrow panes
Piotr Osiewicz created
68fe2bb
Do away with display points in toggle_code_actions
Piotr Osiewicz created
65f7238
editor: Fix task indicator layout for wrapped lines
Piotr Osiewicz created
ca680f0
branch picker: Always show HEAD first (#11552)
I think this is a lot less confusing than another branch being selected by default when there's no query. Release Notes: - Changed the branch picker to always show the current branch as the default selected entry. https://github.com/zed-industries/zed/assets/1185253/18b50656-f6ac-4138-b4e0-9024072e1555
Thorsten Ball created
9d681bd
go: support highlight regexp (#11538)
Before: <img width="521" alt="image" src="https://github.com/zed-industries/zed/assets/45585937/7b87e552-0cf0-4168-933f-21d1ae84bf64"> After: <img width="499" alt="image" src="https://github.com/zed-industries/zed/assets/45585937/f1171375-8c22-4186-a5f1-1bdfa56cf01f"> Release Notes: - Added go regexp highlighting
d1y created
1669ff8
editor: Fix menu::Confirm falling through to editor when confirming task entry in code actions (#11546)
Release Notes: - N/A
Piotr Osiewicz created
45aca34
Take local project settings into account when launching terminals (#11526)
Fixes #7599 Use project level settings if possible, when creating terminals. Release Notes: - Fixed terminals ignoring project-specific settings ([7599](https://github.com/zed-industries/zed/issues/7599))
LoganDark created
07942bb
Editor: Do not display code actions in task gutter menu if they belong to different line (#11506)
This doesn't address the focus issues we saw with @maxbrunsfeld yet. Release Notes: - N/A
Piotr Osiewicz created
47c12c6
Make `prefer_line` the default soft-wrap behavior. (#11542)
Stops lines from clipping at 1024 by default, returning it to the old default behaviour where it wraps at 512. The `none` mode is only supposed to be used for git hunks. See https://github.com/zed-industries/zed/issues/11518#issuecomment-2099836283. Release Notes: - N/A
Owen Law created
63a5f46
Remember window restore size (#10429)
Now, regardless of how the Zed window is closed, Zed can remember the window's restore size. - [x] Windows implementation - [x] macOS implementation - [x] Linux implementation (partial) - [x] update SQL data base (mark column `fullscreen` as deprecated) The current implementation on Linux is basic, and I'm not sure if it's correct. The variable `fullscreen` in SQL can be removed, but I'm unsure how to do it. edit: mark `fullscreen` as deprecated ### Case 1 When the window is closed as maximized, reopening it will open in the maximized state, and returning from maximized state will restore the position and size it had when it was maximized. https://github.com/zed-industries/zed/assets/14981363/7207752e-878a-4d43-93a7-41ad1fdb3a06 ### Case 2 When the window is closed as fullscreen, reopening it will open in fullscreen mode, and toggling fullscreen will restore the position and size it had when it entered fullscreen (note that the fullscreen application was not recorded in the video, showing a black screen, but it had actually entered fullscreen mode). https://github.com/zed-industries/zed/assets/14981363/ea5aa70d-b296-462a-afb3-4c3372883ea3 ### What's more - As English is not my native language, some variable and struct names may need to be modified to match their actual meaning. - I am not familiar with the APIs related to macOS and Linux, so implementation for these two platforms has not been done for now. - Any suggestions and ideas are welcome. Release Notes: - N/A
张小白 created
6ddcff2
Show annotations more like the inline assistant (#11530)
* compute gutter width * show the AI icon * borders, background, and text color for annotations <img width="1840" alt="image" src="https://github.com/zed-industries/zed/assets/836375/93f2e9b8-d7f7-4c25-b3e2-cf77a0c4ca36"> Release Notes: - N/A
Kyle Kelley created
1cf40d7
Supermaven enhanced (#11521)
Fixes #11422 by accepting just the start of the line. Release Notes: - N/A --------- Co-authored-by: max <max@zed.dev> Co-authored-by: jacob <jacob@supermaven.com>
Kyle Kelley , max , and jacob created
33a7221
assistant2: Add new conversation button, that also saves the current conversation (#11522)
This PR updates the new assistant with a button to start a new conversation. Clicking on it will reset the chat and put it into a fresh state. The current conversation will be serialized and written to `~/.config/zed/conversations`. Release Notes: - N/A
Marshall Bowers created
c77dd8b
docs: Add linux build command explanation (#11513)
Just adding a short note about `cargo build --release` and the location of the compiled binary. It helps a lot to streamline usage of Zed day to day on Linux. Release Notes: - N/A
Andrei Zvonimir Crnković created
3d9f008
Do not show diffs for files with \r\n contents (#11519)
Kirill Bulatov created
6a64b73
assistant2: Add general structure for conversation history (#11516)
This PR adds the general structure for conversation history to the new assistant. Right now we have a placeholder button in the assistant panel that will toggle a picker containing some placeholder saved conversations. Release Notes: - N/A
Marshall Bowers created
47ca343
Add DecoratedIcon (#11512)
This allows us to create icons with dynamic decorations drawn on top
like these:

### Examples:
```rust
div()
.child(DecoratedIcon::new(
Icon::new(IconName::Bell).color(Color::Muted),
IconDecoration::IndicatorDot,
))
.child(
DecoratedIcon::new(Icon::new(IconName::Bell), IconDecoration::IndicatorDot)
.decoration_color(Color::Accent),
)
.child(DecoratedIcon::new(
Icon::new(IconName::Bell).color(Color::Muted),
IconDecoration::Strikethrough,
))
.child(
DecoratedIcon::new(Icon::new(IconName::Bell), IconDecoration::X)
.decoration_color(Color::Error),
)
```
Release Notes:
- N/A
Nate Butler created
768b63a
Remove windows dependency from all non-windows platforms (#11510)
Whoops Release Notes: - N/A
Mikayla Maki created
0d2f65a
Language Model Tool for commenting in a multibuffer (#11509)
Language Model can now open multibuffers and insert comments as block decorations in the editor.  Release Notes: - N/A --------- Co-authored-by: max <max@zed.dev> Co-authored-by: marshall <marshall@zed.dev> Co-authored-by: nate <nate@zed.dev>
Kyle Kelley , max , marshall , and nate created
953acb0
Document configuring pyright for pyproject.toml (#11508)
Release Notes: - N/A
Joseph T. Lyons created
d64106e
Add development credentials provider (#11505)
This PR adds a new development credentials provider for the purpose of
streamlining local development against production collab.
## Problem
Today if you want to run a development build of Zed against the
production collab server, you need to either:
1. Enter your keychain password every time in order to retrieve your
saved credentials
2. Re-authenticate with zed.dev every time
- This can get annoying as you need to pop out into a browser window
- I've also seen cases where if you re-auth too many times in a row
GitHub will make you confirm the authentication, as it looks suspicious
## Solution
This PR decouples the concept of the credentials provider from the
keychain, and adds a new development credentials provider to address
this specific case.
Now when running a development build of Zed and the
`ZED_DEVELOPMENT_AUTH` environment variable is set to a non-empty value,
the credentials will be saved to disk instead of the system keychain.
While this is not as secure as storing them in the system keychain,
since it is only used for development the tradeoff seems acceptable for
the resulting improvement in UX.
Release Notes:
- N/A
Marshall Bowers created
c260f7d
Refactor Windows platform implementation (#11393)
This aligns the Windows platform implementation with a code style similar to macOS platform, eliminating most of the `Cell`s and `Mutex`es. This adjustment facilitates potential future porting to a multi-threaded implementation if required. Overall, this PR made the following changes: it segregated all member variables in `WindowsPlatform` and `WindowsWindow`, grouping together variables that remain constant throughout the entire app lifecycle, while placing variables that may change during app runtime into `RefCell`. Edit: During the code refactoring process, a bug was also fixed. **Before**: Close window when file has changed, nothing happen: https://github.com/zed-industries/zed/assets/14981363/0bcda7c1-808c-4b36-8953-a3a3365a314e **After**: Now `should_close` callback is properly handled https://github.com/zed-industries/zed/assets/14981363/c8887b72-9a0b-42ad-b9ab-7d0775d843f5 Release Notes: - N/A
张小白 created
b038fb3
rename attachment_store -> attachment_registry (#11501)
Minor touch up from #11471 Release Notes: - N/A
Kyle Kelley created
4eedbde
linux: Use optional compile-time RELEASE_VERSION variable (#11490)
This implements `app_version` on Linux by using an optional, compile-time `RELEASE_VERSION` env var that can be set. We settled on the `RELEASE_VERSION` as the name, since it's similar to `RELEASE_CHANNEL` which we use in Zed. cc @ConradIrwin @mikayla-maki Release Notes: - N/A Co-authored-by: Bennet <bennetbo@gmx.de>
Thorsten Ball and Bennet created
33d4c56
Add a nohup workaround (#11499)
Release Notes: - N/A
Conrad Irwin created
e290798
don't report hangs on stable (#11494)
Release Notes: - N/A
Conrad Irwin created
ceab446
Restore vim docs (#11491)
These got reset to the wrong version as part of the docs migration Release Notes: - N/A
Conrad Irwin created
72c47b7
Assistant grouping (#11479)
Groups collections of assistant messages with their tool calls as children of the assistant message container.  Release Notes: - N/A
Kyle Kelley created
c77d2eb
Increase short SHA length to 7 characters (#11492)
This PR increases the length of a shortened Git SHA from 6 to 7 characters. This matches what GitHub uses. I also took the opportunity to factor out a common method for computing a short SHA so that we have a single source of truth for the length that we're using. Release Notes: - Increased the short commit SHA length used by git blame from 6 to 7 characters.
Marshall Bowers created
fc4ea55
Update pull_request_template.md
Make it easier to edit to select the N/A option.
Conrad Irwin created
bcf7bc9
Do not toggle hunk diffs when resizing the docks (#11489)
Closes https://github.com/zed-industries/zed/issues/11456 Release Notes: - N/A --------- Co-authored-by: Piotr <piotr@zed.dev>
Kirill Bulatov and Piotr created
5a7b8f7
linux: Fix restarting by waiting for sockets to be closed (#11488)
This fixes a race-condition that showed up when trying to restart Nightly/Preview/... When running with these release channels, Zed tries to ensure that there's only one instance of Zed running. It does that by listening on a TCP socket to which other instances can connect on start. If the other instance receives a message, it knows that another Zed instance is running and exits. On Linux, though, we ran into a race condition: 1. `kill -0`, which checks whether a process is still running, returns an error, signalling that the old Zed process has exited 2. BUT: the process was still listening on the TCP port. It seems like that on Linux, process resources aren't guaranteed to be cleaned up as soon as signal handling stops working for a process. The fix is to wait until the process is no longer listening on any TCP sockets. There's a slight downside to this: GPUI processes that never listen on any TCP sockets now have to pay the cost of an additional `lsof` call when restarting. We do think that it's a reasonable tradeoff for now though, since the other options (extending the platform interface to provide callbacks, sharing the listening port in the framework, ...) seem wider-reaching only to fix a very local bug. Release Notes: - N/A Co-authored-by: Bennet <bennetbo@gmx.de>
Thorsten Ball and Bennet created
0c11d84
editor: Move runnables querying to background thread (#11487)
Originally reported by @mrnugget and @bennetbo Also, instead of requerying them every frame, we do so whenever buffer changes. As a bonus, I modified tree-sitter query for Rust tests. Release Notes: - N/A
Piotr Osiewicz created
4eca787
gleam: Add runnable tests (#11476)
This PR adds basic runnable tests for Gleam. Functions with names ending in `_test` will be available for running: https://github.com/zed-industries/zed/assets/1486634/9f3f81e5-a7fa-425c-a5a2-d615062486bb Release Notes: - N/A
Marshall Bowers created
843d299
Windows: Fix canonicalize return UNC path (#11083)
In Windows platform, using notify to watch file events. 1. in [notify windows implement](https://github.com/notify-rs/notify/blob/3df0f65152c8585cfb29d231c880b86b9164dcfd/notify/src/windows.rs#L344), we get the full file path, just with `path.join(file_path)`. 2. In [zed worktree start_backgroud_scan_tasks](https://github.com/zed-industries/zed/blob/d2569afe662be93c926eed1aeb2b17d050ba90b0/crates/worktree/src/worktree.rs#L679), `abs_path` is not unc path, so we get all file events with not unc path. 3. but in [zed worktree process_event](https://github.com/zed-industries/zed/blob/d2569afe662be93c926eed1aeb2b17d050ba90b0/crates/worktree/src/worktree.rs#L3619), we `strip_prefix` unc path all times, it will always print annoy error. @mikayla-maki I can't reopen pre closed pr #10501 . Release Notes: - N/A
CharlesChen0823 created
88c4e0b
Add a registry for `GitHostingProvider`s (#11470)
This PR adds a registry for `GitHostingProvider`s. The intent here is to help decouple these provider-specific concerns from the lower-level `git` crate. Similar to languages, the Git hosting providers live in the new `git_hosting_providers` crate. This work also lays the foundation for if we wanted to allow defining a `GitHostingProvider` from within an extension. This could be useful if we wanted to extend the support to work with self-hosted Git providers (like GitHub Enterprise). I also took the opportunity to move some of the provider-specific code out of the `util` crate, since it had leaked into there. Release Notes: - N/A
Marshall Bowers created
a64e20e
Centralize project context provided to the assistant (#11471)
This PR restructures the way that tools and attachments add information about the current project to a conversation with the assistant. Rather than each tool call or attachment generating a new tool or system message containing information about the project, they can all collectively mutate a new type called a `ProjectContext`, which stores all of the project data that should be sent to the assistant. That data is then formatted in a single place, and passed to the assistant in one system message. This prevents multiple tools/attachments from including redundant context. Release Notes: - N/A --------- Co-authored-by: Kyle <kylek@zed.dev>
Max Brunsfeld and Kyle created
f2a4151
Continue Assistant 2 Messages Layout (#11465)
Release Notes: - N/A --------- Co-authored-by: Marshall Bowers <1486634+maxdeviant@users.noreply.github.com> Co-authored-by: Kyle Kelley <rgbkrk@gmail.com>
Nate Butler , Marshall Bowers , and Kyle Kelley created
96a3021
vim: Add shift-k as alias for g h (#11463)
Co-Authored-By: Zachiah Sawyer <zachiah@proton.me> Release Notes: - vim: Added `shift-k` to show the hover tooltip Co-authored-by: Zachiah Sawyer <zachiah@proton.me>
Conrad Irwin and Zachiah Sawyer created
d6a6330
gpui/blade: add alpha handling for non-rounded quads (#11461)
Fixes https://github.com/zed-industries/zed/pull/10973#issuecomment-2096586316 Release Notes: - N/A
jansol created