tmux shift + l/r hotkey unbind

This commit is contained in:
parent d2091eea7c
commit e371188915

View File

@ -54,10 +54,6 @@ set -g pane-base-index 1
set-window-option -g pane-base-index 1
set-option -g renumber-windows on
# Shift arrow to switch windows
bind -n S-Left previous-window
bind -n S-Right next-window
# Shift Alt vim keys to switch windows
bind -n M-H previous-window
bind -n M-L next-window
@ -91,6 +87,11 @@ set -g @dracula-show-left-sep \uE0C0
# for right symbol (can set any symbol you like as separator)
set -g @dracula-show-right-sep \uE0B2
# Shift arrow to switch windows
unbind S-Left
unbind S-Right
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'