From 978bcb889fd28bba3504085de9c41acf13918f35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Wed, 31 Jul 2024 18:35:40 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(tmux):=20add=20bindings=20for?= =?UTF-8?q?=20moving=20to=20the=20next=20and=20prev=20session?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/tmux/conf/binds.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/tmux/conf/binds.conf b/.config/tmux/conf/binds.conf index dbf9fa28..c04f406d 100644 --- a/.config/tmux/conf/binds.conf +++ b/.config/tmux/conf/binds.conf @@ -23,6 +23,10 @@ bind-key C command-prompt -p "Name of new window: " "new-window -c '#{pane_curre bind-key l next-window bind-key h previous-window +# Move to the next and prev session +bind j switch-client -n +bind k switch-client -p + # Swap windows bind -r "<" swap-window -d -t -1 bind -r ">" swap-window -d -t +1