From 593afb2d9ea8dacd45e8751e2e10be8df197c84d Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Wed, 4 Aug 2021 17:34:15 -0600 Subject: [PATCH] Change reload theme binding --- zed/src/theme_selector.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zed/src/theme_selector.rs b/zed/src/theme_selector.rs index a6a54ec084..f257b41ab8 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")),