- border focus color
- Text feature color
- Match & active match highlight color
Matches should be more legible now in both themes. `activeMatch` is still not hooked up on the rust side, so it won't take any effect yet.
Co-Authored-By: gibusu <95764254+gibusu@users.noreply.github.com>
`buildThemes.ts` had an incorrect path for generating the theme json files.
It probably happened when we did some reorganization of the styles directory.
Co-Authored-By: gibusu <95764254+gibusu@users.noreply.github.com>
Nate Butler
and
gibusu
created
00fb575
Merge pull request #802 from zed-industries/update-contacts-on-share
Click to expand commit body
Update contacts list when a project is shared
Antonio Scandurra
created
4e057da
Update contacts list when a project is shared
Antonio Scandurra
created
d17e9c0
Merge pull request #801 from zed-industries/randomized-test-improvements
Click to expand commit body
Introduce guest disconnection in randomized collaboration test
c065f28
Move assets to their own crate, load keymaps in vim tests
Click to expand commit body
Also, move assets folder to the top-level.
Co-authored-by: Keith Simmons <keith@zed.dev>
Max Brunsfeld
and
Keith Simmons
created
e0096ec
Move keymap_file module into settings crate
Click to expand commit body
Co-authored-by: Keith Simmons <keith@zed.dev
Max Brunsfeld
and
Keith Simmons
created
4b295f5
Handle editor cancel in pane in order to dismiss find toolbar
Keith Simmons
created
0ca4c99
Add logging when atlas allocator fails to allocate
Keith Simmons
created
3844634
Hold the state lock while responding to guest joining a project
Click to expand commit body
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Antonio Scandurra
and
Nathan Sobo
created
7abd3a9
Make atlas allocation fallable and skip rendering icons and paths when it fails
Keith Simmons
created
3c116e3
Reraise editor events in Project Search and activate workspace item from them
Keith Simmons
created
9a8b038
Replace synchronous `Store` lock with an async lock
Click to expand commit body
This also fixes some failures due to `broadcast` and `update_contacts_for_users`
being fallible. As part of this commit, these two functions don't return `Result`
anymore: the reason for this change is that we don't want a request to fail only
because a peer disconnected while we were trying to broadcast a message to them.
Antonio Scandurra
created
273ee0a
Acquire guest connection ids after save request has been forwarded
Click to expand commit body
This fixes a bug that would cause the server to broadcast the save
message to guests that have potentially left the project.
Antonio Scandurra
created
c3927c5
Simulate random guest disconnection and reconnection
Antonio Scandurra
created
f99a143
Distribute operation workload evenly across peers in randomized test
Click to expand commit body
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Antonio Scandurra
and
Nathan Sobo
created
02f96c6
Simulate parallelism among peers correctly in randomized collab test
Click to expand commit body
Previously they were all using the same foreground executor, which was
not properly simulating concurrency among tasks from different peers.
Antonio Scandurra
created
bb8dc61
Allow taking an `Arc<Deterministic>` in `[gpui::test]`-decorated tests
Antonio Scandurra
created
28f44a3
Merge pull request #787 from zed-industries/buffer-divergence
Click to expand commit body
Fix divergence bug when peer reconnects reusing a prior replica id
Antonio Scandurra
created
f9e0899
Fix divergence bug when peer reconnects reusing a prior replica id
Click to expand commit body
We forgot to observe the footprint of the reconnecting replica's prior
undos into the local clock. This could cause the replica to generate
edits with a version strictly smaller than what other peers may have
observed. As such, those peers would think they had already seen those
edits and skip them.