Add tmux window shortkuts
dblume

dblume commited on 2023-11-15 10:35:29
Showing 1 changed files, with 5 additions and 0 deletions.

... ...
@@ -43,6 +43,11 @@ bind -n M-Right select-pane -R
43 43
 bind -n M-Up select-pane -U
44 44
 bind -n M-Down select-pane -D
45 45
 
46
+# Use prefix-! to break-pane a pane into a new window.
47
+# Use these to join another pane to this window (choosing which pane).
48
+bind-key S choose-window 'join-pane -v -s "%%"'
49
+bind-key V choose-window 'join-pane -h -s "%%"'
50
+
46 51
 # Use Tab to rotate full-screen panes like I do vim buffers
47 52
 bind -r Tab select-pane -t .+1 \; resize-pane -Z
48 53
 
49 54