Is there an ESS version of the Clear Console command that can be found in the RGui(Ctrl-L)?

I want to have a blank * R * buffer.

link|improve this question

71% accept rate
+1 this one was bugging me for quite a while... and, BTW C-l keybinding is not available only in RGui, but in R interactive session on *NIX systems also. It's kind-of universal for all *NIX shells. =) – aL3xa Sep 21 '11 at 14:20
feedback

2 Answers

up vote 2 down vote accepted

From the EmacsWiki, this Elisp function works well for me:

(defun clear-shell ()
   (interactive)
   (let ((old-max comint-buffer-maximum-size))
     (setq comint-buffer-maximum-size 0)
     (comint-truncate-buffer)
     (setq comint-buffer-maximum-size old-max))) 

Put this in your ~/.emacs.d/init.el and execute with M-x clear-shell, or bind it to a key in your init.el with something like:

(global-set-key (kbd "\C-x c") 'clear-shell)

link|improve this answer
feedback

The easy way would be to mark the whole buffer (C-x h), delete it, and then hit RET to have the prompt come back.

link|improve this answer
that does not work with the R buffer, for some reason – JD Long Jan 6 '11 at 15:16
feedback

Your Answer

 
or
required, but never shown

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