在Emacs * shell中获得256色*

时间:2011-07-19 00:25:53

标签: emacs

我的Emacs安装具有全彩色支持(list-colors-display显示了这一点)。但是,Emacs * shell *似乎只能处理基本的8 ANSI颜色转义。我在.emacs中有以下处理:

(autoload 'ansi-color-for-comint-mode-on "ansi-color" nil t)
(add-hook 'shell-mode-hook 'ansi-color-for-comint-mode-on)

有没有办法增加* shell *中支持的颜色数量?

2 个答案:

答案 0 :(得分:5)

要在终端中获得256色,您必须使用适当的终端仿真器。

检查您的终端是否支持:

  $ infocmp -1 $TERM | grep colors
colors#8,

例如 xterm 允许这样做,但您必须设置 TERM = xterm-256color

答案 1 :(得分:2)

如果我正确读取设置ansi标志/设置将只允许8种颜色,摆脱它们并替换为此设置tty-color-mode 256

自:

http://www.gnu.org/software/emacs/elisp/html_node/Font-and-Color-Parameters.html

http://www.gnu.org/software/libtool/manual/emacs/Colors.html