diff --git a/crates/collab_ui/src/collab_titlebar_item.rs b/crates/collab_ui/src/collab_titlebar_item.rs
index 2df240564e..1f82188667 100644
--- a/crates/collab_ui/src/collab_titlebar_item.rs
+++ b/crates/collab_ui/src/collab_titlebar_item.rs
@@ -698,9 +698,9 @@ impl CollabTitlebarItem {
ContextMenu::build(cx, |menu, _| {
menu.action("Settings", zed_actions::OpenSettings.boxed_clone())
.action("Extensions", extensions_ui::Extensions.boxed_clone())
- .action("Theme", theme_selector::Toggle.boxed_clone())
+ .action("Theme...", theme_selector::Toggle.boxed_clone())
.separator()
- .action("Share Feedback", feedback::GiveFeedback.boxed_clone())
+ .action("Share Feedback...", feedback::GiveFeedback.boxed_clone())
.action("Sign Out", client::SignOut.boxed_clone())
})
.into()
@@ -722,10 +722,10 @@ impl CollabTitlebarItem {
.menu(|cx| {
ContextMenu::build(cx, |menu, _| {
menu.action("Settings", zed_actions::OpenSettings.boxed_clone())
- .action("Theme", theme_selector::Toggle.boxed_clone())
+ .action("Theme...", theme_selector::Toggle.boxed_clone())
.action("Extensions", extensions_ui::Extensions.boxed_clone())
.separator()
- .action("Share Feedback", feedback::GiveFeedback.boxed_clone())
+ .action("Share Feedback...", feedback::GiveFeedback.boxed_clone())
})
.into()
})
diff --git a/crates/zed/src/app_menus.rs b/crates/zed/src/app_menus.rs
index 12a88ed216..cde567318c 100644
--- a/crates/zed/src/app_menus.rs
+++ b/crates/zed/src/app_menus.rs
@@ -1,4 +1,6 @@
+use collab_ui::collab_panel;
use gpui::{Menu, MenuItem, OsAction};
+use terminal_view::terminal_panel;
pub fn app_menus() -> Vec