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.
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)
Execute M-x comint-clear-buffer
which is bound to C-c M-o
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With