gpt4 book ai didi

Emacs ESS 版本的 Clear Console

转载 作者:行者123 更新时间:2023-12-03 12:45:42 26 4
gpt4 key购买 nike

是否有可以在 RGui(Ctrl-L) 中找到的 Clear Console 命令的 ESS 版本?

我想要一个空白的 * R * 缓冲区。

最佳答案

来自 EmacsWiki ,这个 Elisp 函数对我很有效:

(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)))

把这个放在你的 ~/.emacs.d/init.el并使用 M-x clear-shell 执行,或将其绑定(bind)到您的 init.el 中的一个键有类似的东西:
(global-set-key (kbd "\C-x c") 'clear-shell)

关于Emacs ESS 版本的 Clear Console,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3447531/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com