From 8a8256e55569a1b23bc07fce7fcc55707788e076 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 15 Oct 2021 17:13:02 +0200 Subject: [PATCH] home: tmux: add binding for block selection --- home/tmux/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home/tmux/default.nix b/home/tmux/default.nix index 0a8a355..c9ccf16 100644 --- a/home/tmux/default.nix +++ b/home/tmux/default.nix @@ -46,6 +46,8 @@ in # Better vim mode bind-key -T copy-mode-vi 'v' send -X begin-selection bind-key -T copy-mode-vi 'y' send -X copy-selection-and-cancel + # Block selection in vim mode + bind-key -Tcopy-mode-vi 'C-v' send -X begin-selection \; send -X rectangle-toggle ''; };