From 4e6086e2b02fa170c935c9c3ad183403b32f0cce Mon Sep 17 00:00:00 2001 From: Kartonrealista <63356574+Kartonrealista@users.noreply.github.com> Date: Sat, 6 Jul 2024 12:02:31 +0200 Subject: [PATCH] Update key_bind.rs --- src/key_bind.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);