vote up 6 vote down star
2

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.

flag

72% accept rate

2 Answers

vote up 1 vote down check

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.

link|flag
Yes, I know about scrollback mode. I was hoping that I would not have to manually enter scrollback mode in order to use the mouse. Thanks. – JesperE Jan 24 at 20:34
vote up 4 vote down

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.

link|flag
It's too bad you came late, because I'm pretty sure this is the answer the OP was looking for. – IanGreenleaf Sep 29 at 16:54
I followed Pistos's suggestion, and it partially works. As he describes, I can enter some commands (to produce enough output to scroll the screen), and then use the mouse-wheel to scroll back through the preceding lines. In fact, I'm using screen via Konsole in KDE (tabbed xterm, basically), and the scrollbar for the Konsole window works the same way. But there's a problem: If you switch between screen's windows (^A-n, ^A-p), your scrollback buffer gets messed up. The contents of any windows you switch into will just get 'tucked' up into your scrollback buffer. That really diminishes it. – Ryan B. Lynch Oct 1 at 19:23
The behaviour you describe indeed happens, even for me. It's something I live with; I just alternate between scroll wheel and Copy Mode. – Pistos Oct 2 at 14:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.