From b85c875eb9756c4f77161619901185c4a66eef6d Mon Sep 17 00:00:00 2001 From: PiyushXCoder Date: Wed, 15 Jan 2025 19:37:40 +0530 Subject: [PATCH] ref(zellij): ctrl-j and ctrl-k to change tab --- zellij/config.kdl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zellij/config.kdl b/zellij/config.kdl index f90d20f..273b9b0 100644 --- a/zellij/config.kdl +++ b/zellij/config.kdl @@ -141,6 +141,9 @@ keybinds clear-defaults=true { bind "Alt -" { Resize "Decrease"; } bind "Alt [" { PreviousSwapLayout; } bind "Alt ]" { NextSwapLayout; } + + bind "Ctrl k" { GoToPreviousTab; SwitchToMode "Normal"; } + bind "Ctrl j" { GoToNextTab; SwitchToMode "Normal"; } } shared_except "normal" "locked" { bind "Enter" "Esc" { SwitchToMode "Normal"; }