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.
|
This guy's post describes how to do it pretty perfectly, it worked for me on ubuntu's shell and it sounds like users have also had success in KDE. Still looking for an OS X solution.. |
|||||||||||
|
|
I believe you can just add a line like this to your
Where "xterm*" is a glob match of your current TERM. To confirm it works, ^A^D to detach from your screen, then What is this magic? Well, let's consult the manual pages.
From
|
|||||||||||||||||||
|
|
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. |
|||||
|
|
The excellent article that Jon Z is referring to is no longer available, but I was able to fish the text-only version of it from the Google cache. I'm saving it here in case Google drops that as well in the future. Original post was by Mikael Ståldal so credit where credit is due. -- How to use mousewheel in GNU Screen GNU Screen has support for scrollback, but by default you have to use awkward keys to use it. I would like to be able to use Shift-PageUp, Shift-PageDown and the mousewheel to scroll, just like you can do in xterm. It was not easy to configure Screen for this, and it involves cooperation with the terminal emulator. But I finally managed to achieve a solution which works pretty well. Add this to your ~/.Xresources file (you need to log out for this to take effect):
Then add this to your ~/.screenrc file:
This works in xterm. I’m not sure if it works in other terminal emulators. Note that this disables the normal scrolling support in xterm, you will only be able to scroll when using Screen. You might want to start xterm like this to always use Screen:
|
|||||
|
|
And to use the scrollwheel in a VIM inside GNU Screen: [.vimrc]
|
|||
|
|
Press Ctrl+a followed by [ The title bar of your terminal should now say Copy mode. Now the arrow keys and the mouse wheel should work as expected. To return to normal press Esc or press Enter a couple of times. |
||||
|
|
|
For OS X (Snow Leopard), the following worked for me: http://slaptijack.com/system-administration/mac-os-x-terminal-and-gnu-screen-scrollback/ Briefly, it involves adding the following to ~/.screenrc on the remote host (the one you're running screen on):
|
|||
|
|