From 7805bb41119682245c431e527f0b0b5f72dabdcd Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Tue, 8 Feb 2022 12:37:55 +0530 Subject: [PATCH] tmux: Clean up uses of bind-key bind is an alias to bind-key. --- tmux/.tmux.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index d1aca19..2798668 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -82,9 +82,9 @@ bind 8 select-pane -t 8 bind 9 select-pane -t 9 bind P paste-buffer -bind-key -T copy-mode-vi v send-keys -X begin-selection -bind-key -T copy-mode-vi y send-keys -X copy-selection -bind-key -T copy-mode-vi r send-keys -X rectangle-toggle +bind -T copy-mode-vi v send-keys -X begin-selection +bind -T copy-mode-vi y send-keys -X copy-selection +bind -T copy-mode-vi r send-keys -X rectangle-toggle bind S command-prompt -p 'Save history to filename:' -I '/tmp/tmux.history' 'capture-pane -S - -E -; save-buffer %1 ; delete-buffer'