Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有时,如果我在 ashell或eshell缓冲区中工作ansi-color-for-comint-mode,并运行一个提供彩色输出的程序,然后在打印彩色文本时崩溃,则颜色会“卡住”,并且该缓冲区中的所有后续文本都是该颜色。我能够修复它的唯一方法是ansi-color-for-comint-mode关闭或终止 shell 缓冲区。
shell
eshell
ansi-color-for-comint-mode
有没有更好的方法来告诉 comint 派生的 shell 缓冲区“重置” ansi 颜色代码?
这不是最漂亮的解决方案,但这个功能有效 - 它只是发送正确的颜色代码来重置颜色
(defun unstick-ansi-color-codes () (interactive) (end-of-buffer) (insert "echo -e \"\033[m\"") (comint-send-input nil t))