c8cb114
Clean up how we open the recent projects picker (#3526)
Click to expand commit body
This PR performs some light cleanup of how we open the recent projects
picker, to bring it more in-line with our other picker code.
Release Notes:
- N/A
This PR ports the `recent_projects` crate to Zed2 (`recent_projects2`).
Absent from this PR is wiring up the "Recent Projects" item in the title
bar. We'll come back to that soon.
Release Notes:
- N/A
Fixes a build failure on CI:
https://github.com/zed-industries/zed/actions/runs/7120057787/job/19387718091
```
2023-12-06 21:26:40.468791 +00:00:00 [ERROR] `cargo metadata` exited with an error: Updating crates.io index
error: failed to select a version for `async-compression`.
... required by package `zed2 v2.0.0-nightly (/Users/administrator/actions-runner-2/_work/zed/zed/crates/zed2)`
versions that meet the requirements `^0.3` (locked to 0.3.15) are: 0.3.15
the package `zed2` depends on `async-compression`, with features: `futures-bufread-nightly` but `async-compression` does not have these features.
```
a8d9679
Enable buffer font size adjustment in zed2 (#3523)
Max Brunsfeld
created
b72c54f
Don't load the Vim keymap temporarily (#3522)
Click to expand commit body
This PR removes the loading of the Vim keymap temporarily.
This cuts down on the noise from all of the Vim-related action warnings.
We can resume loading the Vim keymap once we're ready to add Vim
support.
Release Notes:
- N/A
Marshall Bowers
created
89c8a7c
Enable buffer font size adjustment in zed2
This PR fixes an issue where tooltips weren't being shown on selected
buttons.
We now always show tooltips on buttons that have one.
Release Notes:
- N/A
ebddb61
Do not run the same workflow concurrently on non-main branches (#3518)
Click to expand commit body
<img width="1376" alt="image"
src="https://github.com/zed-industries/zed/assets/2690773/681cca85-e1b9-4a99-8363-60c931ba1393">
For any push (or force-push) into a branch, a separate CI workflow is
run.
This is rather worker-consuming, esp. given the fact that GitHub will
wait for the last job to update PR's status.
So cancel every old job for the same branch if it's not `main`.
CI run on `main` might catch a regression brought in by specific PR
merged, so run CI on every commit due to that.
Release Notes:
- N/A
Kirill Bulatov
created
62c41e2
Use distinct version for zed2, append git hash to its nightly version (#3507)
Click to expand commit body
Current panic reports are now harder to tell apart by the following
criteria:
* nightly or preview or stable
* zed2 or zed1

Current PR adds uses a different version for zed2 (2.0.0, selected
relatively arbitrary as zed2 is nothing officially released now) and
adds a `-nightly` suffix to the version number of the nightly bundle.
Release Notes:
- N/A
Kirill Bulatov
created
b94c335
Do not run the same workflow concurrently on non-main branches
Kirill Bulatov
created
6bbb164
Fix propagation of active item to followers
Click to expand commit body
Enable channel buffer integration tests.
Max Brunsfeld
created
e9dcca7
Initialize channel notes to register the view as followable
Max Brunsfeld
created
1ec81e0
Allow opening channel notes from the channel list
5644815
Use a better name for zed2 inlay style field
Kirill Bulatov
created
9e1d797
Use distinct version for zed2, append git hash to its nightly version
Kirill Bulatov
created
ec798e6
Pass proper theme colors for inlays and suggestions (#3517)
Click to expand commit body
<img width="1728" alt="image"
src="https://github.com/zed-industries/zed/assets/2690773/f6f1e24f-71fe-4a2e-9bcf-9e98861c0da4">

Now inlays are visible in all zed2 themes, but
* always have a blue color which is the same as some theme colors
* not other hint-related style changes like font width, background, etc.
seem to exist in the theme, ergo not propagated.
In general though, people want those style changes applied to their
hints, so we might want to do something about it later.
I've left a `// todo!("what about the rest of the highlight style parts
for inlays and suggestions?")` in the corresponding places for that.
Release Notes:
- N/A
Kirill Bulatov
created
d7473ad
Document geometry module and replace `zero` method with `default` (#3515)
Click to expand commit body
Nothing earth-shattering here, but all our geometry types are now fully
documented.
Release Notes:
- N/A
Nathan Sobo
created
5ebf1d9
Put ToggleZoom key binding back into the block with no context (#3516)
Click to expand commit body
Fixes a regression in zed1 from
https://github.com/zed-industries/zed/pull/3491
Max Brunsfeld
created
f76e1cf
Pass proper theme colors for inlays and suggestions
Kirill Bulatov
created
489c25a
Put ToggleZoom key binding back into the block with no context
This PR fixes the layout for terminal tabs.
We need to use an `h_stack` here to get the icon and the label to
position themselves next to each other instead of one on top of the
other.
Release Notes:
- N/A