mirror of
https://shylinux.com/x/ContextOS
synced 2025-05-05 12:47:02 +08:00
16 lines
483 B
Plaintext
16 lines
483 B
Plaintext
source-file ~/.tmux.common
|
|
|
|
set -g mouse on
|
|
bind C-s copy-mode -e
|
|
bind -t vi-copy C-c copy-selection -x
|
|
bind -t vi-copy MouseDragEnd1Pane copy-selection -x
|
|
|
|
bind C-m display-panes "swap-pane -t %%"
|
|
bind C-u display-panes "move-pane -v -t %%"
|
|
bind C-v display-panes "move-pane -h -t %%"
|
|
|
|
bind u split-window -c "#{pane_current_path}"
|
|
bind v split-window -h -c "#{pane_current_path}"
|
|
bind U split-window -f -c "#{pane_current_path}"
|
|
bind V split-window -f -h -c "#{pane_current_path}"
|