2

我有一个包含 VT-100 转义序列(颜色、粗体等)的文件(程序输出)。当我在基本模式下打开文件时,转义序列按原样显示,并且不会被解释。如何显示具有 VT-100 序列识别为颜色等的文件?

4

1 回答 1

2

请参阅https://unix.stackexchange.com/questions/19494/how-to-colorize-text-in-emacs

例如:将以下内容放入您的 emacs 初始化文件中:

(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使用转义序列在缓冲区上运行。

于 2013-07-04T12:03:44.833 回答