From 82192c7496741fb29b481aab98f68a8d043d2f35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Thu, 13 Mar 2025 20:08:05 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20config(tmux):=20change=20t?= =?UTF-8?q?he=20keymaps=20of=20next=20and=20prev=20windows=20because=20the?= =?UTF-8?q?y=20collide=20with=20others=20when=20working=20with=20neovim?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/tmux/conf/binds.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/tmux/conf/binds.conf b/.config/tmux/conf/binds.conf index 5c287905..0186daac 100644 --- a/.config/tmux/conf/binds.conf +++ b/.config/tmux/conf/binds.conf @@ -29,8 +29,8 @@ bind-key C command-prompt -p "Enter window name:" "new-window -n '%%'" bind-key l next-window bind-key h previous-window -bind-key -n M-l next-window -bind-key -n M-h previous-window +bind-key -n C-M-l next-window +bind-key -n C-M-h previous-window # Change window name bind-key r command-prompt -I "#W" "rename-window '%%'"