diff --git a/zed/src/theme_selector.rs b/zed/src/theme_selector.rs index a6a54ec0845146599c1d3de897b5f8f75b23c7cb..f257b41ab8862a2ae739c8e585ee539c032ec098 100644 --- a/zed/src/theme_selector.rs +++ b/zed/src/theme_selector.rs @@ -38,7 +38,7 @@ pub fn init(cx: &mut MutableAppContext, app_state: &Arc) { cx.add_bindings(vec![ Binding::new("cmd-k cmd-t", "theme_selector:toggle", None).with_arg(app_state.clone()), - Binding::new("cmd-k shift-T", "theme_selector:reload", None).with_arg(app_state.clone()), + Binding::new("cmd-k t", "theme_selector:reload", None).with_arg(app_state.clone()), Binding::new("escape", "theme_selector:toggle", Some("ThemeSelector")) .with_arg(app_state.clone()), Binding::new("enter", "theme_selector:confirm", Some("ThemeSelector")),