为了记录,我正在使用 OSX 雪豹。
当我直接从终端使用 emacs 时,我有一个我非常满意的颜色集(例如,用于 c/c++)——黑色上的绿色、红色注释、彩色关键字......等等。其中一些是在我的“终端首选项”中设置,有些在我的 ~/.emacs 文件中(见下文)。当我从屏幕运行 emacs 时,基本的配色方案是相同的(黑底绿),但颜色不同(例如注释字符是红色的,但不是整个注释)——而且真的很烦人。
任何帮助,将不胜感激!
在我的“.emacs”文件中(这在 gnu-screen emacs 中停止工作):
(global-font-lock-mode t)
(custom-set-faces
'(font-lock-comment-face
((((class color) (background light))
:foreground "tomato")
)))
在我的“.screenrc”文件中:
shell -$SHELL # colors still don't work without this
#term xterm-256color # using this doesn't fix the colors (suggested on some forums)
altscreen on
startup_message off
我认为我的 .screenrc 文件中的命令 'shell -$SHELL' 使屏幕中的命令提示符与默认值相同 --- 它确实使我的命令行说 'computername:/DIR/username$' 而不仅仅是 ' bash-3.2$'
==================================================== ================
解决方案:感谢Greg E。
我需要在屏幕上设置我的终端模拟器以匹配我的普通 shell。为此,我添加了
export TERM='xterm-color'
到 ~/.bash_profile
出于某种原因,“~/.screenrc”文件中的“term xterm-color”不起作用。