Add app menu items for opening settings and keymap

This commit is contained in:
Max Brunsfeld 2022-05-27 13:06:35 -07:00
parent e1a05d451f
commit df4f3051bc

View file

@ -15,6 +15,14 @@ pub fn menus() -> Vec<Menu<'static>> {
action: Box::new(auto_update::Check),
},
MenuItem::Separator,
MenuItem::Action {
name: "Open Settings",
action: Box::new(super::OpenSettings),
},
MenuItem::Action {
name: "Open Key Bindings",
action: Box::new(super::OpenKeymap),
},
MenuItem::Action {
name: "Install CLI",
action: Box::new(super::InstallCommandLineInterface),