tmux: use R to reorder windows

This commit is contained in:
2016-07-22 19:25:33 +02:00
parent 43ccab1585
commit 270e0175d9

View File

@@ -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'