From 82cb9ee5da2489965ad6105bfbbdeda5188142bf Mon Sep 17 00:00:00 2001 From: Henrik Bakken Date: Tue, 13 May 2025 10:42:30 +0200 Subject: [PATCH] tmux move-window --- tmux/tmux.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index bd72774..21ba31f 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -140,6 +140,18 @@ bind 8 join-pane -t :8 -h bind 9 join-pane -t :9 -h bind 0 join-pane -t :10 -h +# move windows +bind F1 move-window -t :1 +bind F2 move-window -t :2 +bind F3 move-window -t :3 +bind F4 move-window -t :4 +bind F5 move-window -t :5 +bind F6 move-window -t :6 +bind F7 move-window -t :7 +bind F8 move-window -t :8 +bind F9 move-window -t :9 +bind F10 move-window -t :10 + # Switch windows alt+number bind -n M-1 if-shell 'tmux select-window -t :1' '' 'new-window -t :1' bind -n M-2 if-shell 'tmux select-window -t :2' '' 'new-window -t :2'