tmux: Scroll without selecting the pane

This commit is contained in:
2022-09-08 15:37:55 +02:00
parent 919e5c0a0b
commit 7d58be4365

View File

@@ -17,8 +17,9 @@ set -ga terminal-overrides '*:Ss=\E[%p1%d q:Se=\E[ q'
# `copy-mode`)
bind -n WheelUpPane \
if -F "#{||:#{pane_in_mode},#{mouse_any_flag}}" { send -M } { copy-mode -u }
bind -T copy-mode-vi WheelUpPane selectp \; send -XN5 scroll-up
bind -T copy-mode-vi WheelDownPane selectp \; send -XN5 scroll-down
# Scroll without selecting the pane
bind -T copy-mode-vi WheelUpPane send -XN5 scroll-up
bind -T copy-mode-vi WheelDownPane send -XN5 scroll-down
# Set C-a as new prefix
unbind C-b