ターミナルを備えたMacOS10.6でemacsを使用しています。背景は白です。
引用符で囲まれたC++文字列を読み取るのは非常に困難です。彼らは淡い緑色で登場しています。キーワードはターコイズです。
ソースを検索した後、cpp.elを調べて、cpp-face-dark-name-listの代わりにcpp-face-light-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)
しかし、それは機能していないようです。
cpp-face-light-listの代わりにcpp-face-dark-listを取得するには、.emacsファイルに何を入れる必要がありますか?
ありがとう!