e992f84
collab 0.37.0
Max Brunsfeld created
e992f84
collab 0.37.0
Max Brunsfeld created
f2f3a93
Store the impersonator id on access tokens created via ZED_IMPERSONATE (#4108)
* Use the impersonator id to prevent these tokens from counting against the impersonated user when limiting the users' total of access tokens. * When connecting using an access token with an impersonator add the impersonator as a field to the tracing span that wraps the task for that connection. * Disallow impersonating users via the admin API token in production, because when using the admin API token, we aren't able to identify the impersonator.
Max Brunsfeld created
bfe7631
Invoke pane's focus_in handler when pane is focused directly (#4129)
Fixes a bug where, when focusing a pane directly, it failed to transfer focus to the active item.
Max Brunsfeld created
2e35d90
Invoke pane's focus_in handler when pane is focused directly
Max Brunsfeld created
9615eb8
Don't send follower events from other panes (#4127)
Co-Authored-By: Mikayla <mikayla@zed.dev> [[PR Description]] Release Notes: - Fixed a bug where following could scroll incorrectly
Conrad Irwin created
2835c9a
Don't send follower events from other panes
Co-Authored-By: Mikayla <mikayla@zed.dev>
Conrad Irwin and Mikayla created
7b9e7fe
Use regular info color for speaker borders (#4126)
This PR updates the speaker borders to use the regular `info` status color instead of the `info_border` color. This should provide more contrast and make it clearer as to who is speaking. Release Notes: - Made the active speakers' borders more visible when in a call.
Marshall Bowers created
49f8c1d
Wrap over picker's matches when reaching the start/end of the list (#4123)
Kirill Bulatov created
9506fa4
Start documenting display_map module
Piotr Osiewicz created
aef4547
Fix missing icons: set svg_renderer when assets are updated (#4124)
This fixes the missing icons in nightly. Regression was introduced in https://github.com/zed-industries/zed/pull/4122. Release Notes: - N/A
Mikayla Maki created
b30efc9
Fix missing icons: set svg_renderer when assets are updated
Co-authored-by: Mikayla <mikayla@zed.dev>
Thorsten Ball and Mikayla created
36ed5a3
Wrap over picker's matches when reaching the end of the list
Kirill Bulatov created
87046ef
Fix focus and re-focus of project-wide search (#4121)
This fixes the issue of `Cmd-shift-f` not refocusing the search bar when a project-wide search already exists. It also fixes the handlers for "search in new" and "new search". Release Notes: - N/A
Thorsten Ball created
006bc5a
Minor API adjustments to make my blog post clearer (#4122)
I don't want to clutter this post with the asset source, so I made it optional. I'm also checking in an example which helps me ensure my code examples are valid. Release Notes: - N/A
Nathan Sobo created
130ea79
Fix focus and re-focus of project-wide search
This fixes the issue of `Cmd-shift-f` not refocusing the search bar when a project-wide search already exists. It also fixes the handlers for "search in new" and "new search". Co-authored-by: Kirill <kirill@zed.dev>
Thorsten Ball and Kirill created
9e37232
Merge remote-tracking branch 'origin/main' into ownership-post
Nathan Sobo created
f916593
More adjustments for blog post
Nathan Sobo created
b6d8665
pane: stop propagation of drag/click events in resizing handle
This prevents focused editor from being scrolled while a pane is getting resized. Fixes: Mouse down to start an editor resize causes a scroll
Piotr Osiewicz created
1716838
Clean up view_release_notes() (#4119)
Forgot to push these changes in my last [PR](https://github.com/zed-industries/zed/pull/4112). Release Notes: - N/A
Joseph T. Lyons created
7c5fdb3
Clean up view_release_notes()
Joseph T. Lyons created
0a0921f
gpui: Bring back family and style names in font name suggestions
Piotr Osiewicz created
5d6af53
Remove unused `PlatformAtlas::clear` method (#4116)
Release Notes: - N/A
Antonio Scandurra created
233ae81
Refactor LanguageSever::fake into FakeLanguageServer::new (#4117)
This is just moving code around and doesn't change behaviour, but it's something Julia and I bumped into yesterday while writing docs. Release Notes: - N/A
Thorsten Ball created
5e6d1a4
Refactor LanguageSever::fake into FakeLanguageServer::new
This is just moving code around and doesn't change behaviour, but it's something Julia and I bumped into yesterday while writing docs.
Thorsten Ball created
82b48a6
Use a proper action when clicking navigate forward button (#4115)
Deals with https://github.com/zed-industries/community/issues/2428 Release Notes: - Fixed navigate forward button on click navigating backwards instead
Kirill Bulatov created
5594619
Remove unused `PlatformAtlas::clear` method
Antonio Scandurra created
b6786d5
Use a proper action when clicking navigate forward button
Kirill Bulatov created
29c81e0
Fix buffer search focus not working (#4113)
Follow-up of https://github.com/zed-industries/zed/pull/4100 When the Deploy action is called in the buffer with the buffer search bar already deployed, the focus should be on the search bar. Release Notes: - N/A
Kirill Bulatov created
aacb17e
Fix buffer search focus not working
When the Deploy action is called in the buffer with the buffer search bar already deployed, the focus should be on the search bar.
Kirill Bulatov created
9240a1a
Use try_global() (#4112)
Use `try_global()` in places where we are using the "if global exists, then give me the global" pattern. Release Notes: - N/A
Joseph T. Lyons created
b807e6f
Use try_global()
Joseph T. Lyons created
bef1b83
Add ownership post example
Nathan Sobo created
1d3ca8e
Adjust APIs for simpler examples in blog post
Nathan Sobo created
93d068a
Update verify_access_token doc comment
Max Brunsfeld created
9f04fd9
For impersonating access tokens, store impersonatee in the new column
This way, we don't need an index on both columns
Max Brunsfeld created
69bff7b
Exclude squawk rule forbidding regular-sized integers
Max Brunsfeld created
ab1bea5
Store the impersonator id on access tokens created via ZED_IMPERSONATE
* Use the impersonator id to prevent these tokens from counting against the impersonated user when limiting the users' total of access tokens. * When connecting using an access token with an impersonator add the impersonator as a field to the tracing span that wraps the task for that connection. * Disallow impersonating users via the admin API token in production, because when using the admin API token, we aren't able to identify the impersonator. Co-authored-by: Marshall <marshall@zed.dev>
Max Brunsfeld and Marshall created
933fb87
Fix editor selection issue (#4110)
Release Notes: - Fixes a bug where, editor selections would update in the wrong pane when split.
Mikayla Maki created
aa73510
Add typo detection to CI (#4107)
Adding the typos crate to our CI will take some doing, as we have several tests which rely on typos in various ways (e.g. checking state as the user types), but I thought I'd take a first stab at fixing what it finds. Release Notes: - N/A
Mikayla Maki created
58333b9
Adjust config
Mikayla created
6ea23d0
Fix canary
Mikayla created
4070eef
Use cargo to install typo check
Mikayla created
edb2045
Fix selection bug in editor causing selections to be un-ended
Mikayla created
9521f49
Clean up references in doc comments in `lsp` crate (#4109)
This PR cleans up a handful of references in doc comments in the `lsp` crate so that `rustdoc` will link and display them correctly. Release Notes: - N/A
Marshall Bowers created
9a3709d
Revert vscode theme changes
Mikayla created
ec2b299
settings: Suggest fonts bundled in Zed (#4102)
Fixes an issue where Zed Sans is not being suggested as a font. Release Notes: - N/A
Piotr Osiewicz created
078fd35
WIP
Mikayla created
17018fa
Update typos.toml
Mikayla Maki created
6cbc49e
Editor docs (#4097)
Release Notes: - N/A --------- Co-authored-by: Kirill <kirill@zed.dev>
Piotr Osiewicz and Kirill created
e3e3ef5
Add typos ci
Mikayla created