gpt4 book ai didi

emacs - 在emacs中,我可以设置* Messages *缓冲区以使其尾部吗?

转载 作者:行者123 更新时间:2023-12-03 20:40:06 25 4
gpt4 key购买 nike

基本上,我希望* Messages *缓冲区在新消息到达时始终滚动到底部。

我可以那样做吗?

我找到了auto-revert-tail-mode,但它适用于正在访问文件的缓冲区。
当我在消息缓冲区中尝试它时,它弹出一个错误:
auto-revert-tail-mode: This buffer is not visiting a file

最佳答案

对于多个帧,您可能需要:

(defadvice message (after message-tail activate)
"goto point max after a message"
(with-current-buffer "*Messages*"
(goto-char (point-max))
(walk-windows (lambda (window)
(if (string-equal (buffer-name (window-buffer window)) "*Messages*")
(set-window-point window (point-max))))
nil
t)))

关于emacs - 在emacs中,我可以设置* Messages *缓冲区以使其尾部吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4682033/

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