tmux/bind

This commit is contained in:
Marc Beninca 2025-01-18 00:21:06 +01:00
parent 08aed79ee6
commit 2eb9e5388f
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -66,8 +66,8 @@ set-window-option -g window-status-style bg=black,fg=gray
bind -n F6 detach-client bind -n F6 detach-client
# swap window with next or previous # swap window with next or previous
bind-key M-Left swap-window -t -1 bind M-Left swap-window -t -1
bind-key M-Right swap-window -t +1 bind M-Right swap-window -t +1
# create new window with F2 # create new window with F2
bind -n F2 new-window 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 bind -n C-S-Up select-pane -U
# horizontal split with H # horizontal split with H
bind-key h split-window -h bind h split-window -h
# vertical split with V # vertical split with V
bind-key v split-window -v bind v split-window -v
" "
} }