How can I setup GNU screen to allow the mouse's scrollwheel to scroll around in the scrollback buffer? I tried to Google about this, but most hits where on how to allow applications inside screen to use the scrollwheel.
|
2
|
|
|
|
|
|
In screen, you must first enter "scrollback mode" to be able to scroll around in the scrollback buffer: key combo Ctrl-a [Esc], or Ctrl-a Ctrl-[. Then you can scroll around the history using Up and Down keys (or Ctrl-b, Ctrl-f to move a page). In that mode, your mousewheel should also work, if it works in other apps. You end "scrollback mode" with [Esc]. As for scrolling the scrollback buffer without first entering scrollback mode, that is probably not possible without modifying screen. I have never heard of a way to access the scrollback buffer, apart from scrollback mode. |
||
|
|
|
I believe you can just add a line like this to your ~/.screenrc: termcapinfo xterm* ti@:te@ Where "xterm*" is a glob match of your current TERM. To confirm it works, ^A^D to detach from your screen, then "screen -d -r" to reattach, then ls a few times, and try to scroll back. It works for me. |
||||||
|
