853accc
Make theme selector match other selector styling
Keith Simmons created
853accc
Make theme selector match other selector styling
Keith Simmons created
99e34db
ensure that we set original theme when dismissing theme selector and fix some minor edge cases
Keith Simmons created
f15e317
Merge pull request #569 from zed-industries/refine-autoclose
Refine bracket auto-closing behavior
Antonio Scandurra created
7461417
Merge pull request #568 from zed-industries/delegation
Notify all language servers when a buffer gets saved
Antonio Scandurra created
97da93c
:lipstick:
Antonio Scandurra created
d9b3f04
Surround selections with brackets when they are non-empty
Antonio Scandurra created
f54ce8a
Autoclose bracket only if next char is whitespace or the end of a pair
Antonio Scandurra created
7546ede
Split language server initialization from construction
This gives clients a chance to register to notifications.
Antonio Scandurra created
ef1ec88
Remove delegate support from GPUI
We added this because we thought it would save some allocations when sending operations given that we could move them to the delegate upon notifying it, but the reality is that we serialize operations and that only requires a reference.
Antonio Scandurra created
0a9595b
Notify all language servers only when a buffer is saved
Other notifications such as opening, closing or changing a document are still tied to the buffer's language.
Antonio Scandurra created
b440a51
Make theme selector eagerly display the selected theme
Keith Simmons created
4cb4b99
Assign buffer's completion triggers from LSP capabilities
Also, make LanguageServer::new() async. The future resolves once the server is initialized.
Max Brunsfeld created
fc36c70
Add missing mouse button events and mouse history navigation
Co-Authored-By: Max Brunsfeld Co-Authored-By: Nathan Sobo
Keith Simmons , Max Brunsfeld , and Nathan Sobo created
317a1bb
Remove language servers from buffers
Co-Authored-By: Nathan Sobo <nathan@zed.dev> Co-Authored-By: Antonio Scandurra <antonio@zed.dev> Co-Authored-By: Keith Simmons <keith@zed.dev>
Antonio Scandurra , Nathan Sobo , Antonio Scandurra , and Keith Simmons created
6662ba6
Move `DidSaveTextDocument` notification from `Buffer` to `Project`
Antonio Scandurra created
51d5ed4
Remove unused `CloseBuffer` message
Antonio Scandurra created
d6c8fdb
Send buffer operations via the `Project` instead of `Worktree`
Antonio Scandurra created
b49951a
Implement `{ModelHandle,ViewHandle}::become_delegate`
Antonio Scandurra created
f2848a0
WIP: Start on a delegation... like events, but single consumer that takes ownership of event
Nathan Sobo created
03aa906
v0.19.0
Antonio Scandurra created
479c0dd
Merge pull request #560 from zed-industries/login-shell-env
Populate environment from shell
Nathan Sobo created
5cc5fa2
Populate environment from shell
Co-Authored-By: Keith Simmons <keith@zed.dev> Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Max Brunsfeld , Keith Simmons , and Nathan Sobo created
bb6ab83
Merge pull request #542 from zed-industries/guest-disconnections
Send heartbeats in both directions so the server can detect when clients disconnect
Max Brunsfeld created
1f5eab3
Reset peer's receive timeout when a message is received
* Make advance_clock more realistic by waking timers in order, instead of all at once. * Don't advance the clock when simulating random delays. Co-Authored-By: Keith Simmons <keith@zed.dev> Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Max Brunsfeld , Keith Simmons , and Nathan Sobo created
120f7bb
Add Keith to zed.toml
Max Brunsfeld created
e579da6
WIP: Introduce a read timeout
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Antonio Scandurra and Nathan Sobo created
00ba5df
Merge pull request #545 from zed-industries/halt-global-actions
Halt keystroke dispatch when a global action is dispatched
Nathan Sobo created
40c0b9e
Halt keystroke dispatch when a global action is dispatched
Nathan Sobo created
34bbc05
Merge pull request #543 from zed-industries/fix-closing-items
Ensure `active_item_index` doesn't go off the end when closing items
Antonio Scandurra created
711de5e
Ensure `active_item_index` doesn't go off the end when closing items
This fixes a bug introduced in #538, where closing the current tab would hide all the other tabs, if the current tab was the last one. Also, this commit manually sets the active item index instead of calling `Pane::activate_item`: even though this introduces a little bit of duplication, it prevents us from mistakenly calling `deactivate` on the wrong item. This would happen because `activate_item` looks at `self.active_item_index` to determine which item to deactivate before setting the new one. However, that index is potentially invalid because `::close_items` manipulates the `item_views` vector, so `activate_item` could end up calling `deactivate` on an item view that was not active in the first place.
Antonio Scandurra created
c7ddb66
Merge pull request #538 from zed-industries/close-inactive-items
Implement close inactive items
Antonio Scandurra created
4124308
Fix errors from conditional compilation in timer functions
Max Brunsfeld created
fab115e
Adjust test connection to treat the half-open state more realistically
When a network connection is lost without being explicitly closed by the other end, writes to that connection will error, but reads will just wait indefinitely. This allows the tests to exercise our heartbeat logic.
Max Brunsfeld created
9017a13
Send websocket pings from both the client and the server
Remove the client-only logic for sending protobuf pings. Co-Authored-By: Nathan Sobo <nathan@zed.dev> Co-Authored-By: Antonio Scandurra <me@as-cii.com>
Max Brunsfeld , Nathan Sobo , and Antonio Scandurra created
c61a1bd
Make timer method available on both foreground and background executors
Also, make it return a static future. Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Max Brunsfeld and Nathan Sobo created
1982a8c
Put vector clock serialization logic alongside other serialization logic
This way, the `clock` crate doesn't depend on the `rpc` crate. Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Max Brunsfeld and Nathan Sobo created
28bacab
Move Network test helper from util crate into text crate
This way, `util` does not depend on `clock`. Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Max Brunsfeld and Nathan Sobo created
9b8c782
Merge pull request #537 from zed-industries/disconnected-status
Render overlay after remote project becomes read-only
Nathan Sobo created
8b9f411
Use the macOS standard binding instead of VS Code's
Co-Authored-By: Antonio Scandurra <me@as-cii.com> Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
Nathan Sobo , Antonio Scandurra , and Max Brunsfeld created
3057b38
Implement close inactive items action
Co-Authored-By: Antonio Scandurra <me@as-cii.com> Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
Nathan Sobo , Antonio Scandurra , and Max Brunsfeld created
a72d58a
Merge branch 'main' into disconnected-status
Nathan Sobo created
d59451f
Fix tests after font update
Co-Authored-By: Antonio Scandurra <me@as-cii.com>
Nathan Sobo and Antonio Scandurra created
c38de32
:art:
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Antonio Scandurra and Nathan Sobo created
38313ab
Disable events when project becomes read-only
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Antonio Scandurra and Nathan Sobo created
77e913b
Blur focused view when project becomes read-only
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Antonio Scandurra and Nathan Sobo created
b21d91d
Render overlay after remote project becomes read-only
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Antonio Scandurra and Nathan Sobo created
4753264
Merge pull request #535 from zed-industries/update-zed-fonts
Update zed fonts to 1.2.0
Nate Butler created
38e32f3
Update zed fonts to 1.2.0
Nate Butler created
6ee5e96
Merge pull request #534 from zed-industries/create-buffers-via-project
Open untitled buffers via the `Project`
Antonio Scandurra created
82e4544
Merge pull request #533 from zed-industries/range-formatting
Use LSP range formatting when document formatting is not available
Antonio Scandurra created