mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-04 18:15:21 +00:00
16 lines
259 B
Rust
16 lines
259 B
Rust
#[derive(Clone)]
|
|
pub struct SelectIndex(pub usize);
|
|
|
|
gpui::actions!(
|
|
menu,
|
|
[
|
|
Cancel,
|
|
Confirm,
|
|
SelectPrev,
|
|
SelectNext,
|
|
SelectFirst,
|
|
SelectLast
|
|
]
|
|
);
|
|
|
|
gpui::impl_internal_actions!(menu, [SelectIndex]);
|