tmux: add window renaming shortcuts

This commit is contained in:
Rob Watson 2021-03-29 11:39:20 +02:00
parent f05c957743
commit 336fa7c7b3
1 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,10 @@ setw -g mouse on
bind-key v split-window -h
bind-key s split-window -v
bind-key p new-window \; set window-status-style fg=white,bg=red
bind-key c new-window -n 'cli'
bind-key e new-window -n 'vim'
bind-key C rename-window 'cli'
bind-key E rename-window 'vim'
bind-key J resize-pane -D 5
bind-key K resize-pane -U 5