vote up 7 vote down star

By default, emacs 22.1.1 only shows the top of the compilation buffer when you first issue the compile command. I would like it to scroll to the bottom automatically when I use the compile command in order to save keystrokes. This way I can easily get a status of the current compilation by just looking at the compile buffer and seeing which files are currently being compiled instead of having to switch windows and scroll to the bottom of the buffer. Any ideas?

flag

45% accept rate

2 Answers

vote up 8 vote down check

From Info > emacs > Compilation:

If you set the variable compilation-scroll-output to a non-nil value, then the compilation buffer always scrolls to follow output as it comes in.

link|flag
vote up 2 vote down
(setq compilation-scroll-output t)

or

M-x set-variable compilation-scroll-output t RET

Also, if you get used to using next-error and previous-error before your compilation finishes, you will start to see why the default behavior is desirable.

link|flag

Your Answer

Get an OpenID
or

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