feat: try ctrl tab for switching to next window
This commit is contained in:
parent
505c51e009
commit
792116f3db
1 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue