From 2eb9e5388fa483cb5cf3268f6bec8454a35611e0 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 18 Jan 2025 00:21:06 +0100 Subject: [PATCH] tmux/bind --- sh/tmux.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sh/tmux.sh b/sh/tmux.sh index 896f4bc..a12cbae 100644 --- a/sh/tmux.sh +++ b/sh/tmux.sh @@ -66,8 +66,8 @@ set-window-option -g window-status-style bg=black,fg=gray bind -n F6 detach-client # swap window with next or previous -bind-key M-Left swap-window -t -1 -bind-key M-Right swap-window -t +1 +bind M-Left swap-window -t -1 +bind M-Right swap-window -t +1 # create new window with F2 bind -n F2 new-window @@ -82,8 +82,8 @@ bind -n C-S-Right select-pane -R bind -n C-S-Up select-pane -U # horizontal split with H -bind-key h split-window -h +bind h split-window -h # vertical split with V -bind-key v split-window -v +bind v split-window -v " }