a8efb41
Remove outdated TODOs
Joseph T. Lyons created
a8efb41
Remove outdated TODOs
Joseph T. Lyons created
47476fa
Fix label color for inactive tabs (#3899)
This PR fixes an issue where certain tabs were not using the correct color for their labels when they were inactive. Release Notes: - Fixed an issue where some inactive tabs were not using the correct label color.
Marshall Bowers created
32cd4d7
Render an empty placeholder when not showing file icons in the project panel (#3897)
This PR makes it so when we're not showing file icons in the project panel we render an empty placeholder instead of nothing. This prevents the indentation of the items in the file tree from changing based on the presence of the icon. Release Notes: - Fixed layout shift when `project_panel.file_icons` is set to `false`.
Marshall Bowers created
0c4e2ef
Fix terminal selection when cursor leaves terminal bounds
Max Brunsfeld created
88f0dc7
zed 0.119.1
Joseph T. Lyons created
47f24f9
Merge branch 'main' into v0.119.x
Joseph T. Lyons created
5e3d488
Fix some bugs in keymap handling (#3895)
- `base_keymap` setting was not respected, now it is - without a `~/.config/zed/keymap.json` file, we would fail to load the *default* keymap Co-authored-by: Marshall <marshall@zed.dev>
Max Brunsfeld and Marshall created
931bd68
Uncomment editor tests
Co-Authored-By: Julia <julia@zed.dev>
Conrad Irwin and Julia created
bf8f3e3
Unbork test relying on old keystroke behavior
Previously it would both send the keydown *and then* the action, now it send the action, and then because there was an action, does not send the keydown Co-Authored-By: Conrad Irwin <conrad@zed.dev>
Julia and Conrad Irwin created
2da314f
Fix font resolution for UI text so we render with the fallback font (#3893)
This PR updates the font resolution for shaped text to use the new `resolve_font` method on the text system. This makes it so we use the fallback font if the desired font cannot be found rather than rendering nothing. Release Notes: - Fixed an issue where nothing would render when the font set in `ui_font_family` was not found.
Marshall Bowers created
be426e6
Tidy up guest count
Conrad Irwin created
4dbec66
Return back old project search behavior as default.
Add a `workspace::DeploySearch` action and use it as a default for "cmd-shift-f" binding. This action opens existing search tab if it exists, or creates a new one otherwise. `workspace::NewSearch` action is still available and always opens an existing search tab.
Kirill Bulatov created
e4aa7ba
Try to load fallback fonts instead of panicking when a font is not found (#3891)
This PR adjusts our font resolution code to attempt to use a fallback font if the specified font cannot be found. Right now our fallback font stack is `Zed Mono`, followed by `Helvetica` (in practice we should always be able to resolve `Zed Mono` since we bundle it with the app). In the future we'll want to surface the ability to set the fallback font stack from GPUI consumers, and potentially even support specifying font stacks in the user settings (as opposed to a single font family). Release Notes: - Fixed a panic when trying to load a font that could not be found.
Marshall Bowers created
09b32e6
Attempt to run keystroke actions before attempting key listeners
Julia created
d2afc97
Tidy up branch
Conrad Irwin created
3d1023e
lsp: Do not cache initialization options
Piotr Osiewicz created
6335117
Fix version comparison in auto update (#3889)
Max Brunsfeld created
c209712
Fix version comparison in auto update (#3889)
Max Brunsfeld created
90fc1eb
Fix version comparison in auto update
Co-authored-by: Antonio Scandurra <antonio@zed.dev>
Max Brunsfeld and Antonio Scandurra created
d79b8e4
Fix `SendText`/`SendKeystroke` having the wrong context name in terminal
Co-Authored-By: Max Brunsfeld <max@zed.dev>
Julia and Max Brunsfeld created
4e1b987
Implement "open in terminal" (#3888)
Conrad Irwin created
8d07246
Prevent scrolling editor and resizing panels at the same time (#3887)
Release Notes: - Fixed a bug that would cause Zed to never stop resizing panels when the drag handle overlapped with an editor scrollbar.
Antonio Scandurra created
fcf7007
let search happen too
Conrad Irwin created
4e310b9
Implement "open in terminal"
Conrad Irwin created
dd89ecf
Show pointer hand on tab & give last tab border right (#3865)
Release Notes: - N/A
Julia created
427e7f6
Read only permissions for project panel too
Conrad Irwin created
6f4a08b
Prevent scrolling editor and resizing panels at the same time
This fixes a bug that would cause Zed to never stop resizing panels when the drag handle overlapped with an editor scrollbar. Co-Authored-By: Marshall <marshall@zed.dev>
Antonio Scandurra and Marshall created
6f140c8
WIP tinted buttons
Nate Butler created
a7550de
Show pointer hand on tab & give last tab border right
Julia created
9d146a2
Fix vim tests
Conrad Irwin created
e8d01f4
Merge remote-tracking branch 'origin/main' into v0.119.x
Antonio Scandurra created
7f62a17
Re-enable key bindings for `AssistantPanel` (#3885)
Release Notes: - Fixed a bug that caused `cmd-g` and `cmd-shift-g` to not work anymore in the assistant panel.
Antonio Scandurra created
5a1509e
Re-enable key bindings for `AssistantPanel`
Antonio Scandurra created
f141495
Fix border rendering (#3884)
After implementing it a while ago, our previous interpolation scheme didn't really make sense to me and was causing borders to be rendered incorrectly. We don't really draw backgrounds and borders as part of the same draw call anymore, but it seemed reasonable to have a correct implementation in the shader anyway. This commit uses Porter-Duff compositing (i.e., `over`) to produce a color that is the result of superimposing the border on top of the background. Then, we linearly interpolate towards the background color as we slide out of the border and into the background. Release Notes: - Fixed incorrect rendering of borders.
Antonio Scandurra created
3ab2062
Fix border rendering
After implementing it a while ago, our previous interpolation scheme didn't really make sense to me and was causing borders to be rendered incorrectly. We don't really draw backgrounds and borders as part of the same draw call anymore, but it seemed reasonable to have a correct implementation in the shader anyway. This commit uses Porter-Duff compositing (i.e., `over`) to produce a color that is the result of superimposing the border on top of the background. Then, we linearly interpolate towards the background color as we slide out of the border and into the background.
Antonio Scandurra created
5da0572
Delete generating-theme-types.md
Nate Butler created
5c32dd5
Better TestWindow support
Conrad Irwin created
c106d3e
Remove old theme license code
Nate Butler created
9fe0168
Remove styles dir
Nate Butler created
e5156d1
Clip `List` items that partially overflow (#3882)
Release Notes: - Fixed a visual bug that caused channels to overlap with the filter input.
Antonio Scandurra created
b78497b
Clip List items that partially overflow
Antonio Scandurra created
8ad7418
Fix quitting Zed when project was unshared (#3881)
Release Notes: - Fixed a bug that would disable `cmd-q` after a remote project was unshared.
Antonio Scandurra created
f6af7ab
Fix quitting Zed when project was unshared
Antonio Scandurra created
f4290c9
Show scrollbar even when buffer search highlights are outside viewport (#3880)
Release Notes: - Fixed a bug that prevented scrollbars from being shown when search matches were outside the viewport.
Antonio Scandurra created
f0afa3f
Show scrollbar even when buffer search highlights are outside viewport
Antonio Scandurra created
5a43cba
channels: Move name of the channel to the same line as the hash icon.
Piotr Osiewicz created
1d98132
Move telemetry settings check into telemetry module (#3877)
This is a small change I've been meaning to do to make it easier to call the telemetry report event methods. Release Notes: - N/A
Joseph T. Lyons created
2972ee8
Move telemetry settings check into telemetry module
Joseph T. Lyons created
c76fcb3
UI grab bag (#3875)
- Tidy up some ui crate docs - Update "checking" diagnostic color + add icon - Make scrollbar track transparent in all themes - Update border variant color in all themes - Use theme colors for muted/speaking indicators Release Notes: - N/A
Nate Butler created
77647fa
Use theme colors for muted/speaking indicators
Nate Butler created