diff options
author | June McEnroe <june@causal.agency> | 2017-05-08 16:35:33 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-05-08 16:37:30 -0400 |
commit | 67a812bab22fdc9525e868d2319dc9a87486ec06 (patch) | |
tree | 9a1ef66836cf8700ced5e9829655480d9c35a340 | |
parent | Remove option unnecessary in nvim 0.2 (diff) | |
download | src-67a812bab22fdc9525e868d2319dc9a87486ec06.tar.gz src-67a812bab22fdc9525e868d2319dc9a87486ec06.zip |
Fix copy mode bindings for tmux 2.4
Incompatible change that makes no sense to me.
Diffstat (limited to '')
-rw-r--r-- | .tmux.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.tmux.conf b/.tmux.conf index c0343d31..b47a8414 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -28,10 +28,10 @@ bind -r + resize-pane -D 1 bind p paste-buffer bind Escape copy-mode -bind -t vi-copy i cancel -bind -t vi-copy v begin-selection -bind -t vi-copy C-v rectangle-toggle -bind -t vi-copy y copy-selection +bind -T copy-mode-vi i send -X cancel +bind -T copy-mode-vi v send -X begin-selection +bind -T copy-mode-vi C-v send -X rectangle-toggle +bind -T copy-mode-vi y send -X copy-selection set -g status-position top set -g status-style bg=black,fg=white |