Bind Ctrl+, to Settings

This commit is contained in:
Jeremy Soller 2024-02-22 11:25:39 -07:00
parent 235ebd6180
commit c118f2c969
No known key found for this signature in database
GPG key ID: D02FD439211AF56F

View file

@ -69,6 +69,7 @@ pub fn key_binds() -> HashMap<KeyBind, Action> {
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