在空白模式下还原显示映射?

时间:2018-04-13 02:15:46

标签: emacs whitespace

如果我在调用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
  )))

任何帮助表示赞赏。感谢。

1 个答案:

答案 0 :(得分:0)

只需在.emacs中使用whitespace-mode

;; ... add-hook 'n all
(whitespace-mode 1)(whitespace-mode 0)