959b296
Revert "Decouple workspace from call (#3380)"
Click to expand commit body
This reverts commit 6da57cbc6e33a7d1ede533ecc11948292feb22f3, reversing
changes made to 62b18437044c9e2b7e4ef2ba24fbbf12444a48c7.
Also, adjust new code that was written using the "call handler".
c10d8a8
Fix cursor styles not displaying properly (#3493)
Click to expand commit body
This PR fixes an issue where an element with a cursor style set would
not update the cursor when hovering over it.
Previously the cursor style would only appear by interacting with the
element in some way, for instance, by clicking on the element or by
having a `.hover` with some other style being applied.
Release Notes:
- N/A
Previously we were using a function in `editor` to combine syntax
highlighting and fuzzy match positions, it would operate on the full
text as put into the label. However we now have a method `ranges` on
`StringMatch` itself which operates on just the match text.
The outline view has some pretty specific behavior around path/normal
matches and how they are highlighted. So let's just give the match the
full text before it leaves the search function so it can freely index
b212aab
Add support for copying diagnostic messages to the clipboard (#3489)
Click to expand commit body
This PR adds support for copying diagnostics messages to the clipboard.
This was already working, but we were missing implementations
clipboard-related methods in the `TestPlatform` that were causing the
tests to fail when the copying functionality was added.
Release Notes:
- N/A
[[PR Description]]
This will get updated – I need to get the template derek used for the
new preview icon. Sorry for the jank in advance.
Release Notes:
- N/A
[[PR Description]]
- Add pane empty state
- Ensure tab bar doesn't resize when a tab is added
- Make ButtonLike respect the style of a disabled button
- Add additional cursors to gpui2
Release Notes:
- N/A
2108ddf
Defer activating Subscriptions that are invoked as a part of an effect.
Click to expand commit body
Fixes test test_edit_events.
Co-authored-by: Antonio <antonio@zed.dev>
Piotr Osiewicz
and
Antonio
created
ee23fa4
Disable instance handshake in dev builds (#3485)
Click to expand commit body
It feels like every week or two someone hits this and is confused about
why the app isn't launch, been meaning to disable this in dev builds for
a while. This does mean that it'll be possible to hit the local DB lock
panic in a dev build if you run it multiple times but that is so rare
that it seems preferable
Release Notes:
- N/A
Julia
created
118c9b5
Ensure disabled buttons don't have interaction styles
Nate Butler
created
b9a917f
Fix up condition not checking the condition at the start.
Click to expand commit body
Co-authored-by: Antonio <antonio@zed.dev>
Piotr Osiewicz
and
Antonio
created
7dc22fe
Prevent tab bar from growing in height when a tab is added
We've investigated another spurious failure, this time with test_multiple_excerpts_large_multibuffer; sadly it didn't really get us anywhere, so for now we're relaxing an assert.
Co-authored-by: Kirill <kirill@zed.dev>
Returned highlights were okay, but the test was trying to normalize the output by sorting the highlights by color. The ordering is different between gpui1 Color and gpui2 Hsla.