我不知道发生了什么,但当我用Emacs 24.3.1重新安装系统(Xubuntu 14.04)时,当我运行erc时,我没有颜色。当我上次运行ERC时,我有蓝色文本,现在我变白了。我怎样才能查看发生了什么?我没有运行ERC一段时间,也许我在.emacs文件中更改了一些内容。
答案 0 :(得分:1)
在我的情况下,问题是whitespace-mode
我已将erc-mode添加到禁用空白模式的列表中:
(setq whitespace-mode-disable '(term-mode erc-mode))
(add-hook 'after-change-major-mode-hook
(lambda ()
(if (null (memql major-mode whitespace-mode-disable))
(whitespace-mode))))