1

如何在 emacs 中设置注释的字体大小。我希望注释的大小比其他代码小。我也希望它被突出显示。

4

1 回答 1

1

运行M-x customize-face font-lock-comment-face并设置height属性,以及backgroundforeground希望如何突出显示注释。

要在会话之间保留此内容,Save for future sessions请从自定义屏幕中选择或将其添加到您的.emacs

(custom-set-faces
 '(font-lock-comment-face ((t (:background "yellow" :foreground "red" :height 0.5)))))
于 2012-10-31T15:48:24.463 回答