|
|
|
|
|
by wonginator1221
5190 days ago
|
|
You could enable the mouse for mouse interaction with a supported terminal. In my tmux config: set -g mode-mouse on
setw -g mouse-select-window on
setw -g mouse-select-pane on
This particular configuration will allow you to scroll, select text and focus windows and panes with just a mouse click. |
|
When you click-drag you're now triggering a tmux selection, not the native terminal-emulator highlight. This is a big problem because the emulated variant is slow and behaves nothing like the real thing.
To my understanding this is also a problem that can't be solved without further terminal emulator support. As it stands the remote application (tmux) can either receive all mouse-events or none of them.
This means you have to choose between scroll-wheel support plus broken text-selection - or no scroll-wheel support.