From c118f2c969a02be6173c364f38157d348fe2d279 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 22 Feb 2024 11:25:39 -0700 Subject: [PATCH] Bind Ctrl+, to Settings --- src/key_bind.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/key_bind.rs b/src/key_bind.rs index d6774c7..6aa77e4 100644 --- a/src/key_bind.rs +++ b/src/key_bind.rs @@ -69,6 +69,7 @@ pub fn key_binds() -> HashMap { bind!([Ctrl, Shift], Key::Character("T".into()), TabNew); bind!([Ctrl, Shift], Key::Character("V".into()), Paste); bind!([Ctrl, Shift], Key::Character("W".into()), TabClose); + bind!([Ctrl], Key::Character(",".into()), Settings); // Ctrl+Alt+D splits horizontally, Ctrl+Alt+R splits vertically, Ctrl+Shift+X maximizes split //TODO: Adjust bindings as desired by UX