vote up 1 vote down star
1

I've done this before, years ago, so I know the answer is out there. However the google-space is heavily polluted with namespace collisions, especially new user guides.

This is what I'd like to do in Emacs 21:

Split the screen on a given file buffer (C-x 3). As I page through the first screen (C-v), the next page of the file is automatically displayed on the second.

To be clear, the next line in the file after the last line on the left screen should be the first line on the right screen, always.

Any help?

flag
Out of curiosity: why are you trying to do that instead of just keeping a single window? – JB Jun 25 at 14:59
So I can see twice as much of the same file at once, without having to C-x o and page the other window of the same buffer. – kmarsh Jun 25 at 15:12
My bad---I'd read that as a C-x 2 and missed the visual idea. – JB Jun 25 at 21:54

4 Answers

vote up 0 vote down

If follow-mode doesn't work, you could define your own macro, something like

(defun align-windows ()
  (set-window-start (other-window) (window-start))
  (scroll-other-window))

Then either use this (along with scroll-down) instead of C-v, or rebind C-v to that, or add advice to scroll-down.

link|flag
vote up 2 vote down

You might be looking for follow-mode

It is minor mode that combines windows into one tall virtual window.

link|flag
vote up 4 vote down

This question appears to be a duplicate: http://stackoverflow.com/questions/970292/emacs-multiple-columns-one-buffer

link|flag
Thanks. My (old) emacs installation does not have follow.el, I'll see if I can add it or if I have to upgrade. – kmarsh Jun 25 at 15:26
vote up 3 vote down

You want scroll-all-mode

scroll-all-mode is an interactive compiled Lisp function in `scroll-all.el'.
(scroll-all-mode &optional arg)

Toggle Scroll-All minor mode.
With arg, turn Scroll-All minor mode on if arg is positive, off otherwise.
When Scroll-All mode is on, scrolling commands entered in one window
apply to all visible windows in the same frame.

Set up the windows appropriately, and then turn on scroll-all-mode, and from then on all windows scroll together

link|flag
Thanks! This works until I do a M-< at which point it breaks the assocation, or I page down to the bottom of the buffer and then page down once more. SL is still indicated but they no longer scroll together. Is my Emacs 21.4.1 broken or my .emacs or is this just the way it works? – kmarsh Jun 25 at 15:18

Your Answer

Get an OpenID
or

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