在emacs中设置字体大小和突出显示注释

时间:2012-10-31 15:38:28

标签: emacs elisp emacs23

如何在emacs中设置评论的字体大小。我希望评论的大小小于其余代码。我也想要突出显示它。

1 个答案:

答案 0 :(得分:1)

运行 Mx 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)))))