它说你可以使用highlight-indent-face,但我不知道如何设置这个变量。或者在* .el中将其更改为什么。我使用白色背景,因此几乎看不到线条。深灰色或其他颜色会更好。以下是它的论据:
(defface highlight-indent-face
;; Fringe has non intrusive color in most color-themes
'((t :inherit fringe))
"Basic face for highlighting indentation guides."
:group 'basic-faces)
欢呼任何帮助。
答案 0 :(得分:1)
可以通过命令set-face-background
设置面部背景:
(set-face-background 'highlight-indent-face "gray80")
答案 1 :(得分:1)
使用emacs 24.3进行轻微修改(也使用深灰色):
set-face-background 'highlight-indentation-face "gray20")