commit d2b6e2de06c14f4582aac76feb916d96ddf7e884 parent 826838cc9c139a8f9568a8d7312cf38b3496d516 Author: Chris Bracken <chris@bracken.jp> Date: Fri, 24 May 2024 23:43:25 -0700 tmux: use implicit prefix table The default behaviour of `bind-key` in tmux is to bind to the prefix key table. For consistency with other bindings in the config, this patch drops the explicit `-T prefix` in the two cases where I had used it. Diffstat:
M | .config/tmux/tmux.conf | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf @@ -26,8 +26,8 @@ bind-key -T copy-mode-vi 'y' send-keys -X copy-selection bind-key -T copy-mode-vi 'r' send-keys -X rectangle-toggle # Frequently used layouts. -bind-key -T prefix ^ split-window -h\; split-window -v\; select-pane -U\; select-pane -L -bind-key -T prefix \\ split-window -h\; split-window -h\; select-layout even-horizontal\; select-pane -L +bind-key ^ split-window -h\; split-window -v\; select-pane -U\; select-pane -L +bind-key \\ split-window -h\; split-window -h\; select-layout even-horizontal\; select-pane -L # Disable mouse. set-option -g mouse off