diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-30 00:50:16 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-30 00:50:16 +0100 |
commit | 15bc38edec39279f26969ca4b67126f6e544b831 (patch) | |
tree | c500f84a07c04acce18035b7635e93a2f710f162 /config/common/tmux | |
parent | 0e5e622952fe51588f1537e621c63cbe4a91c136 (diff) |
checkpoint
Diffstat (limited to 'config/common/tmux')
-rwxr-xr-x | config/common/tmux/tmux.conf | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/config/common/tmux/tmux.conf b/config/common/tmux/tmux.conf index 7929836..9b09e44 100755 --- a/config/common/tmux/tmux.conf +++ b/config/common/tmux/tmux.conf @@ -85,17 +85,17 @@ if-shell -b '[ "$(echo "$tmux_version < 3.0" | bc)" = 1 ]' \ if-shell -b '[ "$(echo "$tmux_version >= 3.0" | bc)" = 1 ]' \ "bind-key -n 'C-\\' if-shell \"$is_vim\" 'send-keys C-\\\\' 'select-pane -l'" -bind-key -T copy-mode-vi 'M-h' select-pane -L -bind-key -T copy-mode-vi 'M-j' select-pane -D -bind-key -T copy-mode-vi 'M-k' select-pane -U -bind-key -T copy-mode-vi 'M-l' select-pane -R -bind-key -T copy-mode-vi 'M-\' select-pane -l - +bind -T copy-mode-vi 'M-h' select-pane -L +bind -T copy-mode-vi 'M-j' select-pane -D +bind -T copy-mode-vi 'M-k' select-pane -U +bind -T copy-mode-vi 'M-l' select-pane -R +bind -T copy-mode-vi 'M-\' select-pane -l bind -n M-u previous-window bind -n M-i next-window -# Session navigeting with S-M-u|i +bind -n M-O last-window bind -n M-U switch-client -p bind -n M-I switch-client -n +bind -n M-O switch-client -l # Renaming bind n command-prompt "rename-window '%%'" bind N command-prompt "rename-session '%%'" |