mirror of
https://github.com/prurigro/darkcloud-tmuxconfig.git
synced 2024-11-23 07:34:10 -05:00
Bind N and P to moving to the next and previous session
This commit is contained in:
parent
f5d00f3a0e
commit
5835869a28
3 changed files with 9 additions and 0 deletions
|
@ -37,6 +37,7 @@
|
|||
| `W` | Write scrollback buffer to file |
|
||||
| `V` | Enter **copy mode** |
|
||||
| `<Ctrl>p` | Paste from the copy buffer |
|
||||
| `N` and `P` | Move to the next and previous session |
|
||||
|
||||
### Without Prefix
|
||||
|
||||
|
|
|
@ -107,6 +107,10 @@ bind Down select-pane -D
|
|||
bind Left select-pane -L
|
||||
bind Right select-pane -R
|
||||
#
|
||||
# bind N and P to next and previous session
|
||||
bind N switch-client -n
|
||||
bind P switch-client -p
|
||||
#
|
||||
# (without prefix) <alt><shift> + up,down,left and right to navigate between panes
|
||||
bind -n M-S-Up select-pane -U
|
||||
bind -n M-S-Down select-pane -D
|
||||
|
|
|
@ -107,6 +107,10 @@ bind Down select-pane -D
|
|||
bind Left select-pane -L
|
||||
bind Right select-pane -R
|
||||
#
|
||||
# bind N and P to next and previous session
|
||||
bind N switch-client -n
|
||||
bind P switch-client -p
|
||||
#
|
||||
# (without prefix) <alt><shift> + up,down,left and right to navigate between panes
|
||||
bind -n M-S-Up select-pane -U
|
||||
bind -n M-S-Down select-pane -D
|
||||
|
|
Loading…
Reference in a new issue