File tmux.conf changed (mode: 100644) (index f5aea3d..0dcf5cc) |
... |
... |
set -g display-panes-time 2000 |
25 |
25 |
set -g history-limit 100000 |
set -g history-limit 100000 |
26 |
26 |
|
|
27 |
27 |
# use vi-line shortcuts to yank text in copy-mode |
# use vi-line shortcuts to yank text in copy-mode |
28 |
|
bind -T copy-mode-vi 'v' send-keys -X begin-selection |
|
29 |
|
bind -T copy-mode-vi 'V' send-keys -X select-line |
|
30 |
|
bind -T copy-mode-vi '^v' send-keys -X rectangle-toggle |
|
31 |
|
bind -T copy-mode-vi 'y' send-keys -X copy-selection |
|
|
28 |
|
bind -T copy-mode-vi v send-keys -X begin-selection |
|
29 |
|
bind -T copy-mode-vi V send-keys -X select-line |
|
30 |
|
bind -T copy-mode-vi C-v send-keys -X rectangle-toggle |
|
31 |
|
bind -T copy-mode-vi y send-keys -X copy-selection |
32 |
32 |
|
|
33 |
33 |
# reload config (prefix + r) |
# reload config (prefix + r) |
34 |
34 |
bind r source ~/.tmux.conf \; \ |
bind r source ~/.tmux.conf \; \ |
|
... |
... |
bind - split-window -c "#{pane_current_path}" -v |
43 |
43 |
bind c new-window -c "#{pane_current_path}" |
bind c new-window -c "#{pane_current_path}" |
44 |
44 |
|
|
45 |
45 |
# duplicate prefix+n/p keys with prefix+<c-n>/<c-p> |
# duplicate prefix+n/p keys with prefix+<c-n>/<c-p> |
46 |
|
bind ^n next-window |
|
47 |
|
bind ^p previous-window |
|
|
46 |
|
bind C-n next-window |
|
47 |
|
bind C-p previous-window |
48 |
48 |
|
|
49 |
49 |
# move between panes using prefix + h/j/k/l |
# move between panes using prefix + h/j/k/l |
50 |
50 |
bind h select-pane -L |
bind h select-pane -L |