From de115d0e927143d112b877788929bddf76d2ba7c Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Thu, 1 Aug 2024 23:08:17 +0200 Subject: [PATCH] tmux: fix rotation direction This is more intuitive, given the position of the `i` and `o` keys on the keyboard: - C-o: rotates clockwise - C-i: rotates counter-clockwise --- config/tmux/tmux.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index 303d788..80e9f78 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -46,8 +46,8 @@ bind -r > swap-window -d -t :+ bind -r < swap-window -d -t :- # Choosing layouts -bind -r C-o rotate-window -bind -r C-i rotate-window -D +bind -r C-o rotate-window -D +bind -r C-i rotate-window -U bind -r space next-layout bind C-m set main-pane-width 50% \; select-layout main-vertical