Add application menu item to open the default settings

This commit is contained in:
Max Brunsfeld 2022-07-12 13:38:24 -07:00
parent 8464c03e65
commit 7750054a45
3 changed files with 115 additions and 22 deletions

View file

@ -26,6 +26,10 @@ pub fn menus() -> Vec<Menu<'static>> {
name: "Open Key Bindings",
action: Box::new(super::OpenKeymap),
},
MenuItem::Action {
name: "Open Default Settings",
action: Box::new(super::OpenDefaultSettings),
},
MenuItem::Action {
name: "Open Default Key Bindings",
action: Box::new(super::OpenDefaultKeymap),