Add status bar link and Help menu item to open an issue on feedback repo

This commit is contained in:
Max Brunsfeld 2022-06-07 15:48:12 -07:00
parent 9d5111e86a
commit 8311458931
5 changed files with 65 additions and 0 deletions

View file

@ -253,6 +253,12 @@ pub fn menus() -> Vec<Menu<'static>> {
action: Box::new(command_palette::Toggle),
},
MenuItem::Separator,
MenuItem::Action {
name: "Give Feedback",
action: Box::new(crate::OpenBrowser {
url: super::feedback::NEW_ISSUE_URL.into(),
}),
},
MenuItem::Action {
name: "Zed.dev",
action: Box::new(crate::OpenBrowser {