Add application menu item to open default key bindings

This commit is contained in:
Max Brunsfeld 2022-07-05 12:28:04 -07:00
parent ea1f6d6e00
commit 8048758990
3 changed files with 74 additions and 25 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 Key Bindings",
action: Box::new(super::OpenDefaultKeymap),
},
MenuItem::Action {
name: "Select Theme",
action: Box::new(theme_selector::Toggle),