最後活躍 1752705706

修訂 6cbc129c8cf77351f161664cd55f51ded2c006d4

tmux_mouse 原始檔案
1# Enabling mouse support for scrolling only
2set -g mouse on
3
4# Allow text selection while holding down the Shift key
5bind -T copy-mode-vi WheelUpPane send-keys -X scroll-up
6bind -T copy-mode-vi WheelDownPane send-keys -X scroll-down
7bind -n WheelUpPane if-shell -F "#{mouse_any_flag}" "send-keys -M" "copy-mode -e; send-keys -M"
8bind -n WheelDownPane if-shell -F "#{mouse_any_flag}" "send-keys -M" "send-keys -M"