File tmux.conf changed (mode: 100644) (index edd31e9..3cfa373) |
... |
... |
bind -T copy-mode-vi V send-keys -X select-line |
36 |
36 |
bind -T copy-mode-vi C-v send-keys -X rectangle-toggle |
bind -T copy-mode-vi C-v send-keys -X rectangle-toggle |
37 |
37 |
bind -T copy-mode-vi y send-keys -X copy-selection |
bind -T copy-mode-vi y send-keys -X copy-selection |
38 |
38 |
|
|
|
39 |
|
# copy copy-mode selection into primary selection of X |
|
40 |
|
bind -T copy-mode-vi c send-keys -X copy-pipe-and-cancel "xsel --primary --input" |
|
41 |
|
# copy copy-mode selection into clipboard of X |
|
42 |
|
bind -T copy-mode-vi C send-keys -X copy-pipe-and-cancel "xsel --clipboard --input" |
|
43 |
|
|
39 |
44 |
# reload config (prefix + r) |
# reload config (prefix + r) |
40 |
45 |
bind r source ~/.tmux.conf \; \ |
bind r source ~/.tmux.conf \; \ |
41 |
46 |
display "Configuration reloaded!" |
display "Configuration reloaded!" |
|
... |
... |
set -g status-right-length 50 |
83 |
88 |
|
|
84 |
89 |
# display status bar at the top |
# display status bar at the top |
85 |
90 |
set -g status-position top |
set -g status-position top |
86 |
|
|
|
87 |
|
# copy copy-mode selection into primary selection of X |
|
88 |
|
bind -T copy-mode-vi c send-keys -X copy-pipe-and-cancel "xsel --primary --input" |
|
89 |
|
# copy copy-mode selection into clipboard of X |
|
90 |
|
bind -T copy-mode-vi C send-keys -X copy-pipe-and-cancel "xsel --clipboard --input" |
|