我的.emacs文件中包含此代码:
(setq-default show-trailing-whitespace t)
(setq whitespace-style '(face tabs))
(whitespace-mode)
如何更改var whitespace-tab
以使我的标签看起来与尾随空格(红色背景)相同?
答案 0 :(得分:1)
找到它,需要使用这段代码:
(setq whitespace-style '(face tabs))
(setq tab-face (make-face 'tab-face))
(set-face-background 'tab-face "red")
(setq whitespace-tab 'tab-face)
(whitespace-mode)
答案 1 :(得分:1)
另一种选择:不要为whitespace-mode
而烦恼。
使用库highlight-chars.el
(请参阅your related question),然后只需自定义面hc-tab
(M-x customize-face hc-tab
)。