如果我在调用M-x whitespace-mode
后更改它们,我想更新显示映射和面部属性。我想这样做,以使下面的代码工作。如果我不包含add-hook
并尝试在我输入whitespace-mode
之前设置面孔,则会告诉我面部无效。
;; configure custom whitespace faces
(add-hook 'whitespace-mode-hook (lambda ()
(set-face-attribute 'whitespace-space nil :background nil :foreground color)
(set-face-attribute 'whitespace-tab nil :background nil :foreground color)
(set-face-attribute 'whitespace-newline nil :background nil :foreground color)
(whitespace-reload) ;; what i want to do
)))
任何帮助表示赞赏。感谢。
答案 0 :(得分:0)
只需在.emacs中使用whitespace-mode
。
;; ... add-hook 'n all
(whitespace-mode 1)(whitespace-mode 0)