In ESS when I am evaluating chunks of code in a .R file using C-c C-j or C-c C-r (to send the line or region to a running R process), how can I get the R buffer to scroll down automatically, such that after evaluating a region the cursor is at the bottom, at the prompt?

Thanks.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Probably a bunch of ways to do it. In my .emacs.d I have

  (setq comint-prompt-read-only t)
  (setq comint-scroll-to-bottom-on-input t)
  (setq comint-scroll-to-bottom-on-output t)
  (setq comint-move-point-for-output t)

You might also be interested in this code, originally from Felipe Csaszar, which lets you do what you ask and a few other nice things besides.

link|improve this answer
Ah cool, thank you. I will try that. – stevejb Apr 26 '10 at 0:38
1  
(setq comint-prompt-read-only t) is likely a bad idea. I used to have this whole block of commands in .emacs (as copied from emacswiki), but (setq comint-prompt-read-only t) would sometimes break the interaction between the buffer and inferior ESS process, forcing me to kill R and start session over. – Leo Alekseyev Apr 29 '10 at 1:07
I too have found that read-only can lead to issues with ESS. Beware. – Vince Mar 9 at 9:30
Yeah, I removed it myself ages ago as well. – Kieran Mar 9 at 11:25
feedback

Your Answer

 
or
required, but never shown

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