diff --git a/src/key_bind.rs b/src/key_bind.rs index c2a234e..2d3fec1 100644 --- a/src/key_bind.rs +++ b/src/key_bind.rs @@ -63,7 +63,8 @@ pub fn key_binds() -> HashMap { bind!([Ctrl], Key::Character("0".into()), ZoomReset); bind!([Ctrl], Key::Character("-".into()), ZoomOut); bind!([Ctrl], Key::Character("=".into()), ZoomIn); - + bind!([Ctrl], Key::Character("+".into()), ZoomIn); + // Ctrl+Arrows and Ctrl+HJKL move between splits bind!([Ctrl, Shift], Key::Named(Named::ArrowLeft), PaneFocusLeft); bind!([Ctrl, Shift], Key::Character("H".into()), PaneFocusLeft);