summary refs log tree commit diff
path: root/.tmux.conf
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2017-05-08 16:35:33 -0400
committerJune McEnroe <june@causal.agency>2017-05-08 16:37:30 -0400
commit67a812bab22fdc9525e868d2319dc9a87486ec06 (patch)
tree9a1ef66836cf8700ced5e9829655480d9c35a340 /.tmux.conf
parentRemove option unnecessary in nvim 0.2 (diff)
downloadsrc-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.conf8
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