6f78a16
fix editor height in buffer search, but the dancing is back
Click to expand commit body
Co-authored-by: Piotr <piotr@zed.dev>
KCaverly
and
Piotr
created
1601892
Focus terminal view on mouse click in terminal (#2852)
Click to expand commit body
Before, terminal view focused the parent (pane) instead and, if
terminal's search bar was open and focused, pane transferred the focus
back
Release Notes:
- Fixed terminal search focus not switching to terminal on mouse click
inside
d727ba1
Merge branch 'main' of github.com:zed-industries/zed into project_search_design
KCaverly
created
9bf227b
remove regex keymap, and made spacing consistent between search objects
Click to expand commit body
Co-authored-by: Piotr <piotr@zed.dev>
KCaverly
and
Piotr
created
11ecb7b
reorganize search bar, enable filters and disable select all during invalid states
Click to expand commit body
Co-authored-by: Piotr <piotr@zed.dev>
KCaverly
and
Piotr
created
139cbbf
Move gpui derives tests into gpui crate to avoid dependency cycles (#2851)
Click to expand commit body
`cargo run` on Zed project leads to rust-analyzer evantually emitting
`[ERROR project_model::workspace] cyclic deps:
gpui_macros(Idx::<CrateData>(269)) -> gpui(Idx::<CrateData>(264)),
alternative path: gpui(Idx::<CrateData>(264)) ->
gpui_macros(Idx::<CrateData>(269))`
error after loading the project.
The PR fixes this by moving away the test to the "root" project.
Release Notes:
- N/A
Kirill Bulatov
created
1c4be24
Move gpui derives tests into gpui crate to avoid dependency cycles
Click to expand commit body
`cargo run` on Zed project leads to rust-analyzer evantually emitting
`[ERROR project_model::workspace] cyclic deps:
gpui_macros(Idx::<CrateData>(269)) -> gpui(Idx::<CrateData>(264)),
alternative path: gpui(Idx::<CrateData>(264)) ->
gpui_macros(Idx::<CrateData>(269))`
error after loading the project.
The PR fixes this by moving away the test to the "root" project.
Kirill Bulatov
created
0524abf
Lazily initialize and destroy the audio handle state on call initiation and end
Mikayla
created
a8ecc1a
Add support for a measure function to the layout engine facade
This isn't quite an exact emulation, as instead of using one selection
that is magically in "column mode", we emulate it with a bunch of zed
multi-selections (one per line).
I think this is better, as it requires fewer changes to the codebase,
and lets you see the impact of any changes immediately on all lines.
Fixes: zed-industries/community#984
Conrad Irwin
created
1ffde7b
Implement calling contacts into your current channel
Click to expand commit body
Co-authored-by: Mikayla <mikayla@zed.dev>
Max Brunsfeld
and
Mikayla
created
2670e2c
Support `editor::SelectAll` in Terminal (#2848)
Click to expand commit body

Allows to use `editor::SelectAll`(`cmd-a` by default) in Terminal to
select all text in it, for future copying.
Currently, does not try to be smart and trim the selected whitespaces
after the last prompt, and copies them too.
Release Notes:
- Support `editor::SelectAll` in Terminal
Kirill Bulatov
created
88e094c
Associate additional file extensions with known languages (#2847)
Click to expand commit body
Going to do these in batches. Here is the first one.
Release Notes:
- Associated additional file extensions with known languages
(([#633](https://github.com/zed-industries/community/issues/633)),
([#1822](https://github.com/zed-industries/community/issues/1822))).
- C++: `cxx`, `hxx`, `inl`
- JavaScript: `cjs`
- Python: `mpy`
- TypeScript: `cts`, `d.cts`, `d.mts`, `mts`