我在終端上使用MacOS 10.6上的emacs。我有一個白色的背景。在終端使emacs使用深色,而不是光字體鎖的顏色
閱讀引用的C++字符串非常困難。他們以淺綠色出現。關鍵詞在綠松石中。
通過cpp.el查找源代碼後,我確定使用的是cpp-face-light-name-list而不是cpp-face-dark-name-list。
顯然,這個功能應該選擇基於背景顏色正確的列表:
(defcustom cpp-face-default-list nil
"Alist of faces you can choose from for cpp conditionals.
Each element has the form (STRING . FACE), where STRING
serves as a name (for `cpp-highlight-buffer' only)
and FACE is either a face (a symbol)
or a cons cell (background-color . COLOR)."
:type '(repeat (cons string (choice face (cons (const background-color) string))))
:group 'cpp)
但它似乎並不奏效。
我應該在我的.emacs文件中放置什麼,以便獲取cpp-face-dark-list而不是cpp-face-light-list?
謝謝!
color-theme怎麼樣? – YuppieNetworking 2010-04-11 17:33:29
也許明確地設置淺色背景的作品? (set-background-color「white」)? – Patrick 2010-04-11 19:39:18