From 270e0175d961a7c0d0f2a8acd502253edfd13140 Mon Sep 17 00:00:00 2001 From: Eragos Date: Fri, 22 Jul 2016 19:25:33 +0200 Subject: [PATCH] tmux: use R to reorder windows --- .tmux.conf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.tmux.conf b/.tmux.conf index d65d3d5..5f84e77 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -138,7 +138,10 @@ bind m command-prompt -p "man page:" "split-window -h 'exec man %%'" bind M command-prompt -p "Man page:" "new-window -n 'man %1' 'exec man %1'" # Double tapping the prefix jumps to last window -bind-key C-b last-window +bind-key C-a last-window + +# R for reorder windows 1 3 6 9 => 1 2 3 4 +bind R move-window -r\; display-message "Windows reordered..." # special settings for MacOS if-shell 'test "$(uname)" = "Darwin"' 'source ~/.tmux-osx.conf'