5849180
Fix up tasks documentation (#24991)
Click to expand commit body
Release Notes: - N/A
Joseph T. Lyons created
5849180
Fix up tasks documentation (#24991)
Release Notes: - N/A
Joseph T. Lyons created
ba2c182
Revert "Fix issue with `vim::PushOperator` documentation (#24825)" (#24989)
This reverts commit 28c667a3c78ab1febcea1b1de85f375658a28b18. Release Notes: - N/A
Ben Kunkle created
c7df2d7
Rename `livekit_server` to `livekit_api` (#24984)
The name `livekit_server` was a bit misleading as it is not a server and gets built into both the client and server - the server code is in `collab`. Release Notes: - N/A
Michael Sloan created
2400fb4
Set keybindings to non-vim mode when vim is disabled (#24971)
Closes #ISSUE Release Notes: - N/A
Conrad Irwin created
74d1a65
Switch back to upstream oo7 (#24957)
As of 0.4.0, the decryption panic that we were seeing has been fixed upstream (thanks @bilelmoussaoui!), so stop using our temporary fork. Release Notes: - N/A
Cole Miller created
bd41be2
Revert "docs: Update msys2 section (#24942)" (#24958)
This reverts commit 56f13ddc50af5713e270027a9dd71dc7b00203c2. I hurried with Zed update for MSYS2... anyway good news that I managed to fix build issue Release Notes: - N/A
Maksim Bondarenkov created
4ff1173
git: Fill the commit message buffer from MERGE_MSG (#24843)
This PR uses the template merge message in `.git/MERGE_MSG` to populate the commit message buffer in the git panel. This is done: - when the commit message buffer is first created - when the list of merge heads in .git changes, only if the buffer doesn't already have some text in it Hopefully this strikes a good balance between convenience and not stomping on the user's toes. Release Notes: - N/A
Cole Miller created
394bb8f
Fix a couple of diff hunk issues (#24913)
- Fix hunks losing their expandedness when staged or unstaged - Disable collapsing hunks in the project diff editor Release Notes: - N/A --------- Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
Cole Miller and Conrad Irwin created
56f13dd
docs: Update msys2 section (#24942)
CLANG64 version of Zed is being removed in https://github.com/msys2/MINGW-packages/pull/23391 due to build issue with `aws-lc-sys`: https://github.com/aws/aws-lc-rs/issues/696#issuecomment-2660839255 Closes #ISSUE Release Notes: - N/A
Maksim Bondarenkov created
79e3faf
Make save all prompt less noisy (#24934)
Don't show clean items from dirty multibuffers, and dedupe filenames in case you have a file open in a buffer and a multibuffer Release Notes: - N/A
Conrad Irwin created
e0fc767
Display case-sensitive keybindings for vim commands (#24322)
This Pull Request tackles the issue outline in #14287 by changing the way `KeyBinding`s for vim mode are displayed in the command palette. It's worth pointing out that this whole thing was pretty much implemented by Conrad Irwin during a pairing session, I just tried to clean up some other changes introduced for a different issue, while improving some comments. Here's a quick list of the changes introduced: - Update `KeyBinding` with a new `vim_mode` field to determine whether the keybinding should be displayed in vim mode. - Update the way `KeyBinding` is rendered, so as to detect if the keybinding is for vim mode, if it is, only display keys in uppercase if they require the shift key. - Introduce a new global state β `VimStyle(bool)` - use to determine whether `vim_mode` should be enabled or disabled when creating a new `KeyBinding` struct. This global state is automatically set by the `vim` crate whenever vim mode is enabled or disabled. - Since the app's context is now required when building a `KeyBinding` , update a lot of callers to correctly pass this context. And before and after screenshots, for comparison: | before | after | |--------|-------| | <img width="1050" alt="SCR-20250205-tyeq" src="https://github.com/user-attachments/assets/e577206d-2a3d-4e06-a96f-a98899cc15c0" /> | <img width="1050" alt="SCR-20250205-tylh" src="https://github.com/user-attachments/assets/ebbf70a9-e838-4d32-aee5-0ffde94d65fb" /> | Closes #14287 Release Notes: - Fix rendering of vim commands to preserve case sensitivity --------- Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
Dino and Conrad Irwin created
14289b5
Fix ReplaceWithRegister with proper dot repeat (#24932)
Release Notes: - Fixed ReplaceWithRegister with proper dot repeat
xzbdmw created
1b38b9f
theme: Add file icon associations for `.rdata` and `.RData` files (#24925)
.RData is a file that stores R objects. Release Notes: - Added file icon associations for `.rdata` and `.RData` files. --------- Co-authored-by: Marshall Bowers <git@maxdeviant.com>
Aymen and Marshall Bowers created
bf21d91
docs: Update icon theme docs with `file_stems` and `file_suffixes` (#24929)
This PR updates the icon theme docs with examples of `file_stems` and `file_suffixes` that were added in https://github.com/zed-industries/zed/pull/24926. Release Notes: - N/A
Marshall Bowers created
e60123b
Allow icon themes to provide their own file associations (#24926)
This PR adds the ability for icon themes to provide their own file
associations.
The old `file_types.json` that was previously used to make these
associations has been removed in favor of storing them on the default
theme.
Icon themes have two new fields on them:
- `file_stems`: A mapping of file stems to icon keys.
- `file_suffixes`: A mapping of file suffixes to icon keys.
These mappings produce icon keys which can then be used in `file_icons`
to associate them to a particular icon:
```json
{
"file_stems": {
"Makefile": "make"
},
"file_suffixes": {
"idr": "idris"
},
"file_icons": {
"idris": { "path": "./icons/idris.svg" },
"make": { "path": "./icons/make.svg" }
}
}
```
When loading an icon theme, the `file_stems` and `file_icons` fields
will be merged with the ones from the base icon theme, with the values
from the icon theme being loaded overriding ones in the base theme.
Release Notes:
- Added the ability for icon themes to provide their own file
associations.
Marshall Bowers created
f277609
Update Rust crate rustls to v0.23.23 (#24762)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rustls](https://redirect.github.com/rustls/rustls) | workspace.dependencies | patch | `0.23.22` -> `0.23.23` | --- ### 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. --- - [x] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- Release Notes: - N/A <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2Ny4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate[bot] and renovate[bot] created
a01d2dd
file_icons: Add separate icon keys for .NET solution and project files (#24851)
Add separate icon keys for .NET solution and project files. Release Notes: - Icon themes: Added the ability to change file icons for Visual Studio project files: - Solution files (`.sln`) - Solution User Options files (`.suo`) - C# Project files (`.csproj`) - F# Project files (`.fsproj`) - Visual Basic Project files (`.vbproj`) --------- Co-authored-by: Marshall Bowers <git@maxdeviant.com>
Randa Zraik and Marshall Bowers created
88fe54e
docs: Add link to Zeta's Hugging Face profile (#24915)
Release Notes: - N/A
Danilo Leal created
64b2a49
Update Rust crate filedescriptor to v0.8.3 (#24759)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [filedescriptor](https://redirect.github.com/wezterm/wezterm) | dependencies | patch | `0.8.2` -> `0.8.3` | --- ### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2Ny4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate[bot] and renovate[bot] created
5825413
Update Rust crate jsonwebtoken to v9.3.1 (#24760)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [jsonwebtoken](https://redirect.github.com/Keats/jsonwebtoken) | workspace.dependencies | patch | `9.3.0` -> `9.3.1` | --- ### Release Notes <details> <summary>Keats/jsonwebtoken (jsonwebtoken)</summary> ### [`v9.3.1`](https://redirect.github.com/Keats/jsonwebtoken/blob/HEAD/CHANGELOG.md#931-2024-02-06) [Compare Source](https://redirect.github.com/Keats/jsonwebtoken/compare/v9.3.0...v9.3.1) - Update base64 </details> --- ### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2Ny4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate[bot] and renovate[bot] created
86b8852
Update Rust crate tree-sitter-elixir to v0.3.4 (#24763)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [tree-sitter-elixir](https://redirect.github.com/elixir-lang/tree-sitter-elixir) | workspace.dependencies | patch | `0.3.3` -> `0.3.4` | --- ### Release Notes <details> <summary>elixir-lang/tree-sitter-elixir (tree-sitter-elixir)</summary> ### [`v0.3.4`](https://redirect.github.com/elixir-lang/tree-sitter-elixir/blob/HEAD/CHANGELOG.md#v034-2025-02-06) [Compare Source](https://redirect.github.com/elixir-lang/tree-sitter-elixir/compare/v0.3.3...v0.3.4) ##### Changed - Changed the built-in queries to use `#any-of?` predicate over `#match?` ([#​80](https://redirect.github.com/elixir-lang/tree-sitter-elixir/pull/80)) </details> --- ### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2Ny4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate[bot] and renovate[bot] created
1fd099b
Update aws-sdk-rust monorepo (#24773)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [aws-sdk-kinesis](https://redirect.github.com/awslabs/aws-sdk-rust) | dependencies | minor | `1.60.0` -> `1.61.0` | | [aws-sdk-s3](https://redirect.github.com/awslabs/aws-sdk-rust) | dependencies | minor | `1.73.0` -> `1.76.0` | --- ### 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. π» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- Release Notes: - N/A <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2Ny4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate[bot] and renovate[bot] created
082347c
Update Rust crate clap to v4.5.29 (#24754)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [clap](https://redirect.github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.28` -> `4.5.29` | --- ### Release Notes <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.29`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4529---2025-02-11) [Compare Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.28...v4.5.29) ##### Fixes - Change `ArgMatches::args_present` so not-present flags are considered not-present (matching the documentation) </details> --- ### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2Ny4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate[bot] and renovate[bot] created
2377f53
Update Rust crate ctor to 0.3.0 (#24774)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [ctor](https://redirect.github.com/mmastrac/rust-ctor) | workspace.dependencies | minor | `0.2.6` -> `0.3.0` | --- ### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2Ny4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate[bot] and renovate[bot] created
df02745
Update Rust crate uuid to v1.13.1 (#24780)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [uuid](https://redirect.github.com/uuid-rs/uuid) | workspace.dependencies | minor | `1.12.1` -> `1.13.1` | --- ### Release Notes <details> <summary>uuid-rs/uuid (uuid)</summary> ### [`v1.13.1`](https://redirect.github.com/uuid-rs/uuid/releases/tag/1.13.1) [Compare Source](https://redirect.github.com/uuid-rs/uuid/compare/1.13.0...1.13.1) #### What's Changed - Fix `wasm32` with `atomics` by [@​bushrat011899](https://redirect.github.com/bushrat011899) in [https://github.com/uuid-rs/uuid/pull/797](https://redirect.github.com/uuid-rs/uuid/pull/797) - Prepare for 1.13.1 release by [@​KodrAus](https://redirect.github.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/799](https://redirect.github.com/uuid-rs/uuid/pull/799) #### New Contributors - [@​bushrat011899](https://redirect.github.com/bushrat011899) made their first contribution in [https://github.com/uuid-rs/uuid/pull/797](https://redirect.github.com/uuid-rs/uuid/pull/797) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.13.0...1.13.1 ### [`v1.13.0`](https://redirect.github.com/uuid-rs/uuid/releases/tag/1.13.0) [Compare Source](https://redirect.github.com/uuid-rs/uuid/compare/1.12.1...1.13.0) #### :warning: Potential Breakage This release updates our version of `getrandom` to `0.3` and `rand` to `0.9`. It is a **potentially breaking change** for the following users: ##### no-std users who enable the `rng` feature `uuid` still uses `getrandom` by default on these platforms. Upgrade your version of `getrandom` and [follow its new docs](https://docs.rs/getrandom/0.3.1/getrandom/index.html#custom-backend) on configuring a custom backend. ##### `wasm32-unknown-unknown` users who enable the `rng` feature without the `js` feature Upgrade your version of `getrandom` and [follow its new docs](https://docs.rs/getrandom/0.3.1/getrandom/index.html#custom-backend) on configuring a backend. You'll also need to enable the `rng-getrandom` or `rng-rand` feature of `uuid` to force it to use `getrandom` as its backend: ```diff [dependencies.uuid] version = "1.13.0" - features = ["v4"] + features = ["v4", "rng-getrandom"] [dependencies.getrandom] version = "0.3" ``` If you're on `wasm32-unknown-unknown` and using the `js` feature of `uuid` you shouldn't see any breakage. We've kept this behavior by vendoring in `getrandom`'s web-based backend when the `js` feature is enabled. #### What's Changed - Update `getrandom` to `0.3` and `rand` to `0.9` by [@​KodrAus](https://redirect.github.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/793](https://redirect.github.com/uuid-rs/uuid/pull/793) - Support forcing `getrandom` on `wasm32-unknown-unknown` without JavaScript by [@​KodrAus](https://redirect.github.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/794](https://redirect.github.com/uuid-rs/uuid/pull/794) - Prepare for 1.13.0 release by [@​KodrAus](https://redirect.github.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/795](https://redirect.github.com/uuid-rs/uuid/pull/795) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.12.1...1.13.0 </details> --- ### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2Ny4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate[bot] and renovate[bot] created
e6749b5
Use shell script language for bats files (#24877)
bats is a superset of bash. It's a common tool for writing TAP tests in bash. https://bats-core.readthedocs.io/en/stable/tutorial.html#your-first-test Release Notes: - Added recognition for `.bats` files as "Shell Script". --------- Co-authored-by: Marshall Bowers <git@maxdeviant.com>
Γtienne BERSAC and Marshall Bowers created
5f63111
Add SSH port forwards to settings (#24474)
Closes #6920 Release Notes: - Added ability to specify port forwarding settings for remote connections
Richard Weber created
58b0a6c
Remove legacy themes and licenses (#24589)
This PR removes Zed legacy themes β all themes except `One` and `Gruvbox`. These will likely be renamed in the future (to something like `Zed One`, `Zed Gruvbox` to allow the original authors of those themes to provide their own official versions.) You can grab the [`zed-legacy-themes`](https://github.com/zed-extensions/legacy-themes) extension if you would like to continue using one of these themes. ## How to install the extension: - Go to the extension store (`zed: extensions`, cmd+shift+x on macOS) - Search for the `Zed Legacy Themes` extension and install it. - Now the themes will be installed (with names like `Zed Legacy: Andromeda`) Release Notes: - A number of themes are no longer installed in Zed by default: `Andromeda`, `Atelier`, `RosΓ© Pine`, `Sandcastle`, `Solarized` & `Summercamp`. If you would like to continue using one of these extensions: 1. Open `zed: extensions`, 2. Install the `zed-legacy-themes` extension. 3. Re-select your desired theme. Co-authored-by: maxdeviant <elliott.codes@gmail.com>
Nate Butler and maxdeviant created
216a5e2
file_icons: Associate `.R` files with R (#24907)
Closes #24899 Sorted using: https://github.com/zed-industries/zed/pull/12487#issue-2325944879 Release Notes: - N/A Co-authored-by: Marshall Bowers <git@maxdeviant.com>
5brian and Marshall Bowers created
f943251
file_icons: Sort `file_types.json` (#24910)
This PR sorts the `file_types.json` file alphabetically. This is the command I used to sort it: ``` pnpm --package=json-sort-cli dlx jsonsort assets/icons/file_icons/file_types.json ``` Release Notes: - N/A
Marshall Bowers created
be83074
Git context menu (#24844)
Adds the non-entry specific right click menu to the panel, and the features contained therin: * Stage all * Discard Tracked Changes * Trash Untracked Files Also changes the naming from "Changes"/"New" to better match Git's terminology (though not convinced on this, it was awkward to describe "Discard Changes" without a way to distinguish between the changes and the files containing them). Release Notes: - N/A
Conrad Irwin created
bd105a5
Continue improving font adjustment settings (#24908)
Follow-up of https://github.com/zed-industries/zed/pull/24857 Based on the feedback, * made non-persisting font size change as a default in Zed keymaps JetBrains IDEs seem to persist font size changes by default, hence left to do so in Zed keymaps too * fixed a bug with holding a binding to change the font size caused flickering Release Notes: - N/A
Kirill Bulatov created
c049df2
docs: Add section on file icons to `CONTRIBUTING.md` (#24905)
This PR adds a section on file icons to the `CONTRIBUTING.md` guide. Release Notes: - N/A
Marshall Bowers created
3040ef4
file_icons: Add icon key for Crystal and ECR files (#24903)
Release Notes: - Icon themes: Added the ability to change the file icon for Crystal (`.cr`, `.ecr`) files. --------- Co-authored-by: Marshall Bowers <git@maxdeviant.com>
Margret Riegert and Marshall Bowers created
e37acde
migrator: Fix keymap task_name regression (#24898)
Closes #24832 Only turns specified deperecated keys and values to snake case. Release Notes: - Fixed issue where keybindings would open task selector instead of spawn that task.
smit created
1d26a27
go: Fix tree-sitter query for outlines (#24861)
Closes #14497 Release Notes: - Fixed outline view for Go to correctly indent types and show missing variables. ---- This PR fixes the tree-sitter query for outlines for Go code. It correctly indents "grouped" `type` declarations. It also fixes missing variables for "grouped" `var` declarations. ### Before: 1. Incorrectly indented types from `G` to `K` and `aliasInt` 2. Missing vars `M` and `N` in outline  ### After: 1. Types no longer indented incorrectly 2. Missing vars `M` and `N` appear in the outline, as expected  ### Caveats: 1. This fix comes from an hour or so of reading about tree-sitter and its query syntax. I'm not an expert. 2. I'm not sure how to test this. I've done manual testing and it appears to works as expected without an regressions.
Ashish Bhate created
294dea1
vim: Change into visual mode on select all matches (#24897)
This Pull Request fixes an issue where selecting all matches on a search would not update vim to visual mode. In the video below the following scenarios are tested: 1. Clicking "Select All Matches" in the buffer search bar correctly changes vim to visual mode 2. Pressing Enter jumps the cursor to the first match and does not change vim's mode 3. Selecting all matches with the `β₯β` changes vim to visual mode https://github.com/user-attachments/assets/f7535638-987e-4f33-9364-292f99b60167 Thanks @ConradIrwin for both the quick pairing session and the solution! π Closes #14681 Release Notes: - vim: Use visual mode for "select all matches" in search (to be consistent with `ga`)
Dino created
fc85ca0
ci: Fix issue response script (#24891)
This PR fixes the issue response script. There were a number of things preventing it from working: - The directory name used in the GitHub Action did not match the one on disk. - The script has been moved accordingly - `ts-node` does not support ESM. - `ts-node` seems unmaintained, so I changed the script to be plain JS that is type-checked with TypeScript. - The data being sent to the Slack API was invalid: - Each section block can only have a maximum of 3000 characters in the `text` field, so we need to break up the issue list across multiple sections. - We needed to escape `&`, `<`, and `>` characters in the issue titles. Release Notes: - N/A
Marshall Bowers created
de020af
Fix duplicate hunk controls after splitting DisplayDiffHunk (#24893)
This PR fixes expanded modification hunks having two sets of hunk controls after #24834. Release Notes: - N/A
Cole Miller created
610158b
Force manual publishing of preview (#24894)
This is just a temporary change to help us debug with some weird issues happening: - Discord release not firing for certain builds - Random blank release drafts showing up Release Notes: - N/A
Joseph T. Lyons created
2046023
Fix scroll to top on multibuffer save (#24885)
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
7ee4927
assistant: Add Mistral support (#24879)
Closes #12519. Release Notes: - Added support for Mistral to the Assistant. --------- Co-authored-by: Marshall Bowers <git@maxdeviant.com>
Shidfar Hodizoda and Marshall Bowers created
5c5caf1
linux: Fix reload hangs for several minutes (#24882)
Closes #22666 This PR fixes the long wait time to open Zed (2 mins in my case) after reloading on Linux. This bug fix is funny: 1. We were using TCP for Zed instances to talk to each other. Reload was broken here too due to TCP connections not being killed on time. 2. [#11488](https://github.com/zed-industries/zed/pull/11488) PR fixed the TCP connection issue by adding a wait until it gets killed. I suppose at that time, this wait time was small. 3. Later, we changed how Zed talks to each other in [#11585](https://github.com/zed-industries/zed/pull/11585) by using Datagram and removing TCP. The new approach simply uses a `.sock` file and a file descriptor to check if some program is listening to it. 4. TCP check is now unnecessary, and it still wait for a long time (I suppose, TIME_WAIT time, don't quote me on this), even though we donβt use TCP anymore for this. This PR just removes that unnecessary TCP wait. Release Notes: - Fixed issue where reload hangs for several minutes on Linux.
smit created
39c9b1f
Gutter-highlight removed and added portions of expanded diff hunks separately (#24834)
cc @iamnbutler Release Notes: - Color gutter highlights separately for removed and deleted portions of git modification hunks Co-authored-by: Conrad <conrad@zed.dev>
Cole Miller and Conrad created
4aae0e2
welcome: Try Zed Edit Prediction (#24876)
Release Notes: - N/A --------- Co-authored-by: Danilo Leal <daniloleal09@gmail.com> Co-authored-by: Antonio Scandurra <me@as-cii.com> Co-authored-by: Marshall Bowers <git@maxdeviant.com>
Agus Zubiaga , Danilo Leal , Antonio Scandurra , and Marshall Bowers created
744579e
Move git status updates to a background thread #2 (#24722)
Follow-up of https://github.com/zed-industries/zed/pull/24307 Brings back the PR and fixes the issue with the git status not propagated, if computed too slow. Now, git repo update * waits in the background for all `scan_dir` repo status updates and triggers another status update send afterwards * ensures that the update sent is reported correctly (`scanning = true`) if either FS or status scan is running still * during worktree's git statuses updates, bumps `status_scan_id` to ensure the repo update is reported to all subscribers Release Notes: - Improved project panel's speed in large projects
Kirill Bulatov created
592e8fb
edit predictions: Fix cursor popover edit preview panic (#24866)
Release Notes: - Fixed a panic when displaying a whitespace-only line in the edit prediction preview --------- Co-authored-by: Antonio <antonio@zed.dev>
Agus Zubiaga and Antonio created
a618830
project: Fine-grained language server management (#24038)
Closes #ISSUE https://github.com/zed-industries/zed/pull/23804 Release Notes: - Improved detection of project roots for use by language servers. Closes #ISSUE Release Notes: - N/A *or* Added/Fixed/Improved ... --------- Co-authored-by: smit <0xtimsb@gmail.com> Co-authored-by: Henrikh Kantuni <henrikh.kantuni@gmail.com> Co-authored-by: Caleb! <48127194+kaf-lamed-beyt@users.noreply.github.com> Co-authored-by: Marshall Bowers <git@maxdeviant.com> Co-authored-by: Kirill Bulatov <kirill@zed.dev> Co-authored-by: Agus Zubiaga <agus@zed.dev> Co-authored-by: Danilo <danilo@zed.dev> Co-authored-by: Nate Butler <iamnbutler@gmail.com>
Piotr Osiewicz , smit , Henrikh Kantuni , Caleb! , Marshall Bowers , Kirill Bulatov , Agus Zubiaga , Danilo , and Nate Butler created
8d839fc
edit predictions: Fix manually requesting completions (#24860)
We were disabling edit predictions altogether when `show_edit_predictions` was set to `false`. However, even in that case, `editor::ShowEditPrediction` is supposed to let your request a prediction manually. Release Notes: - Fixed `editor::ShowEditPrediction` when `show_edit_predictions` is set to `false`.
Agus Zubiaga created
79ee01e
theme: Fix icon theme switching changing the theme (#24849)
Closes #24846 Release Notes: - Fixed an issue where changing the icon theme would change the theme.
Sanjeev Shrestha created