mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 11:29:25 +00:00
Add app menu items for opening settings and keymap
This commit is contained in:
parent
e1a05d451f
commit
df4f3051bc
1 changed files with 8 additions and 0 deletions
|
@ -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),
|
||||
|
|
Loading…
Reference in a new issue