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
ea663f3
Bump tree-sitter for tree-balancing bugfix
Max Brunsfeld
created
5041300
Merge pull request #2157 from zed-industries/vim-fixes
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>