1

Whenever the R process redirect new output to the process buffer, Emacs move the point to the end of the buffer. This is annoy when user want to check previous commands or output that are outside of the window. How to stop Emacs doing this? Could the solution applied to all the shell process, like python, shell etc?

Dan
  • 32,980
  • 7
  • 102
  • 169
yi.tang.uni
  • 1,017
  • 8
  • 20

1 Answers1

4

This behavior is controlled by comint-scroll-to-bottom-on-output. It's nil by default. You probably configured it to a different value accidentally.

VitoshKa
  • 246
  • 1
  • 3