Make the scrolling with the mousewheel smooth

This commit is contained in:
Kuba Orlik 2026-06-14 14:49:51 +02:00
parent 5b30c7acc7
commit 50fa9306fd

View File

@ -1,2 +1,15 @@
# Enable mouse support
set -g mouse on
# make the scrolling smooth
bind-key -T copy-mode-vi WheelUpPane \
select-pane \; send-keys -X -N 1 scroll-up
bind-key -T copy-mode-vi WheelDownPane \
select-pane \; send-keys -X -N 1 scroll-down
bind-key -T copy-mode \
WheelUpPane select-pane \; send-keys -X -N 1 scroll-up
bind-key -T copy-mode \
WheelDownPane select-pane \; send-keys -X -N 1 scroll-down