diff --git a/sh/tmux.sh b/sh/tmux.sh index 8ec4c13..8700be4 100644 --- a/sh/tmux.sh +++ b/sh/tmux.sh @@ -218,5 +218,33 @@ bind-key t set-option -g mouse \\; display-message 'mouse = #{mouse}' # swap window bind-key M-Left swap-window -t -1 bind-key M-Right swap-window -t +1 + +# ╭──────────────────────────┬───────┬───────────╮ +# │ detach-client │ │ F6 │ +# │ new-window │ │ F2 │ +# │ next-window │ │ M-Right │ +# │ prefix │ C-b │ F12 │ +# │ previous-window │ │ M-Left │ +# │ select-pane -D │ │ C-S-Down │ +# │ select-pane -L │ │ C-S-Left │ +# │ select-pane -R │ │ C-S-Right │ +# │ select-pane -U │ │ C-S-Up │ +# │ set-option -g status off │ │ C-F10 │ +# │ set-option -g status on │ │ C-F1 │ +# │ set-option -g status 2 │ │ C-F2 │ +# │ set-option -g status 3 │ │ C-F3 │ +# │ set-option -g status 4 │ │ C-F4 │ +# │ set-option -g status 5 │ │ C-F5 │ +# │ switch-client -n │ │ M-Down │ +# │ switch-client -p │ │ M-Up │ +# ├─────────────────────┬────┴────┬──┴──────┬────╯ +# │ detach │ d │ │ +# │ set-option -g mouse │ │ t │ +# │ source-file │ │ r │ +# │ split-window -h │ % │ h │ +# │ split-window -v │ " │ v │ +# │ swap-window -t -1 │ │ M-Left │ +# │ swap-window -t +1 │ │ M-Right │ +# ╰─────────────────────┴─────────┴─────────╯ " }