feat: add metadata to all commands
This commit is contained in:
parent
bdd16f43fb
commit
d75dcd7b84
13 changed files with 221 additions and 6 deletions
|
@ -342,12 +342,15 @@ const cmds = struct {
|
|||
pub fn open_recent_menu_down(self: *Self, _: Ctx) Result {
|
||||
self.menu.select_down();
|
||||
}
|
||||
pub const open_recent_menu_down_meta = .{ .interactive = false };
|
||||
|
||||
pub fn open_recent_menu_up(self: *Self, _: Ctx) Result {
|
||||
self.menu.select_up();
|
||||
}
|
||||
pub const open_recent_menu_up_meta = .{ .interactive = false };
|
||||
|
||||
pub fn open_recent_menu_activate(self: *Self, _: Ctx) Result {
|
||||
self.menu.activate_selected();
|
||||
}
|
||||
pub const open_recent_menu_activate_meta = .{ .interactive = false };
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue