feat: try ctrl tab for switching to next window

This commit is contained in:
ayo 2026-06-26 11:25:19 +02:00
parent 505c51e009
commit 792116f3db

View file

@ -68,12 +68,15 @@ unbind %
# reload config file (change file location to your the tmux.conf you want to use) # reload config file (change file location to your the tmux.conf you want to use)
bind r source-file ~/.tmux.conf bind r source-file ~/.tmux.conf
# switch panes using Alt-arrow without prefix # switch panes using Ctrl + vim navigation
bind -n C-h select-pane -L bind -n C-h select-pane -L
bind -n C-l select-pane -R bind -n C-l select-pane -R
bind -n C-j select-pane -U bind -n C-j select-pane -U
bind -n C-k select-pane -D bind -n C-k select-pane -D
# switch windows using Ctrl + Tab
bind -n C-Tab next-window
# Enable mouse # Enable mouse
set -g mouse on set -g mouse on