2011-11-05 77 views
1

它說你可以使用高亮縮進的面,但我不知道如何設置這個變量。或者在* .el中更改它。我使用白色背景,所以線條几乎看不見。較深的灰色或其他顏色會更好。這裏是它的論點:改變高亮縮進包的emacs顏色

(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) 

乾杯的任何幫助。

回答

1

臉部的背景可以通過在命令set-face-background進行設置:

(set-face-background 'highlight-indent-face "gray80") 
+0

由於該工作奇妙。結束了改變顏色和歡呼聲。 –

1

輕微的修改與emacs的24.3(也具有較深的灰色):

set-face-background 'highlight-indentation-face "gray20")