New bind-key vi-like buffer: C-b start typing window name to select it.
This commit is contained in:
parent
10e2bbd1c5
commit
0e6f35e9f5
|
@ -129,6 +129,12 @@ bind ^V run "tmux set-buffer -- \"$(xclip -o -selection clipboard)\"; tmux paste
|
|||
bind-key -t vi-copy 'v' begin-selection
|
||||
bind-key -t vi-copy 'y' copy-selection
|
||||
|
||||
# Window selection by name
|
||||
unbind b
|
||||
bind-key b command-prompt "find-window '%%'"
|
||||
unbind C-b
|
||||
bind-key C-b command-prompt "find-window '%%'"
|
||||
|
||||
# Détacher tmux
|
||||
unbind ^D
|
||||
bind ^D detach
|
||||
|
|
Loading…
Reference in New Issue