I just started using tmux, and I really like it, but I need to be able to scroll within the buffers/panes/windows I have open. I don't care if it works with the mouse or not. When I search the tmux man page, I find only two instances of the word "scroll" even showing up, and both have to do with copy mode. Is there a way to scroll without all the overhead of entering copy mode?
Tell me more
×
Super User is a question and answer site for
computer enthusiasts and power users. It's 100% free, no registration required.
|
Ctrl-b then [ then you can use your normal navigation keys to scroll around (eg. Up Arrow or PgDn). Press q to quit scroll mode. Alternatively you can press Ctrl-b PgUp to go directly into copy mode and scroll one page up (which is what it sounds like you will want most of the time) You can also scroll up/down line by line using Shift-k and Shift-j (if you're already in scroll mode). |
|||||||||||||||||||||
|
|
From my .tmux.conf:
This enables native xterm scrolling. |
|||||||||||||||||||
|
|
Well, you should consider the proper way to set scrolling:
add in your
It worked for me in windows and panes. Now tmux is just perfect. Practical tmux has more info on tmux.conf files. |
||||
|
|
copy-modeis the way to view history (and optionally copy stuff out of it). – Chris Johnsen Nov 11 '10 at 5:48