Commit log

770e80c zed 0.74.1

Max Brunsfeld created

dc10338 Merge pull request #2175 from zed-industries/restore-toggle-dock-binding

Click to expand commit body
Put back shift-escape binding for FocusDock action

Max Brunsfeld created

51aea3a v0.74.x preview

Joseph Lyons created

bcf7a32 Update pull_request_template.md

Joseph T. Lyons created

fbd2398 Merge pull request #2161 from zed-industries/community/3-reveal-in-finder

Click to expand commit body
Introduce Reveal in Finder

Petros Amoiridis created

114eef8 Merge pull request #2170 from zed-industries/fix-persistent-lsp-messages

Click to expand commit body
Fix LSP status messages persisting

Antonio Scandurra created

5df50e2 Add timeouts to HTTP client

Antonio Scandurra created

7a667f3 Use open_url from the platform module

Click to expand commit body
And remove the open function from the `util` crate.

Petros Amoiridis created

2482a1a Add timeout to HTTP requests during `npm info` and `npm fetch`

Antonio Scandurra created

7641965 Merge pull request #2169 from zed-industries/improve-autocomplete

Click to expand commit body
Score matches case-sensitively when query contains an uppercase char

Antonio Scandurra created

8db131a Score matches case-sensitively when query contains an uppercase char

Antonio Scandurra created

4f1e8c9 Merge pull request #2168 from zed-industries/auto-update-setting

Click to expand commit body
Add auto update setting

Mikayla Maki created

c2de0f6 Add auto update setting

Mikayla Maki created

17e8172 Merge pull request #2167 from zed-industries/clear-terminal-highlights

Click to expand commit body
Reset search matches when the terminal is cleared

Mikayla Maki created

8e9d95f Fix error where terminal search matches wouldn't be updated when clearing

Mikayla Maki created

88c6b89 Merge pull request #2165 from zed-industries/toggle-soft-wrap

Click to expand commit body
Introduce `editor: toggle soft wrap` bound to `alt-z`

Antonio Scandurra created

1012cea Soft wrap at editor width if it's narrower than preferred line length

Antonio Scandurra created

4a2b7e4 Use `alt-z` to toggle soft wrap in active editor

Click to expand commit body
When there isn't a default soft-wrapping for the active editor, we
will soft wrap at the editor width. This is consistent with Visual
Studio Code.

Antonio Scandurra created

6c0b35a Merge pull request #2164 from zed-industries/fix-surround-rust-star

Click to expand commit body
Surround with bracket only when opening brace is 1 character long

Antonio Scandurra created

888fcb5 Surround with bracket only when opening brace is 1 character long

Antonio Scandurra created

015b8db Introduce reveal_path in Platform

Click to expand commit body
And implement it for MacPlatform, and instead of using an external process to run `open`, use the NSWorkspace selectFile instance method.

Petros Amoiridis created

ebe1fa7 Merge pull request #2163 from zed-industries/quick-invite-bug

Click to expand commit body
Avoid creating more than one room when inviting multiple people at once

Antonio Scandurra created

7be868e Avoid creating more than one room when inviting multiple people at once

Click to expand commit body
Previously, when initiating a call by calling multiple people, only
the first person would get the call while all the others would briefly
show a "pending" status but never get the call.

This would happen because `ActiveCall` was trying to a create a different
room for each person called, because the original room creation hadn't finished
and so a `ModelHandle<Room>` wasn't being store in the active call.

With this commit, only one room can be created at any given time and further
invites have to wait until that room creation is done.

Antonio Scandurra created

087d516 Fix test that wasn't properly verifying disconnection from livekit

Antonio Scandurra created

5041300 Merge pull request #2157 from zed-industries/vim-fixes

Click to expand commit body
Vim fixes

Kay Simmons created

2c9199f fix build error

Kay Simmons created

327932b Remove catch all keymap and KeyPressed action

Kay Simmons created

4590607 fix sqlez warning, introduce tab and enter bindings to vim for inputing tab and enter text when waiting for text

Kay Simmons created

3d53336 More vim fixes and move some more things out of app.rs

Kay Simmons created

c1812dd fix issue with single line editors in vim not properly unhooking vim mode bindings

Kay Simmons created

d80dba1 Switch from vec to smallvec

Mikayla Maki created

0a50d27 Merge pull request #2158 from zed-industries/split-feedback-editor

Click to expand commit body
Split up feedback_editor.rs

Joseph T. Lyons created

01a590a Merge pull request #2160 from zed-industries/remove-toggle-right-sidebar-command

Click to expand commit body
Remove toggle right sidebar command

Joseph T. Lyons created

d42d495 Remove toggle right sidebar command

Joseph Lyons created

9143790 Include code only on macOS

Click to expand commit body
Co-Authored-By: Mikayla Maki <mikayla.c.maki@gmail.com>

Petros Amoiridis and Mikayla Maki created

b31813f Split concepts out into self contained files in feedback editor

Kay Simmons created

912c396 Merge pull request #2156 from zed-industries/fix-atelier-cave-license

Click to expand commit body
Update the atelier cave license file

Mikayla Maki created

436ab6e Fix other atelier license

Mikayla Maki created

889b156 Update the atelier cave license file

Mikayla Maki created

135dcf1 Merge pull request #2154 from zed-industries/fix-tooltip-crash

Click to expand commit body
Don't render tooltip keystroke label if there's no focused view

Mikayla Maki created

5d23aaa Introduce an open function

Click to expand commit body
And refactor some of the older code to simplify it

Co-Authored-By: Mikayla Maki <mikayla.c.maki@gmail.com>

Petros Amoiridis and Mikayla Maki created

a789476 Introduce reveal_in_finder function

Click to expand commit body
And use this function in a new Reveal in Finder option of the project panel context menu.

Co-Authored-By: Mikayla Maki <mikayla.c.maki@gmail.com>

Petros Amoiridis and Mikayla Maki created

da5a6a8 Don't render tooltip keystroke label if there's no focused view

Click to expand commit body
Co-authored-by: Antonio Scandurra <antonio@zed.dev>

Nathan Sobo and Antonio Scandurra created

7de04ab Merge pull request #2146 from zed-industries/feedback-editor-polish

Click to expand commit body
Feedback editor polish

Joseph T. Lyons created

373e88e Merge pull request #2147 from zed-industries/fix-pyright

Click to expand commit body
Always respond to language server, even when its requests are malformed

Antonio Scandurra created

c3a8885 Always respond to language server, even when its requests are malformed

Click to expand commit body
This was causing Pyright to get stuck waiting for a response when sending
us the `workspace/configuration` request. For some reason, after upgrading
to Pyright 1.1.293, `scopeUri` is being sent as an empty string sometimes,
which causes serde to error when trying to deserialize that request.

Co-Authored-By: Petros Amoiridis <petros@zed.dev>

Antonio Scandurra and Petros Amoiridis created

57e10ce Style info text

Joseph Lyons created

a9c2f42 Move string to variable

Joseph Lyons created

83f9d51 Fix layout of elements in the feedback editor's toolbar

Click to expand commit body
Co-Authored-By: Kay Simmons <3323631+Kethku@users.noreply.github.com>
Co-Authored-By: Julia <30666851+ForLoveOfCats@users.noreply.github.com>

Joseph Lyons , Kay Simmons , and Julia created

767d2f9 Merge pull request #2134 from zed-industries/fix-action-keystroke-bugs

Click to expand commit body
Fix several action dispatching bugs

Mikayla Maki created