我有一个文件(程序输出),包括VT-100转义序列(颜色,粗体等)。当我在基本模式下打开文件时,转义序列按原样显示,并且不会被解释。如何显示VT-100序列被识别为颜色等的文件?
答案 0 :(得分:2)
请参阅https://unix.stackexchange.com/questions/19494/how-to-colorize-text-in-emacs
例如:将以下内容放入emacs init文件中:
(define-derived-mode fundamental-ansi-mode fundamental-mode "fundamental ansi"
"Fundamental mode that understands ansi colors."
(require 'ansi-color)
(ansi-color-apply-on-region (point-min) (point-max)))
然后使用转义序列在缓冲区上运行M-x fundamental-ansi-mode
。